:root {
  --ink: #111111;
  --muted: #5f6672;
  --paper: #f4f4f4;
  --surface: #ffffff;
  --line: #d6d6d6;
  --teal: #1f6f62;
  --teal-dark: #164c44;
  --amber: #d2aa55;
  --coral: #9b4d3f;
  --mint: #edf3f1;
  --shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(24px, calc((100vw - 1200px) / 2));
  border: 0;
  border-radius: 0;
  background: #050505;
  color: #fff;
  backdrop-filter: none;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: #050505;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
}

.brand-text-only {
  gap: 0;
  min-width: 128px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #f1c66f;
  color: #18211f;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-nav .nav-cta {
  background: #dcb75d;
  color: #090909;
}

.site-nav .nav-cta:hover {
  background: #ffd982;
  color: #18211f;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
  overflow: hidden;
  padding: 122px max(24px, calc((100vw - 1200px) / 2)) 56px;
  background: #f7f7f7;
  color: #111;
}

.page-hero,
.support-hero,
.downloads-hero {
  padding: 118px max(24px, calc((100vw - 1200px) / 2)) 62px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
}

.restaurant-hero {
  border-bottom: 1px solid var(--line);
  background: #f7f7f7;
  color: #111;
}

.biznes-hero {
  border-bottom: 1px solid var(--line);
  background: #f7f7f7;
  color: #111;
}

.hero-product-shot {
  display: grid;
  place-items: center;
}

.hero-product-shot img {
  width: min(680px, 100%);
  border: 12px solid rgba(10, 16, 15, 0.95);
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow);
  transform: none;
}

.page-hero h1,
.support-hero h1,
.downloads-hero h1 {
  font-size: clamp(2.05rem, 4.8vw, 3.55rem);
  line-height: 1.04;
}

.page-hero p:not(.eyebrow),
.support-hero p,
.downloads-hero p {
  max-width: 680px;
  color: #3b4048;
  font-size: 1rem;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: 32px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intro-band p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-bg,
.hero-overlay {
  width: 100%;
  height: 100%;
}

.hero-bg {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  transform: none;
  box-shadow: var(--shadow);
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #111;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: #2f3238;
  font-size: 1rem;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  padding: 0 20px;
  font-weight: 800;
}

.btn-primary {
  border: 1px solid #111;
  background: #111;
  color: #fff;
}

.btn-primary:hover {
  background: #333;
}

.btn-secondary {
  border: 1px solid #9ca3af;
  color: #111;
  background: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-dark {
  background: #17211f;
  color: #fff;
}

.btn-dark:hover {
  background: #24312e;
}

.btn-disabled {
  pointer-events: none;
  background: #e5e2da;
  color: #77766f;
}

.btn-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
}

.page-metrics {
  max-width: 760px;
  margin-top: 8px;
}

.hero-metrics div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  background: #fff;
  backdrop-filter: none;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #111;
  font-size: 1.45rem;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 8px;
  color: #5f6672;
  font-size: 0.86rem;
}

.section {
  padding: 66px max(24px, calc((100vw - 1200px) / 2));
}

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

.product-gallery .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
}

.section-heading.compact {
  max-width: 680px;
}

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

.solution-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px;
}

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

.solution-card.restaurant::after {
  background: var(--coral);
}

.solution-card.retail::after {
  background: var(--teal);
}

.solution-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
  color: var(--muted);
  font-weight: 800;
}

.solution-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  background: #f6f6f6;
  color: #111;
}

.solution-card.restaurant .solution-icon {
  background: #f6f6f6;
  color: #111;
}

.solution-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.solution-card p {
  max-width: 560px;
  color: var(--muted);
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.solution-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  display: flex;
  gap: 10px;
  color: #2d3836;
  font-weight: 700;
}

.solution-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #efefef;
}

.platform-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.check {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.86rem;
}

.dashboard-preview {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #111;
  border-radius: 4px;
  background: #111;
  box-shadow: none;
}

.dash-header {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.dash-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  padding: 18px;
}

.sales-panel,
.mini-panel,
.order-list {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.sales-panel {
  min-height: 270px;
  grid-row: span 2;
  padding: 22px;
}

.sales-panel span,
.mini-panel span {
  color: rgba(255, 255, 255, 0.58);
}

.sales-panel strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.trend-line {
  height: 118px;
  margin-top: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(241, 198, 111, 0.9) 19% 22%, transparent 23% 40%, rgba(35, 176, 154, 0.95) 41% 45%, transparent 46% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.mini-panel {
  min-height: 128px;
  padding: 18px;
}

.mini-panel strong {
  display: block;
  margin-top: 18px;
  font-size: 2.2rem;
}

.mini-panel.amber {
  background: rgba(213, 139, 39, 0.17);
}

.order-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.order-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
}

.order-list span {
  color: rgba(255, 255, 255, 0.64);
}

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

.workflow-step {
  min-height: 250px;
  padding: 26px;
  border-top: 3px solid var(--teal);
  background: #fff;
}

.workflow-step:nth-child(2) {
  border-color: var(--amber);
}

.workflow-step:nth-child(3) {
  border-color: var(--coral);
}

.workflow-step span {
  display: block;
  margin-bottom: 58px;
  color: var(--muted);
  font-weight: 900;
}

.workflow-step p {
  color: var(--muted);
}

.references {
  background: #fff;
}

.reference-grid,
.feature-cards,
.contact-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.reference-grid article,
.feature-cards article,
.contact-grid article,
.download-grid article,
.support-card,
.app-grid article {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

.reference-grid article {
  min-height: 170px;
  padding: 22px;
}

.reference-grid span,
.trust-strip span,
.download-badge {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reference-grid strong {
  display: block;
  margin-top: 42px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.trust-strip {
  display: grid;
  grid-template-columns: 0.7fr 0.8fr 1.5fr;
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  background: #0a0a0a;
}

.trust-strip div {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.55);
}

.trust-strip strong {
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.phone-showcase,
.retail-terminal {
  display: grid;
  min-height: 520px;
  place-items: center;
}

.phone-frame {
  width: min(330px, 100%);
  min-height: 610px;
  padding: 22px;
  border: 10px solid #101817;
  border-radius: 34px;
  background: #eef2ed;
  box-shadow: var(--shadow);
}

.phone-bar {
  width: 96px;
  height: 8px;
  margin: 0 auto 34px;
  border-radius: 999px;
  background: #18211f;
}

.app-card {
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.app-card.hot {
  background: #f8e3ae;
}

.app-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
}

.app-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.app-actions span {
  height: 58px;
  border-radius: 8px;
  background: var(--teal);
}

.retail-terminal {
  perspective: 1200px;
}

.terminal-screen {
  width: min(560px, 100%);
  min-height: 390px;
  padding: 28px;
  border: 12px solid #101817;
  border-radius: 18px;
  background: #eef2ed;
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: rotateY(-8deg) rotateX(5deg);
}

.terminal-screen span {
  color: var(--muted);
  font-weight: 800;
}

.terminal-screen strong {
  display: block;
  margin: 18px 0 34px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

.terminal-row {
  height: 24px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #cddbd4;
}

.terminal-row.short {
  width: 68%;
}

.terminal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 38px;
}

.terminal-grid span {
  height: 78px;
  border-radius: 8px;
  background: #fff;
}

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

.restaurant-proof,
.experience-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: end;
  background: #fff;
}

.restaurant-proof p:last-child,
.experience-band p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.mobile-suite {
  background: #f4f1ea;
}

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

.mobile-suite-grid article {
  min-height: 520px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 24, 23, 0.07);
}

.mobile-suite-grid h3 {
  margin-top: 26px;
  font-size: 1.65rem;
}

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

.mobile-suite-grid ul,
.comparison-grid ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mobile-suite-grid li,
.comparison-grid li {
  position: relative;
  padding-left: 20px;
  color: #2d3836;
  font-weight: 700;
}

.mobile-suite-grid li::before,
.comparison-grid li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-system {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 34px;
  align-items: start;
  background: #111;
  color: #fff;
}

.local-system p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
}

.local-system .eyebrow {
  color: #f1c66f;
}

.comparison-grid {
  display: grid;
  gap: 14px;
}

.comparison-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.comparison-grid article.good {
  background: rgba(15, 118, 110, 0.18);
}

.comparison-grid article.risk {
  background: rgba(201, 95, 74, 0.15);
}

.comparison-grid li {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.comparison-grid li::before {
  background: #f1c66f;
}

.feature-cards article {
  min-height: 280px;
  padding: 26px;
}

.feature-cards span {
  display: block;
  margin-bottom: 58px;
  color: var(--amber);
  font-weight: 900;
}

.feature-cards p,
.app-section p,
.contact-grid p,
.download-grid p,
.support-notes li {
  color: var(--muted);
}

.app-section,
.support-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: start;
  background: #eef2ed;
}

.app-grid {
  display: grid;
  gap: 12px;
}

.app-grid article {
  padding: 22px;
}

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

.app-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  gap: 24px;
  justify-items: start;
  background: #111;
  color: #fff;
}

.cta-band .eyebrow {
  color: #f1c66f;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 28px;
  align-items: center;
  min-height: 520px;
  border-bottom: 1px solid var(--line);
  background: #f7f7f7;
  color: #111;
}

.support-hero .btn {
  margin-top: 24px;
}

.legal-page {
  min-height: 100vh;
  background: #f7f7f7;
}

.legal-hero {
  padding: 132px max(24px, calc((100vw - 1080px) / 2)) 52px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 10px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-hero .legal-updated {
  margin-top: 18px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 54px;
  justify-content: center;
  padding: 48px 24px 72px;
}

.legal-nav {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 4px;
  border-left: 2px solid var(--line);
  padding-left: 18px;
}

.legal-nav strong {
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--teal-dark);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: 96px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 34px;
  margin-bottom: 34px;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: #3f4650;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-card {
  padding: 28px;
  color: var(--ink);
}

.support-card span,
.support-card strong {
  display: block;
}

.support-card strong {
  margin: 8px 0 22px;
  font-size: 2.2rem;
}

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

.contact-grid article,
.download-grid article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
}

.support-notes ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-notes li {
  padding: 18px 20px;
  border-left: 3px solid var(--teal);
  background: #fff;
}

.downloads-hero {
  min-height: 500px;
  align-content: end;
  border-bottom: 1px solid var(--line);
  background: #f7f7f7;
  color: #111;
}

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

.download-badge {
  justify-self: start;
  padding: 7px 10px;
  border: 1px solid #c9c9c9;
  border-radius: 999px;
  background: #fff;
  color: #111;
}

.product-gallery {
  background: #eef2ed;
}

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

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

.gallery-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 24, 23, 0.07);
}

.gallery-grid article.is-clickable {
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  background: #dfe7e2;
}

.gallery-grid-large img {
  aspect-ratio: 9 / 14;
  object-fit: contain;
}

.gallery-page-hero {
  border-bottom: 1px solid var(--line);
  background: #f7f7f7;
}

.gallery-page-hero .hero-product-shot img {
  width: min(280px, 100%);
}

.gallery-intro {
  border-bottom: 1px solid var(--line);
}

.gallery-grid strong,
.gallery-grid span {
  display: block;
  padding: 0 18px;
}

.gallery-grid strong {
  padding-top: 18px;
  font-size: 1.05rem;
}

.gallery-grid span {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 16px;
  padding: 34px;
  background: rgba(8, 13, 12, 0.92);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox figure {
  display: grid;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.image-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 124px);
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.image-lightbox figcaption {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 0.98rem;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  width: 64px;
  height: 92px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 4rem;
  line-height: 1;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.qr-downloads {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: start;
  background: #eef2ed;
}

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

.qr-grid article {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.qr-grid img {
  width: 150px;
  height: 150px;
  image-rendering: pixelated;
}

.payment-hero,
.status-hero {
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 78px;
  background:
    linear-gradient(135deg, rgba(23, 33, 31, 0.97), rgba(15, 118, 110, 0.88)),
    radial-gradient(circle at 78% 14%, rgba(241, 198, 111, 0.36), transparent 34%);
  color: #fff;
}

.payment-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: end;
  min-height: 680px;
}

.payment-hero.payment-compact {
  min-height: auto;
  grid-template-columns: minmax(320px, 620px);
  justify-content: center;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 44px;
}

.payment-hero h1,
.status-hero h1 {
  font-size: clamp(2.55rem, 6.5vw, 5rem);
}

.payment-card h1 {
  margin: 4px 0 18px;
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 0.95;
}

.payment-hero p:not(.eyebrow),
.status-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
}

.payment-card,
.receipt-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.payment-card label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.payment-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.payment-search input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.payment-message {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.payment-message[data-type="error"] {
  color: #ffd6cc;
}

.payment-system-disabled .payment-message {
  border: 1px solid rgba(255, 214, 204, 0.34);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(180, 35, 24, 0.16);
  color: #fff;
}

.payment-system-disabled .payment-card input,
.payment-system-disabled .payment-card button {
  cursor: not-allowed;
}

.payment-message[data-type="success"] {
  color: #dff5ee;
}

.payment-flow {
  display: grid;
  gap: 12px;
  padding-top: 34px;
  padding-bottom: 44px;
  background: #fff;
}

.payment-result-active .payment-flow {
  padding-top: 82px;
}

.customer-summary,
.payment-action,
.receipt-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(17, 24, 23, 0.07);
}

.customer-summary,
.payment-action {
  padding: 18px;
}

.customer-summary h2 {
  display: inline-block;
  max-width: calc(100% - 118px);
  margin: 0;
  vertical-align: middle;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

.customer-summary .eyebrow {
  margin-bottom: 6px;
}

.customer-summary .payment-secondary-action {
  float: right;
  margin-top: 2px;
}

.summary-grid,
.summary-list,
.receipt-grid {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

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

.summary-list {
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

.summary-grid div,
.receipt-grid div {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: #eef2ed;
}

.summary-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #eef2ed;
}

.summary-list div + div {
  border-top: 1px solid rgba(17, 24, 23, 0.08);
}

.summary-list dt,
.summary-grid span,
.receipt-grid span,
.payment-action span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

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

.plan-card {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-content: center;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.plan-card.is-selected,
.plan-card:has(input:checked) {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.plan-card.featured {
  border-color: rgba(213, 139, 39, 0.62);
  background: linear-gradient(145deg, #fffaf0, #f8e3ae);
  box-shadow: 0 12px 30px rgba(166, 103, 17, 0.14);
}

.plan-card .plan-card-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  border-radius: 0 8px 0 8px;
  padding: 5px 8px;
  background: #d58b27;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-card.is-selected,
.plan-card.featured.is-selected,
.plan-card:has(input:checked) {
  border-color: rgba(213, 139, 39, 0.5);
  background: #f8e3ae;
  box-shadow: 0 0 0 3px rgba(213, 139, 39, 0.16);
}

.plan-card input {
  grid-row: span 3;
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.plan-card span {
  color: var(--muted);
  font-weight: 800;
}

.plan-card strong {
  font-size: 1.22rem;
  line-height: 1.1;
}

.plan-card em {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.payment-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.payment-action strong {
  display: block;
  margin-top: 3px;
  font-size: 1.35rem;
}

.payment-secondary-action {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--teal-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.payment-note {
  padding-top: 72px;
  padding-bottom: 72px;
}

.status-hero {
  min-height: 520px;
  display: grid;
  align-content: end;
}

.receipt-section {
  background: #eef2ed;
}

.receipt-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: start;
  background: #111;
  color: #fff;
}

.pricing .eyebrow {
  color: #f1c66f;
}

.pricing-grid {
  display: grid;
  gap: 12px;
}

.price-card {
  padding: 24px;
  color: var(--ink);
}

.price-card.featured {
  border-color: rgba(241, 198, 111, 0.72);
  background: #f8e3ae;
}

.price-card h3 {
  margin-bottom: 8px;
}

.price-card p {
  color: var(--muted);
}

.price-card strong {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal-dark);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  background: #050505;
  color: #fff;
}

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

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.contact-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  font-family: inherit;
}

.contact-widget-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #111;
  border-radius: 4px;
  padding: 0 16px;
  background: #dcb75d;
  color: #090909;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  font-weight: 900;
}

.contact-widget-button span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 6px;
  background: rgba(17, 24, 23, 0.11);
}

.contact-widget-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(360px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.contact-widget-thanks {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: min(330px, calc(100vw - 32px));
  border: 1px solid #c8d7d0;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fffdf8;
  color: var(--teal-dark);
  box-shadow: 0 16px 36px rgba(50, 42, 32, 0.14);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.45;
}

.contact-widget-form {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.contact-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.contact-widget-head strong {
  font-size: 1.05rem;
}

.contact-widget-head button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.contact-widget-form label {
  display: grid;
  gap: 5px;
  color: #2f3d39;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-widget-form input,
.contact-widget-form textarea {
  width: 100%;
  border: 1px solid #d9e1dc;
  border-radius: 8px;
  padding: 10px 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  outline: none;
}

.contact-widget-form textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-widget-form input:focus,
.contact-widget-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.contact-widget-message {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-widget-message[data-kind="success"] {
  color: var(--teal-dark);
}

.contact-widget-message[data-kind="error"] {
  color: #b42318;
}

.contact-widget-message[data-kind="wait"] {
  color: var(--amber);
}

@media (max-width: 860px) {
  .site-header {
    top: 0;
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border-radius: 0;
    background: #050505;
    box-shadow: 0 18px 50px rgba(17, 24, 23, 0.2);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 96px;
  }

  .hero-bg {
    grid-column: 1;
    grid-row: 2;
    min-height: 260px;
    object-position: center;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-metrics,
  .solution-grid,
  .platform,
  .workflow-grid,
  .pricing,
  .intro-band,
  .page-hero,
  .app-section,
  .support-hero,
  .support-notes,
  .trust-strip,
  .restaurant-proof,
  .experience-band,
  .local-system {
    grid-template-columns: 1fr;
  }

  .reference-grid,
  .feature-cards,
  .contact-grid,
  .download-grid,
  .mobile-suite-grid,
  .gallery-grid,
  .qr-downloads,
  .payment-hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qr-downloads,
  .payment-hero {
    grid-template-columns: 1fr;
  }

  .summary-grid,
  .plans-grid,
  .receipt-grid {
    grid-template-columns: 1fr;
  }

  .platform,
  .pricing,
  .section,
  .page-hero,
  .support-hero,
  .downloads-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-hero,
  .support-hero,
  .downloads-hero,
  .payment-hero,
  .status-hero {
    padding-top: 126px;
  }

  .dashboard-preview {
    min-height: 430px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 24px;
  }

  .legal-nav strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .legal-hero {
    padding: 108px 18px 38px;
  }

  .legal-layout {
    padding: 34px 18px 52px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 820px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero,
  .support-hero,
  .downloads-hero {
    min-height: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-metrics {
    gap: 8px;
  }

  .hero-metrics div {
    min-height: 84px;
    padding: 14px;
  }

  .hero-metrics strong {
    font-size: 1.42rem;
  }

  .solution-card {
    min-height: auto;
    padding: 24px;
  }

  .solution-topline {
    margin-bottom: 38px;
  }

  .reference-grid,
  .feature-cards,
  .contact-grid,
  .download-grid,
  .mobile-suite-grid,
  .gallery-grid,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .payment-search,
  .payment-action {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .payment-action {
    display: grid;
  }

  .payment-flow {
    gap: 10px;
    padding: 12px;
  }

  .payment-result-active .payment-flow {
    padding-top: 74px;
  }

  .customer-summary,
  .payment-action {
    padding: 10px;
  }

  .customer-summary .eyebrow {
    display: block;
    font-size: 0.68rem;
  }

  .customer-summary h2 {
    max-width: calc(100% - 82px);
    font-size: 1.08rem;
    line-height: 1.05;
  }

  .customer-summary .payment-secondary-action {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

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

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

  .summary-list {
    gap: 0;
    margin-top: 8px;
  }

  .summary-list div {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding: 9px 10px;
  }

  .summary-list dt {
    font-size: 0.66rem;
  }

  .summary-list dd {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .summary-grid div {
    min-height: 48px;
    padding: 6px;
    gap: 2px;
  }

  .summary-grid span {
    font-size: 0.58rem;
  }

  .summary-grid strong {
    font-size: 0.72rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .plan-card {
    min-height: 84px;
    grid-template-columns: 1fr;
    gap: 4px;
    justify-items: center;
    padding: 9px 7px;
    text-align: center;
  }

  .plan-card input {
    grid-row: auto;
    width: 15px;
    height: 15px;
  }

  .plan-card span {
    font-size: 0.78rem;
  }

  .plan-card strong {
    font-size: 1rem;
  }

  .plan-card em {
    font-size: 0.67rem;
    line-height: 1.1;
  }

  .payment-action {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  .payment-action span {
    font-size: 0.62rem;
  }

  .payment-action strong {
    margin-top: 0;
    font-size: 0.98rem;
  }

  .payment-action .btn {
    min-height: 40px;
    width: auto;
    padding: 0 13px;
    white-space: nowrap;
  }

  .mobile-suite-grid article {
    min-height: auto;
  }

  .phone-showcase,
  .retail-terminal,
  .hero-product-shot {
    min-height: auto;
  }

  .hero-product-shot img {
    border-width: 8px;
    transform: none;
  }

  .phone-frame {
    min-height: 520px;
    border-radius: 28px;
  }

  .terminal-screen {
    min-height: 330px;
    transform: none;
  }

  .trust-strip div {
    min-height: 130px;
  }

  .dash-main {
    grid-template-columns: 1fr;
  }

  .sales-panel {
    min-height: 230px;
    grid-row: auto;
  }

  .order-list {
    grid-column: auto;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .contact-widget {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .contact-widget-button {
    width: 100%;
    justify-content: center;
  }

  .contact-widget-panel {
    right: 0;
    left: 0;
    width: auto;
  }

  .contact-widget-thanks {
    right: 0;
    left: 0;
    width: auto;
  }

  .image-lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 8px;
    padding: 18px;
  }

  .lightbox-nav {
    width: 50px;
    height: 74px;
    font-size: 3rem;
  }

  .image-lightbox img {
    max-height: calc(100vh - 132px);
  }
}

@media (max-width: 560px) {
  .payment-page {
    background: #eef3ef;
  }

  .payment-page .payment-hero.payment-compact {
    min-height: auto;
    padding: 92px 14px 22px;
    background: linear-gradient(145deg, rgba(23, 33, 31, 0.98), rgba(15, 118, 110, 0.9));
  }

  .payment-page .payment-card {
    padding: 18px;
    border-radius: 16px;
  }

  .payment-page .payment-card h1 {
    margin-bottom: 12px;
    font-size: 1.65rem;
  }

  .payment-page .payment-card label {
    margin-bottom: 7px;
  }

  .payment-page .payment-search {
    gap: 8px;
  }

  .payment-page .payment-search input,
  .payment-page .payment-search .btn {
    min-height: 44px;
    border-radius: 12px;
  }

  .payment-page .btn,
  .payment-page button {
    line-height: 1.1;
    white-space: nowrap;
  }

  .payment-page .payment-message {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .payment-page.payment-result-active .payment-flow {
    gap: 8px;
    padding: 72px 10px 14px;
    background: #eef3ef;
  }

  .payment-page .customer-summary,
  .payment-page .payment-action {
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(17, 24, 23, 0.07);
  }

  .payment-page .customer-summary {
    padding: 10px;
  }

  .payment-page .summary-list,
  .payment-page .summary-grid {
    margin-top: 8px;
  }

  .payment-page .summary-list div {
    padding: 10px;
  }

  .payment-page .summary-grid div {
    min-height: 44px;
    border-radius: 12px;
  }

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

  .payment-page .plan-card {
    min-height: 96px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 24, 23, 0.06);
  }

  .payment-page .plan-card strong {
    font-size: 1.05rem;
  }

  .payment-page .plan-card em {
    font-size: 0.68rem;
  }

  .payment-page .plan-card.featured {
    border-color: rgba(213, 139, 39, 0.62);
    background: linear-gradient(145deg, #fffaf0, #f8e3ae);
    box-shadow: 0 12px 30px rgba(166, 103, 17, 0.14);
  }

  .payment-page .plan-card .plan-card-badge {
    border-radius: 0 16px 0 10px;
    padding: 5px 7px;
    font-size: 0.58rem;
  }

  .payment-page .plan-card.is-selected,
  .payment-page .plan-card:has(input:checked) {
    border-color: rgba(213, 139, 39, 0.5);
    background: #f8e3ae;
    box-shadow: 0 0 0 3px rgba(213, 139, 39, 0.16), 0 10px 26px rgba(17, 24, 23, 0.06);
  }

  .payment-page .payment-action {
    padding: 9px 10px;
  }

  .payment-page .site-footer {
    display: block;
    padding: 14px;
    background: #0f1716;
  }

  .payment-page .site-footer div {
    gap: 2px;
  }

  .payment-page .site-footer strong {
    font-size: 0;
  }

  .payment-page .site-footer strong::before {
    content: "ComfortPOS Pay";
    font-size: 0.9rem;
  }

  .payment-page .site-footer span {
    font-size: 0;
  }

  .payment-page .site-footer span::before {
    content: "VOEN: 2002625462";
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .payment-page .footer-links {
    display: none !important;
  }
}
