:root {
  --green: #4b9f35;
  --green-deep: #28721f;
  --green-soft: #dcefd6;
  --ink: #173126;
  --ink-deep: #0c1f17;
  --text: #24372f;
  --muted: #65756e;
  --paper: #f8faf6;
  --cream: #eef3ea;
  --white: #ffffff;
  --line: rgba(23, 49, 38, 0.14);
  --shadow: 0 22px 70px rgba(25, 55, 40, 0.16);
  --radius: 28px;
  --shell: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
address { font-style: normal; }

.shell { width: var(--shell); 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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #f2b84b; outline-offset: 4px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3.2rem, 6.2vw, 6.2rem); font-weight: 720; }
h2 { font-size: clamp(2.35rem, 4.3vw, 4.45rem); font-weight: 700; }
h3 { font-size: 1.45rem; font-weight: 680; }
.lead { font-size: 1.22rem; color: #42554c; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow-light { color: #b7eea7; }
.section-heading { max-width: 820px; margin-bottom: 64px; }
.section-heading h2 { margin-bottom: 24px; }
.section-heading > p:last-child { max-width: 720px; color: var(--muted); font-size: 1.12rem; }
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .65fr);
  gap: 64px;
  max-width: none;
  align-items: end;
}
.split-heading > p:last-child { margin-bottom: 10px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-deep); border-color: var(--green-deep); }
.button-small { min-height: 42px; padding: 9px 18px; font-size: .88rem; }
.button-light { color: var(--ink); background: #d8f7cc; border-color: #d8f7cc; }
.button-light:hover { color: var(--white); background: var(--green); border-color: var(--green); }
.button-outline { color: var(--ink); background: transparent; border-color: rgba(12, 31, 23, .24); box-shadow: none; }
.button-outline:hover { color: var(--green-deep); background: rgba(255, 255, 255, .58); border-color: rgba(12, 31, 23, .42); }
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-weight: 720;
  text-decoration: none;
}
.text-link span { color: var(--green); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 86px;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(248, 250, 246, .94);
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(25, 55, 40, .06);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 154px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  color: #2e443a;
  font-size: .91rem;
  font-weight: 650;
  text-decoration: none;
}
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--green);
  transition: right .2s ease;
}
.main-nav > a:not(.button):hover::after { right: 0; }
.main-nav .nav-support { display: flex; align-items: center; gap: 6px; }
.nav-support span { padding: 1px 6px; border-radius: 999px; background: var(--green-soft); color: var(--green-deep); font-size: .65rem; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--cream); cursor: pointer; }
.menu-toggle-lines, .menu-toggle-lines::before, .menu-toggle-lines::after { display: block; width: 20px; height: 2px; margin: auto; background: var(--ink); content: ""; transition: transform .2s ease; }
.menu-toggle-lines::before { transform: translateY(-6px); }
.menu-toggle-lines::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: translateY(1px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: translateY(-1px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 790px;
  padding: 170px 0 100px;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 19%, rgba(75, 159, 53, .17), transparent 26%),
    linear-gradient(118deg, #f8faf6 0%, #f8faf6 52%, #edf4e9 100%);
}
.hero-wash::after {
  content: "";
  position: absolute;
  top: 7%;
  right: -8%;
  width: 44vw;
  aspect-ratio: 1;
  border: 1px solid rgba(75, 159, 53, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(75, 159, 53, .04), 0 0 0 140px rgba(75, 159, 53, .025);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(440px, 1.05fr); gap: 64px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; margin-bottom: 30px; }
.hero-copy h1 span { color: var(--green); }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: #4f6259; font-size: 1.2rem; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 24px; margin: 40px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .87rem; font-weight: 650; }
.hero-proof li { position: relative; padding-left: 18px; }
.hero-proof li::before { content: ""; position: absolute; top: .65em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero-visual { position: relative; min-height: 565px; }
.browser-frame {
  position: absolute;
  top: 50px;
  right: 0;
  width: 94%;
  overflow: hidden;
  border: 1px solid rgba(23, 49, 38, .14);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: none;
}
.browser-bar { display: flex; height: 46px; align-items: center; gap: 7px; padding: 0 16px; background: #f3f5f2; border-bottom: 1px solid #e4e8e2; }
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: #b9c3bb; }
.browser-bar p { margin: 0 0 0 10px; color: #859087; font-size: .69rem; }
.browser-frame > img { width: 100%; height: 430px; object-fit: cover; object-position: top left; }
.tech-label { position: absolute; right: 20px; bottom: 18px; display: flex; flex-direction: column; padding: 11px 15px; border-radius: 12px; background: rgba(12, 31, 23, .91); color: var(--white); box-shadow: 0 8px 30px rgba(12, 31, 23, .24); }
.tech-label strong { font-size: .78rem; }
.tech-label span { color: #c6d3cb; font-size: .69rem; }
.aplino-hero { position: absolute; z-index: 3; right: -44px; bottom: -52px; width: auto; height: 285px; filter: drop-shadow(0 24px 24px rgba(12, 31, 23, .24)); }
.aplino-hero img { width: auto; height: 100%; max-width: none; object-fit: contain; object-position: center bottom; }
.aplino-callout {
  position: absolute;
  z-index: 4;
  right: 150px;
  bottom: 24px;
  display: flex;
  max-width: 290px;
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(23, 49, 38, .12);
  border-radius: 17px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 15px 42px rgba(25, 55, 40, .16);
  text-align: left;
  cursor: pointer;
}
.aplino-callout span:last-child { font-size: .76rem; line-height: 1.35; }
.aplino-callout strong { display: block; color: var(--ink); }
.aplino-pulse { position: relative; width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }

.proof-band { position: relative; z-index: 5; border-block: 1px solid var(--line); background: rgba(255, 255, 255, .68); }
.proof-list { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-list > div { display: flex; flex-direction: column; padding: 28px 36px; border-right: 1px solid var(--line); }
.proof-list > div:first-child { border-left: 1px solid var(--line); }
.proof-list strong { color: var(--ink); font-size: 1.18rem; }
.proof-list span { color: var(--muted); font-size: .82rem; }

.problem-section { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.problem-item { min-height: 260px; padding: 38px 42px 22px 0; border-right: 1px solid var(--line); }
.problem-item + .problem-item { padding-left: 42px; }
.problem-item:last-child { border-right: 0; }
.item-number, .function-card > span { display: block; margin-bottom: 42px; color: var(--green); font-size: .78rem; font-weight: 750; letter-spacing: .1em; }
.problem-item h3 { margin-bottom: 16px; }
.problem-item p { margin: 0; color: var(--muted); }

.product-section { background: var(--cream); }
.product-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, .82fr); gap: 90px; align-items: start; }
.product-copy h2 { margin-bottom: 28px; }
.feature-lines { margin: 48px 0 36px; border-top: 1px solid var(--line); }
.feature-lines > div { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.feature-lines h3, .feature-lines p { margin: 0; }
.feature-lines h3 { font-size: 1.05rem; letter-spacing: -.02em; }
.feature-lines p { color: var(--muted); font-size: .95rem; }
.value-chain { position: sticky; top: 118px; padding: 36px; border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.value-chain-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.14); }
.value-chain-title img { width: 122px; height: auto; padding: 10px; border-radius: 14px; background: var(--white); }
.value-chain-title p { margin: 0; color: #c4d1ca; font-size: .82rem; text-align: right; }
.value-chain ol { margin: 0; padding: 0; list-style: none; }
.value-chain li { display: grid; grid-template-columns: 36px 1fr; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.value-chain li:last-child { border-bottom: 0; }
.value-chain li > span { grid-row: 1 / span 2; color: #7ecf68; font-size: .72rem; font-weight: 750; }
.value-chain strong { color: var(--white); font-size: 1.05rem; }
.value-chain small { color: #98aaa1; }

.product-tour-section { background: #f2f6ef; }
.tour-list { display: grid; gap: 30px; }
.tour-row {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: center;
  padding: 46px;
  border: 1px solid rgba(23, 49, 38, .1);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 58px rgba(25, 55, 40, .08);
}
.tour-row:nth-child(even) { grid-template-columns: minmax(0, 1.28fr) minmax(290px, .72fr); }
.tour-row:nth-child(even) .tour-copy { order: 2; }
.tour-row:nth-child(even) .tour-media { order: 1; }
.tour-kicker { margin-bottom: 12px; color: var(--green-deep); font-size: .73rem; font-weight: 780; letter-spacing: .13em; text-transform: uppercase; }
.tour-copy h3 { margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.tour-copy > p:not(.tour-kicker) { color: var(--muted); }
.tour-copy ul { display: grid; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; color: #44584e; font-size: .88rem; }
.tour-copy li { position: relative; padding-left: 22px; }
.tour-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.tour-media { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(23, 49, 38, .14); border-radius: 18px; background: #f4f6f3; box-shadow: 0 18px 46px rgba(25, 55, 40, .13); }
.tour-media::before { content: ""; display: block; height: 27px; border-bottom: 1px solid #e2e7e1; background: radial-gradient(circle at 15px 50%, #aeb9b0 0 3px, transparent 4px), radial-gradient(circle at 27px 50%, #c2cbc4 0 3px, transparent 4px), radial-gradient(circle at 39px 50%, #d1d7d2 0 3px, transparent 4px), #f0f3ef; }
.tour-media img { width: 100%; height: auto; background: var(--white); }
.tour-media-wizard { width: min(100%, 680px); justify-self: center; }
.tour-media figcaption { padding: 10px 15px; border-top: 1px solid #e2e7e1; color: var(--muted); background: #f8faf7; font-size: .72rem; }

.solutions-section { background: var(--paper); }
.solution-list { border-top: 1px solid var(--line); }
.solution-row { display: grid; grid-template-columns: 54px 1.3fr 1fr 90px; gap: 30px; align-items: center; min-height: 180px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.solution-index { align-self: start; padding-top: 9px; color: var(--green); font-size: .75rem; font-weight: 750; }
.solution-kicker { margin-bottom: 9px; color: var(--green-deep); font-size: .73rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.solution-row h3 { max-width: 500px; margin: 0; font-size: clamp(1.55rem, 2.5vw, 2.3rem); }
.solution-row > p { margin: 0; color: var(--muted); font-size: .94rem; }
.solution-row > a { justify-self: end; color: var(--ink); font-size: .86rem; font-weight: 700; text-decoration: none; }
.solution-row > a span { color: var(--green); }

.functions-section { background: var(--white); }
.function-matrix-note { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 24px; color: #53675d; font-size: .82rem; }
.function-matrix-note strong { color: var(--green-deep); }
.function-catalogue { border-top: 1px solid var(--line); }
.function-area { border-bottom: 1px solid var(--line); }
.function-area > summary {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 30px;
  list-style: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.function-area > summary::-webkit-details-marker { display: none; }
.function-area > summary:hover { color: var(--green-deep); background: rgba(220, 239, 214, .28); }
.function-area > summary:focus-visible { position: relative; z-index: 2; }
.function-area[open] > summary { color: var(--green-deep); background: var(--cream); }
.function-area-title { color: inherit; font-size: clamp(1.3rem, 2vw, 1.85rem); font-weight: 700; line-height: 1.2; letter-spacing: -.025em; }
.function-area-toggle { position: relative; width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; background: var(--green-soft); }
.function-area-toggle::before, .function-area-toggle::after { position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; border-radius: 2px; background: var(--green-deep); content: ""; transform: translate(-50%, -50%); transition: opacity .2s ease, transform .2s ease; }
.function-area-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.function-area[open] .function-area-toggle::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg) scaleX(0); }
.function-area-content { padding: 8px 30px 58px; }
.function-area-description { max-width: 980px; margin: 18px 0 52px; padding-left: 22px; border-left: 3px solid var(--green); color: #42574c; font-size: 1.08rem; }
.function-group + .function-group { margin-top: 54px; padding-top: 48px; border-top: 1px solid var(--line); }
.function-group h3 { margin-bottom: 12px; font-size: clamp(1.3rem, 2vw, 1.7rem); }
.function-group-description { max-width: 920px; margin-bottom: 24px; color: var(--muted); font-size: .95rem; }
.function-table-wrap { max-width: 100%; overflow-x: auto; border-radius: 14px; scrollbar-color: #a8b9ad transparent; }
.function-table-wrap:focus-visible { outline-offset: 4px; }
.function-table { width: 100%; min-width: 760px; border: 0; border-collapse: separate; border-spacing: 0; font-size: .86rem; line-height: 1.45; }
.function-table th, .function-table td { border: 0; }
.function-table th { padding: 13px 16px; color: #dce8e0; background: var(--ink); font-size: .72rem; font-weight: 750; letter-spacing: .05em; text-align: left; text-transform: uppercase; }
.function-table th:first-child { border-radius: 12px 0 0 0; }
.function-table th:last-child { border-radius: 0 12px 0 0; }
.function-table th:not(:first-child), .function-table td:not(:first-child) { width: 9%; text-align: center; white-space: nowrap; }
.function-table abbr { text-decoration: none; cursor: help; }
.function-table tbody tr:nth-child(odd) { background: #f8faf6; }
.function-table tbody tr:nth-child(even) { background: #edf3ea; }
.function-table tbody tr { transition: background .16s ease; }
.function-table tbody tr:hover { background: #e1eddd; }
.function-table td { padding: 15px 16px; vertical-align: middle; }
.function-table td:first-child { width: 73%; }
.function-table td:first-child strong { display: block; color: var(--ink); font-size: .9rem; }
.function-description { display: block; margin-top: 3px; color: #52645b; }
.function-description em { color: #7a5b24; }
.availability { display: inline-flex; min-width: 42px; min-height: 26px; align-items: center; justify-content: center; padding: 3px 8px; border-radius: 999px; font-size: .71rem; font-weight: 760; }
.availability-yes { color: #215f19; background: #d9efd3; }
.availability-overlay { color: #6a4b16; background: #f5e7bd; }
.availability-no { color: #728078; background: rgba(23, 49, 38, .07); }
.availability-open { color: transparent; background: transparent; }

.operations-section { overflow: hidden; background: var(--cream); }
.operations-grid { display: grid; gap: 34px; }
.operation-card { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); min-height: 600px; overflow: hidden; border: 1px solid rgba(23, 49, 38, .1); border-radius: calc(var(--radius) + 4px); background: var(--white); box-shadow: 0 20px 65px rgba(25, 55, 40, .1); }
.operation-card-logistics { grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr); background: #f5f8f3; }
.operation-card-logistics .operation-copy { order: 2; }
.operation-card-logistics .operation-visual { order: 1; }
.operation-copy { display: flex; flex-direction: column; justify-content: center; padding: 52px; }
.operation-copy h3 { margin-bottom: 20px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.operation-copy > p:not(.tour-kicker) { color: var(--muted); }
.operation-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0 0; padding: 0; list-style: none; }
.operation-tags li { padding: 7px 11px; border: 1px solid #bfd3bb; border-radius: 999px; color: var(--green-deep); background: rgba(220, 239, 214, .45); font-size: .72rem; font-weight: 720; }
.operation-visual { position: relative; min-width: 0; min-height: 600px; background: linear-gradient(145deg, #e8eee5, #f8faf6); }
.pos-visual { display: flex; align-items: center; padding: 48px 32px 100px; }
.operation-screen { position: relative; z-index: 1; width: 100%; height: auto; border: 1px solid rgba(23, 49, 38, .12); border-radius: 17px; box-shadow: 0 24px 55px rgba(25, 55, 40, .16); }
.pos-device { position: absolute; z-index: 2; right: 32px; bottom: 18px; width: 138px; height: auto; filter: drop-shadow(0 18px 22px rgba(12, 31, 23, .22)); }
.logistics-visual { overflow: hidden; }
.mobile-screens { position: relative; z-index: 2; display: grid; width: 72%; gap: 18px; padding: 48px 0 48px 38px; }
.mobile-screens img { width: 100%; height: auto; border: 1px solid rgba(23, 49, 38, .12); border-radius: 14px; background: var(--white); box-shadow: 0 18px 45px rgba(25, 55, 40, .14); }
.mobile-screens img:last-child { margin-left: 42px; }
.logistics-device { position: absolute; z-index: 1; right: -8%; bottom: -5%; width: 52%; height: auto; mix-blend-mode: multiply; filter: drop-shadow(0 20px 18px rgba(12, 31, 23, .15)); }

.cloud-section { overflow: hidden; background: var(--ink-deep); color: var(--white); }
.cloud-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr); align-items: center; gap: 100px; }
.cloud-copy h2 { color: var(--white); }
.cloud-copy > p:not(.eyebrow) { max-width: 650px; color: #b9c9c0; font-size: 1.12rem; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin: 34px 0 38px; padding: 0; list-style: none; color: #d8e2dc; font-size: .93rem; }
.check-list li { position: relative; padding-left: 24px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #8fdd79; font-weight: 800; }
.cloud-orbit { position: relative; min-height: 500px; }
.orbit { position: absolute; inset: 50%; border: 1px solid rgba(143, 221, 121, .25); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 330px; height: 330px; }
.orbit-two { width: 490px; height: 490px; }
.cloud-core { position: absolute; z-index: 2; top: 50%; left: 50%; display: flex; width: 180px; height: 180px; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(145deg, #5db246, #2f7d27); box-shadow: 0 0 0 22px rgba(75, 159, 53, .08), 0 30px 80px rgba(0,0,0,.35); transform: translate(-50%, -50%); }
.cloud-core strong { color: var(--white); font-size: 3.1rem; line-height: 1; }
.cloud-core span { color: #d8f7cc; font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.orbit-label { position: absolute; padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); color: #d9e4de; font-size: .75rem; backdrop-filter: blur(8px); }
.orbit-label-one { top: 16%; left: 18%; }
.orbit-label-two { top: 24%; right: 4%; }
.orbit-label-three { bottom: 15%; left: 10%; }
.orbit-label-four { right: 8%; bottom: 17%; }

.references-section { background: var(--paper); }
.reference-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; }
.reference-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 16px 55px rgba(25, 55, 40, .09); }
.reference-feature { grid-row: span 2; }
.reference-image { height: 310px; overflow: hidden; background: #fafafa; }
.reference-image img { width: 100%; height: 100%; object-fit: cover; }
.reference-copy { padding: 36px; }
.reference-tag { margin-bottom: 15px; color: var(--green-deep); font-size: .72rem; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }
.reference-copy h3 { margin-bottom: 16px; font-size: 2rem; }
.reference-copy > p:not(.reference-tag) { color: var(--muted); }
.reference-copy ul { margin: 24px 0 30px; padding-left: 20px; color: #495d53; }
.reference-copy-dark { min-height: 330px; background: var(--ink); color: #c5d1ca; }
.reference-copy-dark h3 { color: var(--white); }
.reference-copy-dark .reference-tag { color: #9cdd89; }
.reference-copy-dark > p:not(.reference-tag) { color: #c5d1ca; }
.reference-facts { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.reference-facts span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #b7c7be; font-size: .71rem; }
.reference-photo { position: relative; min-height: 390px; }
.reference-photo > img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.reference-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,20,13,.88), rgba(6,20,13,0) 70%); }
.reference-overlay { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 34px; color: #dce7e0; }
.reference-overlay h3 { margin-bottom: 8px; color: var(--white); font-size: 2rem; }
.reference-overlay p:last-child { margin: 0; }
.reference-overlay .reference-tag { color: #a6e194; }

.implementation-section { background: var(--white); }
.steps { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.steps li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--green); font-size: .82rem; font-weight: 750; }
.steps h3 { margin-bottom: 8px; font-size: 1.4rem; }
.steps p { max-width: 700px; margin: 0; color: var(--muted); }

.knowledge-section { background: var(--cream); }
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.knowledge-item { display: flex; min-height: 310px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.45); transition: transform .2s ease, background .2s ease; }
.knowledge-item:hover { transform: translateY(-5px); background: var(--white); }
.knowledge-item > p { color: var(--green-deep); font-size: .75rem; font-weight: 700; }
.knowledge-item h3 { font-size: 1.45rem; }
.knowledge-item a { margin-top: auto; color: var(--ink); font-size: .85rem; font-weight: 720; text-decoration: none; }
.knowledge-item a span { color: var(--green); }

.about-section { background: var(--paper); }
.about-layout { display: grid; grid-template-columns: minmax(360px, .75fr) minmax(0, 1.25fr); gap: 88px; align-items: center; }
.about-portrait { position: relative; }
.about-portrait > img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.portrait-caption { position: absolute; right: 18px; bottom: 18px; display: flex; flex-direction: column; min-width: 180px; padding: 14px 18px; border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 10px 28px rgba(15,35,25,.16); }
.portrait-caption strong { color: var(--ink); }
.portrait-caption span { color: var(--muted); font-size: .78rem; }
.about-copy h2 { margin-bottom: 26px; }
.about-copy blockquote { margin: 40px 0; padding: 3px 0 3px 28px; border-left: 3px solid var(--green); color: var(--ink); font-size: 1.35rem; font-weight: 650; line-height: 1.45; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; border-top: 1px solid var(--line); padding-top: 24px; }
.about-facts div { display: flex; flex-direction: column; }
.about-facts strong { color: var(--green-deep); font-size: 1.15rem; }
.about-facts span { color: var(--muted); font-size: .78rem; }

.aplino-section { overflow: hidden; background: linear-gradient(110deg, #153326, #26523e); color: var(--white); }
.aplino-layout { display: grid; grid-template-columns: 330px 1fr; min-height: 520px; align-items: center; gap: 90px; }
.aplino-figure { align-self: end; height: 500px; }
.aplino-figure img { height: 550px; width: auto; filter: drop-shadow(0 28px 35px rgba(0,0,0,.3)); }
.aplino-copy { max-width: 720px; padding: 80px 0; }
.aplino-copy h2 { color: var(--white); }
.aplino-copy > p:not(.eyebrow) { color: #cbd9d1; font-size: 1.15rem; }

.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 100px; }
.contact-copy h2 { margin-bottom: 24px; }
.contact-copy > p:not(.eyebrow) { max-width: 700px; color: var(--muted); font-size: 1.12rem; }
.contact-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.contact-details { display: grid; gap: 28px; padding-left: 36px; border-left: 1px solid var(--line); }
.contact-details div { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.contact-details div:last-child { border-bottom: 0; }
.contact-details p { margin-bottom: 7px; color: var(--green-deep); font-size: .73rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.contact-details address, .contact-details a { color: #42554c; text-decoration: none; }
.contact-details a:hover { color: var(--green-deep); }

.site-footer { padding: 68px 0 24px; background: #edf2ea; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 64px; }
.footer-brand img { width: 150px; height: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 270px; color: var(--muted); font-size: .87rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-title { margin-bottom: 8px; color: var(--ink); font-size: .82rem; font-weight: 750; }
.footer-grid a { color: var(--muted); font-size: .84rem; text-decoration: none; }
.footer-grid a:hover { color: var(--green-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: #7b8982; font-size: .72rem; }

.chat-launcher {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  display: flex;
  height: 58px;
  align-items: center;
  gap: 8px;
  padding: 4px 18px 4px 5px;
  border: 1px solid rgba(23,49,38,.16);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(13,32,23,.2);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease;
}
.chat-launcher:hover { transform: translateY(-3px); }
.chat-launcher img { width: 48px; height: 52px; object-fit: contain; object-position: center 17%; border-radius: 50%; background: #e6f3e1; }
.chat-panel {
  position: fixed;
  z-index: 130;
  right: 24px;
  bottom: 94px;
  display: flex;
  width: min(390px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 120px));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23,49,38,.15);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(8,28,17,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .2s ease, transform .2s ease;
}
.chat-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.chat-header { display: grid; grid-template-columns: 50px 1fr 36px; gap: 11px; align-items: center; padding: 14px 16px; background: var(--ink); color: var(--white); }
.chat-avatar { width: 48px; height: 48px; overflow: hidden; border-radius: 50%; background: #dcefd6; }
.chat-avatar img { width: 100%; height: 64px; object-fit: contain; object-position: center top; }
.chat-header div:nth-child(2) { display: flex; flex-direction: column; }
.chat-header strong { font-size: .92rem; }
.chat-header span { color: #aebfb5; font-size: .68rem; }
.chat-header button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--white); font-size: 1.35rem; cursor: pointer; }
.chat-body { display: flex; min-height: 300px; flex-direction: column; gap: 12px; overflow-y: auto; padding: 20px; background: #f4f7f2; }
.chat-message { max-width: 88%; padding: 11px 14px; border-radius: 16px; font-size: .82rem; line-height: 1.5; }
.chat-message-bot { align-self: flex-start; border-bottom-left-radius: 5px; background: var(--white); color: #344a3f; box-shadow: 0 5px 18px rgba(19,45,32,.07); }
.chat-message-user { align-self: flex-end; border-bottom-right-radius: 5px; background: var(--green); color: var(--white); }
.chat-message-status { align-self: flex-start; color: var(--muted); background: transparent; font-style: italic; }
.chat-answer-meta { display: grid; align-self: flex-start; max-width: 92%; gap: 8px; padding: 2px 2px 8px; }
.chat-meta-label { color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.chat-sources { display: flex; gap: 6px; flex-wrap: wrap; }
.chat-sources a { padding: 5px 9px; border: 1px solid #cbd8ce; border-radius: 999px; background: rgba(255,255,255,.7); color: var(--ink); font-size: .67rem; font-weight: 650; text-decoration: none; }
.chat-sources a:hover { border-color: var(--green); color: var(--green-deep); }
.chat-actions { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 2px; }
.chat-action { padding: 7px 10px; border: 1px solid var(--green); border-radius: 999px; color: var(--green-deep); background: transparent; font-size: .7rem; font-weight: 720; text-decoration: none; }
.chat-action-calendar { color: var(--white); background: var(--green); }
.chat-action:hover { color: var(--white); background: var(--green-deep); border-color: var(--green-deep); }
.chat-suggestions { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; margin-top: 4px; }
.chat-suggestions button { padding: 8px 11px; border: 1px solid #bfd8b7; border-radius: 999px; background: transparent; color: var(--green-deep); font-size: .73rem; cursor: pointer; }
.chat-suggestions button:hover { background: var(--green-soft); }
.chat-form { display: grid; grid-template-columns: 1fr 42px; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--white); }
.chat-form input { min-width: 0; padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; background: #f6f8f5; font-size: .8rem; }
.chat-form button { width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 800; cursor: pointer; }
.chat-form input:disabled, .chat-form button:disabled, .chat-suggestions button:disabled { cursor: wait; opacity: .58; }
.chat-privacy-hint { grid-column: 1 / -1; margin: 0 5px; color: var(--muted); font-size: .62rem; line-height: 1.35; }
.noscript-note { position: fixed; z-index: 200; right: 12px; bottom: 12px; max-width: 420px; padding: 12px; background: #fff5cc; border: 1px solid #d9b84b; font-size: .8rem; }

.legal-page { min-height: 100vh; padding: 140px 0 80px; }
.legal-shell { max-width: 820px; }
.legal-shell h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); }
.legal-shell h2 { margin-top: 50px; font-size: 1.8rem; }
.legal-note { padding: 16px 20px; border-left: 4px solid #d6a823; background: #fff7d8; color: #67571c; }
.legal-back { display: inline-flex; margin-bottom: 32px; color: var(--green-deep); font-weight: 700; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 1080px) {
  .main-nav { gap: 17px; }
  .main-nav > a:not(.button) { font-size: .83rem; }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 35px; }
  .aplino-hero { right: -30px; height: 255px; }
  .aplino-callout { right: 115px; }
  .tour-row { gap: 34px; padding: 36px; }
  .operation-card, .operation-card-logistics { grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); }
  .operation-copy { padding: 38px; }
  .footer-grid { gap: 36px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); }
  .section { padding: 84px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 86px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 28px 24px 50px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.button) { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 18px; }
  .hero { padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 710px; }
  .hero-visual { min-height: 520px; }
  .browser-frame { width: 92%; right: 3%; }
  .aplino-hero { right: 0; }
  .aplino-callout { right: 135px; }
  .proof-list { grid-template-columns: repeat(2, 1fr); }
  .proof-list > div:nth-child(3) { border-left: 1px solid var(--line); }
  .proof-list > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .problem-grid, .product-layout, .cloud-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .problem-item, .problem-item + .problem-item { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-layout, .about-layout, .contact-layout { gap: 60px; }
  .value-chain { position: relative; top: 0; }
  .tour-row, .tour-row:nth-child(even) { grid-template-columns: 1fr; gap: 32px; }
  .tour-row:nth-child(even) .tour-copy, .tour-row:nth-child(even) .tour-media { order: initial; }
  .operation-card, .operation-card-logistics { grid-template-columns: 1fr; }
  .operation-card-logistics .operation-copy, .operation-card-logistics .operation-visual { order: initial; }
  .operation-visual { min-height: 500px; }
  .split-heading { grid-template-columns: 1fr; gap: 12px; }
  .solution-row { grid-template-columns: 42px 1fr 80px; }
  .solution-row > p { grid-column: 2 / -1; }
  .function-area > summary { padding-inline: 22px; }
  .function-area-content { padding-inline: 22px; }
  .cloud-orbit { min-height: 430px; }
  .reference-grid { grid-template-columns: 1fr; }
  .reference-feature { grid-row: auto; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: minmax(280px, 480px); justify-content: center; }
  .about-copy { grid-row: 1; }
  .aplino-layout { grid-template-columns: 230px 1fr; gap: 40px; }
  .aplino-figure { height: 420px; }
  .aplino-figure img { height: 460px; }
  .contact-details { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); --radius: 22px; }
  body { font-size: 16px; }
  .site-header { height: 76px; }
  .brand { width: 132px; }
  .main-nav { inset: 76px 0 0; }
  .hero { min-height: auto; padding: 126px 0 55px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-proof { gap: 12px; flex-wrap: wrap; }
  .hero-visual { min-height: 410px; margin-top: 20px; }
  .browser-frame { top: 20px; width: 100%; right: 0; transform: rotate(0); }
  .browser-frame > img { height: 300px; }
  .tech-label { right: 10px; bottom: 10px; }
  .aplino-hero { right: -18px; bottom: -36px; height: 210px; }
  .aplino-callout { right: 82px; bottom: 7px; max-width: 210px; padding: 10px 12px; }
  .aplino-callout span:last-child { font-size: .68rem; }
  .proof-list > div { padding: 20px 18px; }
  .section-heading { margin-bottom: 42px; }
  .feature-lines > div { grid-template-columns: 1fr; gap: 9px; }
  .value-chain { padding: 24px; }
  .solution-row { grid-template-columns: 32px 1fr; gap: 14px; padding: 24px 0; }
  .solution-row > p, .solution-row > a { grid-column: 2; justify-self: start; }
  .function-area > summary { min-height: 82px; gap: 18px; padding: 20px 12px; }
  .function-area-title { font-size: 1.22rem; }
  .function-area-toggle { width: 30px; height: 30px; flex-basis: 30px; }
  .function-area-content { padding: 4px 0 42px; }
  .function-area-description { margin: 18px 0 38px; padding-left: 17px; font-size: .97rem; }
  .function-group + .function-group { margin-top: 42px; padding-top: 38px; }
  .function-group-description { font-size: .9rem; }
  .function-table { min-width: 680px; font-size: .8rem; }
  .function-table th { padding: 11px 12px; }
  .function-table td { padding: 13px 12px; }
  .tour-row { padding: 24px; border-radius: var(--radius); }
  .tour-copy h3 { font-size: 1.8rem; }
  .operation-card { min-height: 0; border-radius: var(--radius); }
  .operation-copy { padding: 32px 27px; }
  .operation-copy h3 { font-size: 2rem; }
  .operation-visual { min-height: 350px; }
  .pos-visual { padding: 26px 14px 70px; }
  .pos-device { right: 16px; bottom: 8px; width: 92px; }
  .mobile-screens { width: 77%; gap: 10px; padding: 25px 0 35px 14px; }
  .mobile-screens img:last-child { margin-left: 18px; }
  .logistics-device { right: -13%; bottom: -2%; width: 52%; }
  .check-list { grid-template-columns: 1fr; }
  .cloud-orbit { min-height: 350px; transform: scale(.78); margin: -45px; }
  .reference-copy { padding: 27px; }
  .reference-image { height: 240px; }
  .steps li { grid-template-columns: 48px 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .aplino-layout { grid-template-columns: 1fr; min-height: 0; }
  .aplino-figure { display: none; }
  .aplino-copy { padding: 74px 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .chat-launcher { right: 14px; bottom: 14px; }
  .chat-launcher span { display: none; }
  .chat-launcher { width: 58px; padding-right: 4px; }
  .chat-panel { right: 16px; bottom: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .chat-launcher, .chat-panel, .aplino-callout { display: none !important; }
  .hero { padding-top: 40px; }
  .section { padding: 40px 0; }
  .reveal { opacity: 1; transform: none; }
  .function-area > .function-area-content { display: block !important; }
  .function-area-toggle { display: none; }
  .function-table-wrap { overflow: visible; }
  .function-table { min-width: 0; }
}
