:root {
  --ink: #16231d;
  --ink-2: #25332c;
  --muted: #6e7a73;
  --green: #19633f;
  --green-2: #0f3c2b;
  --amber: #f29b25;
  --amber-2: #d97a12;
  --ivory: #f6f0e5;
  --porcelain: #f9fbf8;
  --blue-gray: #263d49;
  --line: rgba(22, 35, 29, .13);
  --shadow: 0 24px 80px rgba(16, 35, 27, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(130deg, rgba(246, 240, 229, .62), rgba(255, 255, 255, 0) 38%),
    linear-gradient(220deg, rgba(38, 61, 73, .08), rgba(255, 255, 255, 0) 34%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 64px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 25, 20, .82), rgba(12, 25, 20, .16));
  backdrop-filter: blur(14px);
  transition: background .28s ease, box-shadow .28s ease, height .28s ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(12, 25, 20, .92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .2);
}

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

.brand img {
  width: 122px;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .22));
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-copy strong {
  color: rgba(255, 255, 255, .94);
  font-size: 14px;
}

.brand-copy small {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 800;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-select {
  min-height: 38px;
  max-width: 118px;
  padding: 0 28px 0 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  outline: none;
}

.language-select option {
  color: var(--ink);
  background: #fff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  color: rgba(255, 255, 255, .84);
}

.desktop-nav a,
.header-phone {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after,
.header-phone::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--amber);
  transition: transform .28s ease;
}

.desktop-nav a:hover::after,
.header-phone:hover::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: #fff;
  background: var(--green-2);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroSlide 18s ease-in-out infinite;
}

.hero-slide-one {
  background-image: url("../img/optimized/hero-global-catering.webp");
}

.hero-slide-two {
  background-image: url("../img/optimized/hero-smart-canteen.webp");
  animation-delay: 6s;
}

.hero-slide-three {
  background-image: url("../img/optimized/hero-supply-chain.webp");
  animation-delay: 12s;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(7, 19, 14, .92) 0%, rgba(7, 19, 14, .72) 43%, rgba(7, 19, 14, .22) 72%),
    linear-gradient(0deg, rgba(7, 19, 14, .7), rgba(7, 19, 14, 0) 32%);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 155, 37, .22), rgba(25, 99, 63, 0) 35%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .16), transparent 25%);
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .48fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  min-height: 78vh;
  margin: 0 auto;
  padding: 132px 0 104px;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--amber);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8.2vw, 116px);
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  margin-top: 0;
  font-size: 1em;
  line-height: .98;
}

.hero-lede {
  margin: 20px 0 0;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.16;
  font-weight: 800;
  color: rgba(255, 255, 255, .92);
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.78;
}

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

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
  opacity: 0;
  pointer-events: none;
}

.button::after {
  content: ">";
  position: relative;
  display: inline-block;
  font-size: 13px;
  transform: translateX(0);
  transition: transform .25s ease;
}

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

.button:hover::before {
  opacity: 1;
  animation: buttonSheen .72s ease forwards;
}

.button:hover::after {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(0) scale(.99);
}

.button:focus-visible {
  outline: 3px solid rgba(242, 155, 37, .38);
  outline-offset: 4px;
}

.button.primary {
  color: #17231e;
  background: linear-gradient(135deg, #ffc166, var(--amber));
  box-shadow: 0 18px 42px rgba(242, 155, 37, .32);
}

.hero-actions .button.primary {
  animation: ctaBreath 3.6s ease-in-out 1.5s infinite;
}

.button.primary:hover {
  box-shadow: 0 24px 56px rgba(242, 155, 37, .44);
  animation-play-state: paused;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .16);
}

.hero-panel {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
  animation: floatPanel 6.8s ease-in-out infinite;
}

.hero-panel p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  font-weight: 800;
}

.hero-metrics {
  display: grid;
  gap: 12px;
}

.hero-metrics div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
}

.hero-metrics strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.hero-metrics strong span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.hero-metrics div > span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-proof span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  font-weight: 900;
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1180px, calc(100% - 40px));
  transform: translateX(-50%);
}

.hero-strip span {
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(10, 23, 18, .42);
  backdrop-filter: blur(12px);
  font-weight: 800;
  font-size: 13px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 124px) 0;
}

.intro {
  padding-top: clamp(36px, 5vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.safety-copy h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker),
.split-heading > p,
.safety-copy p,
.contact p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 36px;
  max-width: none;
  align-items: end;
}

.system-proof {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
}

.system-proof-visual {
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--green-2);
}

.system-proof-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.system-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 35, 29, .08);
}

.system-proof-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.12;
}

.system-proof-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

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

.system-facts div {
  min-height: 94px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246, 240, 229, .74), rgba(255, 255, 255, .9));
}

.system-facts strong,
.system-facts span {
  display: block;
}

.system-facts strong {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.system-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

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

.capability-card {
  min-height: 288px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 35, 29, .08);
}

.capability-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.capability-card h3 {
  margin: 42px 0 14px;
  font-size: 25px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.solutions {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #fff 0%, var(--ivory) 100%);
}

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

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  color: #fff;
  background: var(--green-2);
  box-shadow: 0 22px 70px rgba(22, 35, 29, .16);
  transition: transform .32s ease, box-shadow .32s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 88px rgba(22, 35, 29, .22);
}

.solution-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .76;
  transform: scale(1.04);
  transition: transform .8s ease, opacity .32s ease;
}

.solution-card:hover img {
  opacity: .88;
  transform: scale(1.11);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 19, 14, .94) 0%, rgba(7, 19, 14, .68) 46%, rgba(7, 19, 14, .12) 100%),
    linear-gradient(90deg, rgba(242, 155, 37, .16), rgba(25, 99, 63, 0));
}

.solution-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px;
}

.solution-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .76);
  font-weight: 900;
}

.solution-card h3 {
  margin: 0 0 14px;
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.12;
}

.solution-card span {
  display: block;
  color: rgba(255, 255, 255, .82);
  line-height: 1.78;
}

.solution-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.55;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.cuisine {
  text-align: center;
}

.cuisine .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.cuisine-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  min-height: 260px;
}

.plate-card {
  overflow: hidden;
  height: clamp(210px, 24vw, 310px);
  border: 10px solid #fff;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #fff;
  animation: floatPlate 7s ease-in-out infinite;
}

.plate-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform .8s ease;
}

.plate-card:hover img {
  transform: scale(1.12);
}

.menu-crop-a {
  object-position: 12% 52%;
}

.menu-crop-b {
  object-position: 42% 46%;
}

.menu-crop-c {
  object-position: 72% 52%;
}

.menu-crop-d {
  object-position: 58% 78%;
}

.float-two {
  margin-top: 34px;
  animation-delay: -.9s;
}

.float-three {
  margin-top: -12px;
  animation-delay: -1.8s;
}

.float-four {
  margin-top: 28px;
  animation-delay: -2.5s;
}

.safety {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  color: #fff;
  background: linear-gradient(135deg, var(--green-2), var(--blue-gray));
}

.safety-visual {
  overflow: hidden;
  min-height: 520px;
  border-radius: 0 44px 44px 0;
  box-shadow: 0 26px 90px rgba(0, 0, 0, .22);
}

.safety-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.safety-copy h2,
.safety-copy p {
  color: #fff;
}

.safety-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, .74);
}

.safety-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.safety-steps div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
}

.safety-steps strong,
.safety-steps span {
  display: block;
}

.safety-steps strong {
  color: #ffc166;
}

.safety-steps span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
}

.safety-steps em {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
}

.safety-data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.safety-data-grid div {
  min-height: 100px;
  padding: 16px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
}

.safety-data-grid strong,
.safety-data-grid span {
  display: block;
}

.safety-data-grid strong {
  color: #ffc166;
  font-size: 28px;
  line-height: 1;
}

.safety-data-grid span {
  margin-top: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.farm-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.farm-flow span {
  position: relative;
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .09);
  font-size: 12px;
  font-weight: 900;
}

.farm-flow span:not(:last-child)::after {
  content: ">";
  margin-left: 9px;
  color: #ffc166;
}

.upgrade {
  padding-bottom: clamp(44px, 6vw, 74px);
}

.upgrade-showcase,
.client-showcase,
.proof {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
  gap: 24px;
  align-items: stretch;
}

.upgrade-visual,
.client-visual,
.proof-visual {
  overflow: hidden;
  min-height: 430px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--green-2);
}

.upgrade-visual img,
.client-visual img,
.proof-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.upgrade-copy,
.client-copy,
.proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 35, 29, .08);
}

.upgrade-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

.pain-grid {
  display: grid;
  gap: 10px;
}

.pain-grid article,
.smart-benefits article,
.news-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(246, 240, 229, .42));
}

.pain-grid article {
  padding: 14px 16px;
}

.pain-grid strong,
.pain-grid span {
  display: block;
}

.pain-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.pain-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.smart-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.smart-benefits article {
  min-height: 190px;
  padding: 18px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.smart-benefits article:hover,
.news-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 99, 63, .22);
  box-shadow: 0 20px 58px rgba(22, 35, 29, .1);
}

.smart-benefits span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  font-size: 12px;
}

.smart-benefits strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.smart-benefits p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.client-showcase {
  grid-template-columns: minmax(0, .82fr) minmax(320px, .9fr);
}

.client-category-line {
  margin: 0 0 20px;
  color: var(--green);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.3;
  font-weight: 900;
}

.client-case-grid,
.cert-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.client-case-grid span,
.cert-list span {
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink-2);
  background: rgba(246, 240, 229, .44);
  font-weight: 800;
  line-height: 1.45;
}

.proof {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.proof-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.1;
}

.proof-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.cert-list {
  margin-top: 22px;
}

.proof-copy > strong {
  display: block;
  margin-top: 20px;
  color: var(--green);
  font-size: 20px;
}

.news {
  padding-top: clamp(46px, 6vw, 76px);
}

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

.news-grid article {
  min-height: 250px;
  padding: 24px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.news-grid p {
  margin: 0 0 18px;
  color: var(--amber-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.news-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
}

.news-grid span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.72;
}

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

.logo-card {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  margin: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(22, 35, 29, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), rgba(25, 99, 63, .12));
  transform: scaleX(.22);
  transform-origin: left center;
  transition: transform .28s ease;
}

.logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 99, 63, .22);
  box-shadow: 0 22px 58px rgba(22, 35, 29, .11);
}

.logo-card:hover::after {
  transform: scaleX(1);
}

.logo-card img {
  width: 100%;
  max-width: 190px;
  max-height: 92px;
  object-fit: contain;
  filter: saturate(.95) contrast(1.02);
}

.page-main {
  padding-top: 76px;
}

.inner-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--green-2);
}

.inner-hero-media {
  position: absolute;
  inset: 0;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  transform: scale(1.03);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 19, 14, .92) 0%, rgba(7, 19, 14, .72) 46%, rgba(7, 19, 14, .2) 100%),
    linear-gradient(0deg, rgba(7, 19, 14, .64), rgba(7, 19, 14, 0) 44%);
}

.inner-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 82px;
}

.inner-hero-copy h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(46px, 7vw, 96px);
  line-height: .98;
}

.inner-hero-copy > p:not(.eyebrow) {
  max-width: 740px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a::after {
  content: "/";
  margin-left: 10px;
  color: rgba(110, 122, 115, .5);
}

.inner-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr);
  gap: 24px;
}

.inner-copy-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(22, 35, 29, .08);
}

.inner-copy-block + .inner-copy-block {
  margin-top: 16px;
}

.inner-copy-block h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
}

.inner-copy-block p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.86;
}

.inner-aside {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, var(--green-2), var(--blue-gray));
  box-shadow: var(--shadow);
}

.inner-aside strong {
  margin-bottom: 8px;
  color: #ffc166;
  font-size: 20px;
}

.inner-aside span {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
}

.inner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.inner-card {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, rgba(246, 240, 229, .44));
  box-shadow: 0 16px 42px rgba(22, 35, 29, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.inner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 99, 63, .22);
  box-shadow: 0 22px 58px rgba(22, 35, 29, .11);
}

.inner-card span {
  display: block;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.inner-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.inner-contact {
  margin-top: 0;
}

.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, rgba(15, 60, 43, .98), rgba(38, 61, 73, .96));
  box-shadow: var(--shadow);
}

.contact h2,
.contact p {
  color: #fff;
}

.contact p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.site-footer img {
  width: 138px;
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.site-footer address {
  font-style: normal;
  text-align: right;
  line-height: 1.8;
}

[data-animate] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}

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

.animate-in {
  opacity: 0;
  animation: heroReveal .88s cubic-bezier(.22, .9, .28, 1) forwards;
}

.animate-in:nth-child(2) {
  animation-delay: .08s;
}

.animate-in:nth-child(3) {
  animation-delay: .18s;
}

.animate-in:nth-child(4) {
  animation-delay: .3s;
}

.animate-in:nth-child(5) {
  animation-delay: .42s;
}

.hero-panel.animate-in {
  animation: heroReveal .9s cubic-bezier(.22, .9, .28, 1) .48s forwards, floatPanel 6.8s ease-in-out 1.6s infinite;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  8%, 31% {
    opacity: 1;
  }
  40%, 100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes floatPanel {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatPlate {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(.4deg);
  }
}

@keyframes buttonSheen {
  from {
    left: -60%;
  }
  to {
    left: 118%;
  }
}

@keyframes ctaBreath {
  0%, 100% {
    box-shadow: 0 18px 42px rgba(242, 155, 37, .32);
  }
  50% {
    box-shadow: 0 22px 58px rgba(242, 155, 37, .48);
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .hero-inner,
  .system-proof,
  .upgrade-showcase,
  .client-showcase,
  .proof,
  .inner-content-grid,
  .split-heading,
  .safety,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: center;
    padding-top: 122px;
  }

  .hero-panel {
    max-width: 480px;
  }

  .capability-grid,
  .solution-grid,
  .cuisine-stage,
  .smart-benefits,
  .news-grid,
  .inner-card-grid,
  .safety-data-grid,
  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-aside {
    position: static;
  }

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

  .safety-visual,
  .safety-visual img,
  .upgrade-visual,
  .upgrade-visual img,
  .client-visual,
  .client-visual img,
  .proof-visual,
  .proof-visual img {
    min-height: 360px;
    border-radius: 34px;
  }

  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .brand img {
    width: 96px;
  }

  .brand-copy {
    display: none;
  }

  .header-phone {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .header-tools {
    gap: 8px;
  }

  .language-select {
    max-width: 92px;
    min-height: 34px;
    padding-left: 10px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    min-height: auto;
    padding: 98px 0 24px;
  }

  .hero h1 {
    font-size: clamp(42px, 16vw, 72px);
  }

  .hero-lede {
    font-size: clamp(22px, 7vw, 32px);
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.68;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 18px;
    border-radius: 22px;
    animation: none;
  }

  .hero-panel.animate-in {
    animation: heroReveal .9s cubic-bezier(.22, .9, .28, 1) .48s forwards;
  }

  .hero-panel p {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-metrics div {
    padding: 12px 10px;
    border-radius: 14px;
  }

  .hero-metrics strong {
    font-size: 22px;
  }

  .hero-metrics div > span {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-strip {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 2;
    width: calc(100% - 32px);
    margin: 0 auto 18px;
    overflow-x: auto;
    flex-wrap: nowrap;
    transform: none;
    padding-bottom: 3px;
  }

  .hero-strip span {
    flex: 0 0 auto;
  }

  .inner-hero {
    min-height: 460px;
  }

  .inner-hero-copy {
    width: min(100% - 32px, 1180px);
    padding: 70px 0 64px;
  }

  .inner-hero-copy h1 {
    font-size: clamp(40px, 13vw, 66px);
  }

  .section,
  .solutions,
  .safety,
  .proof {
    width: min(100% - 32px, 1180px);
    padding: 70px 0;
  }

  .intro {
    padding-top: 8px;
  }

  .solutions,
  .safety {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .capability-grid,
  .solution-grid,
  .cuisine-stage,
  .system-facts,
  .smart-benefits,
  .client-case-grid,
  .cert-list,
  .news-grid,
  .inner-card-grid,
  .logo-wall,
  .safety-steps,
  .safety-data-grid {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .solution-card {
    border-radius: 22px;
  }

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

  .solution-content {
    padding: 22px;
  }

  .system-proof-copy,
  .system-proof-visual,
  .system-proof-visual img,
  .upgrade-copy,
  .upgrade-visual,
  .upgrade-visual img,
  .client-copy,
  .client-visual,
  .client-visual img,
  .proof-copy,
  .proof-visual,
  .proof-visual img {
    min-height: auto;
  }

  .system-proof-copy,
  .upgrade-copy,
  .client-copy,
  .proof-copy,
  .inner-copy-block,
  .inner-aside {
    padding: 24px;
  }

  .inner-copy-block,
  .inner-aside,
  .inner-card {
    border-radius: 20px;
  }

  .cuisine-stage {
    min-height: auto;
  }

  .plate-card,
  .float-two,
  .float-three,
  .float-four {
    margin-top: 0;
  }

  .logo-card {
    min-height: 108px;
  }

  .contact {
    width: calc(100% - 32px);
    margin-bottom: 54px;
    padding: 28px;
    border-radius: 26px;
  }

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

  .site-footer {
    display: grid;
    padding: 28px 16px;
  }

  .site-footer div {
    display: grid;
    gap: 8px;
  }

  .site-footer address {
    text-align: left;
  }
}

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