﻿:root {
  --ink: #17211b;
  --muted: #5e6a62;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #d9ded5;
  --green: #276b4a;
  --green-dark: #143a2b;
  --red: #b24435;
  --blue: #315f86;
  --gold: #c6902c;
  --mint: #dcecdf;
  --shadow: 0 22px 70px rgba(16, 32, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 245, 239, 0.94);
  box-shadow: 0 12px 40px rgba(16, 32, 25, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 14px;
}

.site-nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 16px;
  font-weight: 700;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item::before {
  position: absolute;
  top: 100%;
  right: -12px;
  left: -12px;
  height: 18px;
  content: "";
}

.site-nav a,
.nav-menu-trigger {
  position: relative;
  padding-block: 7px;
}

.site-nav a.is-active,
.site-nav a[aria-current="page"],
.nav-item.is-active > .nav-menu-trigger {
  color: var(--green);
}

.site-nav > a::after,
.nav-menu-trigger::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav > a.is-active::after,
.site-nav > a[aria-current="page"]::after,
.nav-item.is-active > .nav-menu-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(23, 33, 27, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(16, 32, 25, 0.18);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-menu a::after {
  display: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active,
.nav-menu a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--mint);
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-cta {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  font-weight: 700;
  font-size: 15px;
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(23, 33, 27, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.header-cta.is-active,
.header-cta[aria-current="page"] {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 32px;
  place-items: center;
  /* gap: 4px; */
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .menu-toggle:hover,
.site-header.is-scrolled .menu-toggle:focus-visible,
.subpage .menu-toggle:hover,
.subpage .menu-toggle:focus-visible {
  background: rgba(23, 33, 27, 0.08);
}

.site-header.is-scrolled .menu-toggle,
.subpage .menu-toggle {
  border-color: rgba(23, 33, 27, 0.42);
  background: rgba(255, 255, 255, 0.78);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 88vh;
  padding: 120px clamp(18px, 5vw, 72px) 44px;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 19, 13, 0.9) 0%, rgba(9, 19, 13, 0.66) 38%, rgba(9, 19, 13, 0.16) 76%),
    url("images/hero-self-order-pos.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 14px;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.15;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.38;
}

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

.button,
.summary-grid a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary,
.summary-grid a {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.section {
  padding: clamp(42px, 6vw, 80px) clamp(10px, 4vw, 42px);
}

.section-inner {
  width: min(100%, 120rem);
  margin-inline: auto;
}

.feature-section {
  background:
    linear-gradient(135deg, rgba(220, 236, 223, 0.84), rgba(247, 245, 239, 0) 52%),
    var(--paper);
}

.feature-section .section-heading {
  margin-bottom: 1rem;
}

.feature-section .device-placeholder {
  transform: rotate(1deg);
}

.self-order-showcase {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.self-order-intro {
  max-width: 920px;
}

.self-order-intro p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.self-order-slogan {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 10px 14px;
  color: var(--green-dark) !important;
  background: var(--mint);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  font-size: 20px !important;
  font-weight: 900;
}

.self-order-layout {
  display: grid;
  grid-template-columns: minmax(360px, 620px) minmax(440px, 680px);
  align-items: center;
  justify-content: start;
  justify-items: start;
  gap: clamp(36px, 6vw, 84px);
}

.self-order-layout .device-placeholder {
  justify-self: start;
  place-items: center;
}

.self-order-benefits {
  display: grid;
  gap: 12px;
}

.self-order-benefits article {
  padding: 18px;
  border: 1px solid rgba(39, 107, 74, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.self-order-benefits span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.self-order-benefits h3 {
  font-size: 20px;
}

.self-order-benefits p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.self-order-flow,
.self-order-benefit-grid {
  display: grid;
  gap: 12px;
}

.self-order-flow article,
.self-order-benefit-grid article {
  padding: 18px;
  border: 1px solid rgba(39, 107, 74, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.self-order-flow span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.self-order-flow h3,
.self-order-benefit-grid h3 {
  font-size: 20px;
}

.self-order-flow p,
.self-order-benefit-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.self-order-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.self-order-detail-section {
  background: var(--white);
}

.setup-flow-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
}

.product-photo {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.flow-panel .section-heading {
  margin-bottom: 24px;
}

.flow-panel .section-heading h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.self-order-flow-diagram {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  align-items: center;
}

.flow-step {
  position: relative;
  padding: 18px 18px 18px 64px;
  border: 1px solid rgba(39, 107, 74, 0.16);
  border-radius: 8px;
  background: var(--paper);
}

.flow-full,
.flow-line,
.flow-split,
.flow-merge {
  grid-column: 1 / -1;
}

.flow-line {
  width: 3px;
  height: 28px;
  margin: 0 auto;
  background: var(--green);
}

.flow-split,
.flow-merge {
  position: relative;
  height: 34px;
}

.flow-split::before,
.flow-merge::before {
  position: absolute;
  left: 25%;
  right: 25%;
  height: 3px;
  background: var(--green);
  content: "";
}

.flow-split::before {
  top: 16px;
}

.flow-merge::before {
  bottom: 16px;
}

.flow-split::after,
.flow-merge::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--green), var(--green)) 50% 0 / 3px 18px no-repeat,
    linear-gradient(var(--green), var(--green)) 25% 16px / 3px 18px no-repeat,
    linear-gradient(var(--green), var(--green)) 75% 16px / 3px 18px no-repeat;
  content: "";
}

.flow-merge::after {
  background:
    linear-gradient(var(--green), var(--green)) 25% 0 / 3px 18px no-repeat,
    linear-gradient(var(--green), var(--green)) 75% 0 / 3px 18px no-repeat,
    linear-gradient(var(--green), var(--green)) 50% 16px / 3px 18px no-repeat;
}

.flow-step span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-grid;
  min-width: 32px;
  height: 32px;
  padding-inline: 8px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.flow-step h3 {
  font-size: 20px;
}

.flow-step p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

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

.feature-list-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.feature-list-grid h3 {
  color: var(--green-dark);
  font-size: 22px;
}

.feature-list-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
}

.detail-cta h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.detail-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.impact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.impact-row strong {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 1rem;
}

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

.section-heading p,
.copy-block p,
.text-column p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.trust-layout,
.hardware-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(16px, 5vw, 24px);
}

.copy-block {
  max-width: 620px;
}

.device-placeholder {
  display: grid;
  min-height: clamp(380px, 36vw, 520px);
  place-items: center;
  /* padding: clamp(8px, 2vw, 22px); */
  border-radius: 8px;
  background: transparent;
}

.screenshot-frame {
  overflow: hidden;
  /* width: min(112%, 980px); */
  width: min(112%, 680px);
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.screenshot-frame img,
.wide-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.selforder-frame {
  aspect-ratio: 16 / 10;
}

.selforder-frame img {
  border-radius: 8px;
  object-fit: cover;
}

.dark-band {
  color: var(--white);
  background: var(--green-dark);
}

.dark-band .section-heading p,
.dark-band .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

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

.monitor-grid article {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.monitor-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.status-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 99px;
}

.status-dot.new {
  background: var(--red);
}

.status-dot.progress {
  background: var(--gold);
}

.status-dot.done {
  background: #65b981;
}

.wide-placeholder {
  display: grid;
  overflow: hidden;
  aspect-ratio: 1919 / 684;
  min-height: 280px;
  border-radius: 8px;
}

.trust-section {
  background: var(--white);
}

.trust-points {
  display: grid;
  gap: 14px;
}

.trust-points div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-left: 5px solid var(--green);
  background: var(--paper);
}

.trust-points strong {
  color: var(--blue);
  font-size: 30px;
}

.trust-points span {
  color: var(--muted);
}

.pricing-section {
  /* background: var(--white); */
  background: #edf3f4;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  background: #f1f7f2;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
}

.pricing-table th {
  color: var(--ink);
  background: #eef3ef;
  font-size: 18px;
}

.pricing-table th span,
.pricing-table th small {
  display: block;
}

.pricing-table th small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.pricing-table .recommended {
  color: var(--white);
  background: var(--green)!important;
}

.pricing-table .recommended small {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table .feature-group td {
  padding: 12px 20px;
  color: var(--green-dark);
  border-bottom: 1px solid #cad8cb;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.yes {
  color: var(--green);
  font-weight: 900;
}

.no {
  color: var(--muted);
  font-weight: 900;
}

.service-section {
  background:
    linear-gradient(180deg, #f7f5ef 0%, #edf3f4 100%);
}

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

.service-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.service-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.service-grid p {
  color: var(--muted);
}

.hardware-section {
  background: var(--white);
}

.hardware-layout {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.9fr);
}

.hardware-system-section {
  background: var(--white);
}

.hardware-visual {
  overflow: hidden;
  min-height: 470px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hardware-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.hardware-photo {
  min-height: 470px;
  border-radius: 8px;
  background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1400&q=82") center / cover;
  box-shadow: var(--shadow);
}

.setup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.setup-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.hardware-list span {
  color: var(--green-dark);
  background: var(--paper);
}

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

.hardware-product-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.hardware-product-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hardware-product-card h3 {
  margin-top: 16px;
  font-size: 24px;
}

.hardware-product-card strong {
  display: block;
  margin: 18px 0;
  color: var(--green-dark);
  font-size: 28px;
}

.hardware-product-card p {
  margin: 0;
  color: var(--muted);
}

.hardware-product-card.is-featured {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.hardware-product-card.is-featured span,
.hardware-product-card.is-featured strong,
.hardware-product-card.is-featured p {
  color: var(--white);
}

.compact-section {
  padding-block: 78px;
  background: var(--white);
}

.business-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.business-tab {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.business-tab.is-active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.business-detail {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f5ef;
  text-align: center;
}

.business-detail p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.final-cta .button.primary {
  background: var(--red);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #101511;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.subpage .site-header {
  color: var(--ink);
  background: rgba(247, 245, 239, 0.96);
  box-shadow: 0 12px 40px rgba(16, 32, 25, 0.1);
  backdrop-filter: blur(18px);
}

.subpage .header-cta {
  border-color: rgba(23, 33, 27, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.subpage .header-cta.is-active,
.subpage .header-cta[aria-current="page"] {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.page-hero {
  padding: 120px clamp(18px, 5vw, 72px) 44px;
  background:
    linear-gradient(135deg, rgba(220, 236, 223, 0.9), rgba(247, 245, 239, 0) 56%),
    var(--paper);
}

.page-hero h1 {
  max-width: 1120px;
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1;
}

.page-hero > p {
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.page-hero .button {
  margin-top: 18px;
}

.dark-page-hero {
  color: var(--white);
  background: var(--green-dark);
}

.dark-page-hero h1,
.dark-page-hero > p {
  color: var(--white);
}

.dark-page-hero > p {
  opacity: 0.78;
}

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

.summary-grid article,
.package-cards article,
.legal-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.summary-grid article {
  display: flex;
  flex-direction: column;
}

.summary-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-grid p,
.package-cards p,
.legal-box p {
  color: var(--muted);
}

.summary-grid a {
  width: fit-content;
  margin-top: auto;
}

.package-cards strong {
  display: block;
  margin: 12px 0;
  color: var(--green-dark);
  font-size: 24px;
}

.package-cards .is-featured {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.package-cards .is-featured strong,
.package-cards .is-featured p {
  color: var(--white);
}

.section-button {
  margin-top: 24px;
}

.centered-action {
  display: flex;
  width: max-content;
  margin-inline: auto;
}

.legal-box {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto auto;
    color: var(--ink);
    background: rgba(247, 245, 239, 0.98);
    box-shadow: 0 10px 30px rgba(16, 32, 25, 0.08);
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open,
  .subpage .site-header {
    color: var(--ink);
    background: rgba(247, 245, 239, 0.98);
    box-shadow: 0 10px 30px rgba(16, 32, 25, 0.08);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(23, 33, 27, 0.14);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 48px rgba(16, 32, 25, 0.18);
  }

  .site-header.is-menu-open .site-nav {
    display: grid;
  }

  .site-nav a,
  .nav-menu-trigger {
    display: block;
    padding: 12px;
    border-radius: 6px;
  }

  .site-nav > a::after,
  .nav-menu-trigger::after {
    display: none;
  }

  .nav-item {
    display: grid;
  }

  .nav-item::before {
    display: none;
  }

  .nav-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 6px 12px;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 9px 10px;
  }

  .menu-toggle {
    display: grid;
  }

  .setup-flow-layout,
  .self-order-layout,
  .trust-layout,
  .hardware-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .monitor-grid,
  .service-grid,
  .self-order-benefit-grid,
  .self-order-flow-diagram,
  .feature-list-grid,
  .hardware-product-grid,
  .summary-grid,
  .package-cards {
    grid-template-columns: 1fr;
  }

  .self-order-flow-diagram article {
    min-height: auto;
  }

  .flow-split,
  .flow-merge {
    height: 24px;
  }

  .flow-split::before,
  .flow-merge::before {
    display: none;
  }

  .flow-split::after,
  .flow-merge::after {
    background: linear-gradient(var(--green), var(--green)) 50% 0 / 3px 100% no-repeat;
  }

  .detail-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 86vh;
  }

  .page-hero {
    padding-top: 56px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    align-items: flex-start;
    padding: 36px 18px 34px;
  }

  .page-hero {
    padding-top: 44px;
  }

  .button,
  .summary-grid a {
    width: 100%;
  }

  .device-placeholder,
  .hardware-visual,
  .hardware-visual img,
  .hardware-photo {
    min-height: 340px;
  }

  .screenshot-frame {
    border-width: 6px;
  }

  .wide-placeholder {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1919 / 684;
  }

  .trust-points div {
    grid-template-columns: 1fr;
  }
}
