:root {
  --font-main: "Quicksand", "Sofia Sans", Arial, sans-serif;
  --ink: #172326;
  --muted: #617174;
  --line: #eadcda;
  --soft: #fff7f6;
  --soft-blue: #eef6ff;
  --primary: #B81B1B;
  --primary-dark: #8F1515;
  --primary-soft: #fff0ee;
  --blue: #3a86ff;
  --yellow: #f6bd36;
  --coral: #ff7058;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(88, 31, 28, 0.14);
  --shadow-soft: 0 16px 38px rgba(88, 31, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--white);
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

p {
  color: var(--muted);
  line-height: 1.75;
}

.container {
  width: min(1080px, calc(100% - 72px));
  margin: 0 auto;
}

.section-pad {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1080px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(88, 31, 28, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, top 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(88, 31, 28, 0.12);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 78px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #314245;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.language-switch {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(88, 31, 28, 0.12);
  backdrop-filter: blur(16px);
}

.language-switch button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.language-switch button.is-active {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 600px) {
  .language-switch {
    top: 12px;
    right: 12px;
  }

  .language-switch button {
    min-width: 34px;
    height: 32px;
    font-size: 12px;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

.goepos-hero {
  --goepos-accent: #B81B1B;
  --goepos-accent-dark: #8F1515;
  --goepos-cream: #fbf4ea;
  --goepos-cream-2: #fffaf3;
  --goepos-ink: #1f2424;
  --goepos-muted: #66706d;
  --goepos-line: #eadfd2;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 146px 0 74px;
  background:
    radial-gradient(circle at 92% 8%, rgba(184, 27, 27, 0.08), transparent 28%),
    radial-gradient(circle at 8% 22%, rgba(255, 220, 168, 0.48), transparent 28%),
    linear-gradient(135deg, var(--goepos-cream-2) 0%, var(--goepos-cream) 72%, #f6eadb 100%);
}

.goepos-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 27, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 27, 27, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.goepos-hero__shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.goepos-hero__copy {
  max-width: 610px;
}

.goepos-hero__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--goepos-ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}

.goepos-hero__brand span {
  color: var(--goepos-accent);
}

.goepos-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(184, 27, 27, 0.16);
  border-radius: 999px;
  background: rgba(184, 27, 27, 0.08);
  color: var(--goepos-accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.goepos-hero h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--goepos-ink);
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.04;
  font-weight: 800;
}

.goepos-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.goepos-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(184, 27, 27, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--goepos-accent-dark);
  box-shadow: 0 10px 24px rgba(91, 57, 38, 0.06);
  font-size: 15px;
  font-weight: 800;
}

.goepos-hero__chips span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--goepos-accent);
}

.goepos-hero__lead {
  max-width: 570px;
  margin: 0 0 28px;
  color: var(--goepos-muted);
  font-size: 18px;
  line-height: 1.75;
}

.goepos-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  margin-bottom: 24px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--goepos-accent);
  color: #fff;
  box-shadow: 0 18px 34px rgba(184, 27, 27, 0.22);
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.goepos-hero__cta:hover {
  transform: translateY(-2px);
  background: var(--goepos-accent-dark);
  box-shadow: 0 22px 42px rgba(184, 27, 27, 0.26);
}

.goepos-hero__support {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: min(360px, 100%);
  padding: 14px;
  border: 1px solid rgba(184, 27, 27, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(92, 57, 38, 0.08);
  backdrop-filter: blur(12px);
}

.goepos-hero__support > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(184, 27, 27, 0.1);
  color: var(--goepos-accent);
  font-size: 21px;
}

.goepos-hero__support strong {
  display: block;
  margin-bottom: 3px;
  color: var(--goepos-ink);
  font-size: 15px;
}

.goepos-hero__support p {
  margin: 0;
  color: var(--goepos-muted);
  font-size: 13px;
  line-height: 1.45;
}

.goepos-hero__visual {
  position: relative;
  min-height: 560px;
}

.goepos-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 27, 27, 0.12);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 34px 80px rgba(91, 57, 38, 0.16);
}

.goepos-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 0%, rgba(184, 27, 27, 0.08), transparent 26%);
  pointer-events: none;
}

.goepos-dashboard__topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--goepos-line);
}

.goepos-dashboard__topbar span,
.goepos-dashboard__topbar small {
  display: block;
  color: var(--goepos-muted);
  font-size: 12px;
  font-weight: 700;
}

.goepos-dashboard__topbar strong {
  color: var(--goepos-ink);
  font-size: 18px;
}

.goepos-dashboard__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 139, 83, 0.1);
  color: #24714d;
  font-size: 12px;
  font-weight: 800;
}

.goepos-dashboard__status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2aaa69;
}

.goepos-dashboard__grid {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr 190px;
  gap: 16px;
  padding: 18px;
}

.goepos-dashboard__sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
}

.goepos-dashboard__sidebar span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--goepos-muted);
  font-size: 12px;
  font-weight: 800;
}

.goepos-dashboard__sidebar span.active {
  background: rgba(184, 27, 27, 0.1);
  color: var(--goepos-accent);
}

.goepos-dashboard__main {
  display: grid;
  gap: 14px;
}

.goepos-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.goepos-stat-row article,
.goepos-menu-grid article,
.goepos-checkout {
  border: 1px solid var(--goepos-line);
  border-radius: 18px;
  background: #fff;
}

.goepos-stat-row article {
  padding: 14px;
}

.goepos-stat-row small,
.goepos-menu-grid small,
.goepos-checkout__item span,
.goepos-checkout__total span {
  color: var(--goepos-muted);
  font-size: 11px;
  font-weight: 700;
}

.goepos-stat-row strong {
  display: block;
  margin-top: 7px;
  color: var(--goepos-ink);
  font-size: 18px;
}

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

.goepos-menu-grid article {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.goepos-menu-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(184, 27, 27, 0.09);
  color: var(--goepos-accent);
  font-size: 18px;
}

.goepos-menu-grid strong {
  color: var(--goepos-ink);
  font-size: 13px;
}

.goepos-table-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.goepos-table-row span {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  background: #f8efe5;
  color: var(--goepos-muted);
  font-size: 11px;
  font-weight: 700;
}

.goepos-table-row strong {
  color: var(--goepos-ink);
  font-size: 13px;
}

.goepos-checkout {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(91, 57, 38, 0.08);
}

.goepos-checkout__head,
.goepos-checkout__item,
.goepos-checkout__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.goepos-checkout__head strong {
  color: var(--goepos-ink);
  font-size: 16px;
}

.goepos-checkout__head span {
  color: var(--goepos-accent);
  font-size: 12px;
  font-weight: 800;
}

.goepos-checkout__item strong {
  color: var(--goepos-ink);
  font-size: 12px;
}

.goepos-checkout__total {
  padding-top: 12px;
  border-top: 1px solid var(--goepos-line);
}

.goepos-checkout__total strong {
  color: var(--goepos-accent);
  font-size: 18px;
}

.goepos-checkout button {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--goepos-accent);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.goepos-floating-card {
  position: absolute;
  left: -22px;
  bottom: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  width: 230px;
  padding: 14px;
  border: 1px solid rgba(184, 27, 27, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 50px rgba(91, 57, 38, 0.16);
}

.goepos-floating-card > span,
.goepos-floating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--goepos-accent);
  background: rgba(184, 27, 27, 0.1);
}

.goepos-floating-card > span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.goepos-floating-card strong {
  color: var(--goepos-ink);
  font-size: 14px;
}

.goepos-floating-card p {
  margin: 2px 0 0;
  color: var(--goepos-muted);
  font-size: 12px;
  line-height: 1.4;
}

.goepos-floating-icon {
  position: absolute;
  top: 42px;
  right: -12px;
  width: 82px;
  height: 82px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(91, 57, 38, 0.12);
}

.goepos-floating-icon svg {
  width: 48px;
  height: 48px;
}

.goepos-hero {
  --goepos-primary: #B81B1B;
  --goepos-primary-dark: #8F1515;
  --goepos-text: #202020;
  --goepos-soft: #f9ece4;
  --goepos-cream: #fffaf5;
  --goepos-container: 1480px;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--goepos-text);
  background:
    radial-gradient(circle at 74% 45%, rgba(184, 27, 27, 0.10), transparent 34%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(90deg, #fffaf5 0%, #fff7ef 45%, #f6e6d9 100%);
}

.goepos-hero::before {
  content: none;
}

.goepos-hero-container {
  position: relative;
  z-index: 2;
  width: min(var(--goepos-container), 100%);
  margin: 0 auto;
  padding: 132px 78px 58px;
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  align-items: center;
  gap: 20px;
}

.goepos-hero-left {
  max-width: 610px;
  padding-left: 14px;
}

.goepos-hero-brand {
  margin-bottom: 8px;
  color: var(--goepos-text);
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 850;
  letter-spacing: 0;
}

.goepos-hero-brand .goe {
  color: var(--goepos-primary);
}

.goepos-hero-brand .pos {
  color: #191919;
  margin-left: 6px;
}

.goepos-hero-headline {
  margin: 0 0 28px;
  color: var(--goepos-text);
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 830;
}

.goepos-hero-headline .dot {
  color: var(--goepos-primary);
}

.goepos-hero-line {
  width: 68px;
  height: 7px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: var(--goepos-primary);
}

.goepos-hero-title {
  margin: 0 0 20px;
  color: var(--goepos-text);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 820;
}

.goepos-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.goepos-hero-feature {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 8px 6px 8px 0;
}

.goepos-hero-icon,
.goepos-hero-support-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--goepos-soft);
  color: var(--goepos-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goepos-hero-icon svg,
.goepos-hero-support-icon svg {
  width: 39px;
  height: 39px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.goepos-hero-feature-text h3 {
  margin: 0 0 6px;
  color: var(--goepos-text);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 820;
}

.goepos-hero-feature-text p {
  margin: 0;
  color: #2d2d2d;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.42;
}

.goepos-hero-business {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 6px 10px 0;
  margin-bottom: 24px;
}

.goepos-hero-business-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--goepos-soft);
  color: var(--goepos-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goepos-hero-business-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.goepos-hero-business-text {
  color: #202020;
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.32;
  letter-spacing: 0;
}

.goepos-hero-business-text strong {
  color: var(--goepos-primary);
  font-weight: 830;
}

.goepos-hero-cta {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 390px;
  padding: 14px 14px 14px 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #B81B1B 0%, var(--goepos-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(184, 27, 27, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  margin-bottom: 24px;
}

.goepos-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(184, 27, 27, 0.30);
}

.goepos-hero-cta .label {
  color: #fff;
  font-size: clamp(20px, 1.8vw, 23px);
  font-weight: 820;
  letter-spacing: 0;
  white-space: nowrap;
}

.goepos-hero-cta .arrow-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--goepos-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goepos-hero-cta .arrow-circle svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.goepos-hero-support {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 18px;
}

.goepos-hero-support-text h4 {
  margin: 0 0 6px;
  color: var(--goepos-text);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 820;
  letter-spacing: 0;
}

.goepos-hero-support-text p {
  margin: 0;
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.42;
}

.goepos-hero-right {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.goepos-devices-stage {
  position: relative;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.goepos-hero-devices-img {
  width: min(990px, 108%);
  max-width: 990px;
  object-fit: contain;
  opacity: 1;
  transform: translateX(56px);
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.22));
  transition: transform 0.25s ease;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 54px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.1) 62%),
    radial-gradient(circle at 78% 12%, rgba(255, 235, 194, 0.88) 0 2%, transparent 4%),
    radial-gradient(circle at 90% 8%, rgba(255, 235, 194, 0.9) 0 1.6%, transparent 3.4%),
    radial-gradient(circle at 64% 20%, rgba(255, 235, 194, 0.86) 0 1.6%, transparent 3.2%),
    linear-gradient(135deg, #f8efe8 0%, #ead1bc 42%, #8f5b36 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(61, 36, 19, 0.08) 88px 90px),
    linear-gradient(180deg, transparent 0 58%, rgba(133, 75, 34, 0.42) 58% 100%);
  filter: blur(10px);
  opacity: 0.7;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 31%;
  background: linear-gradient(180deg, rgba(175, 104, 52, 0.12), rgba(162, 88, 39, 0.64));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.hero-showcase {
  width: min(1380px, calc(100% - 92px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero-brand {
  margin-bottom: 2px;
  color: #20282b;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1;
  font-weight: 800;
}

.hero-brand span,
.hero-market strong {
  color: var(--primary);
}

.hero-title {
  margin-bottom: 26px;
  color: #20282b;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}

.hero-rule {
  display: block;
  width: 74px;
  height: 7px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: var(--primary);
}

.hero h2 {
  margin-bottom: 28px;
  color: #20282b;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.14;
  font-weight: 800;
}

.hero-lead {
  max-width: 560px;
  margin: -12px 0 26px;
  color: #344042;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 600;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  margin-bottom: 28px;
}

.hero-benefits article,
.hero-market,
.hero-support {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.hero-benefits article:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid rgba(184, 27, 27, 0.14);
}

.hero-benefits span,
.hero-market span,
.hero-support span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 28px;
  background: rgba(184, 27, 27, 0.09);
  color: var(--primary);
  font-size: 34px;
}

.hero-benefits h3 {
  margin-bottom: 6px;
  color: #20282b;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
}

.hero-benefits p,
.hero-market p,
.hero-support p {
  margin: 0;
  color: #20282b;
  font-size: 17px;
  line-height: 1.35;
}

.hero-market {
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 27, 27, 0.12);
}

.hero-market p {
  max-width: 420px;
  font-size: 23px;
  font-weight: 700;
}

.hero-market strong {
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(184, 27, 27, 0.22);
}

.hero-actions .btn-primary {
  min-width: 360px;
  min-height: 72px;
  justify-content: space-between;
  padding: 0 22px 0 32px;
  background: linear-gradient(135deg, var(--primary), #8F1515);
  font-size: 24px;
}

.hero-actions .btn-primary i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
}

.hero-visual {
  min-height: 700px;
}

.hero-device-stage {
  position: relative;
  min-height: 700px;
}

.pos-terminal {
  position: absolute;
  z-index: 3;
  top: 52px;
  right: 28px;
  width: min(660px, 82%);
}

.terminal-screen {
  overflow: hidden;
  aspect-ratio: 16 / 9.8;
  padding: 18px;
  border: 22px solid #151a1b;
  border-bottom-width: 28px;
  border-radius: 24px;
  background: #f9fbfa;
  box-shadow: 0 32px 68px rgba(21, 26, 27, 0.34);
  transform: perspective(900px) rotateY(-4deg) rotateZ(-1.5deg);
}

.terminal-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}

.terminal-neck {
  width: 110px;
  height: 116px;
  margin: -10px auto 0;
  background: linear-gradient(90deg, #111516, #313738 42%, #0d1011);
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.24);
}

.terminal-base {
  width: 420px;
  height: 138px;
  margin: -4px auto 0;
  border-radius: 12px 12px 26px 26px;
  background: linear-gradient(145deg, #0e1112, #272b2c 50%, #090b0c);
  box-shadow: 0 32px 48px rgba(0, 0, 0, 0.32);
}

.receipt-printer {
  position: absolute;
  z-index: 4;
  left: 18px;
  bottom: 104px;
  width: 260px;
  height: 152px;
  border-radius: 24px 24px 16px 16px;
  background: linear-gradient(145deg, #121617, #2b3031);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
}

.receipt-printer::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 22px;
  height: 14px;
  border-radius: 999px;
  background: #0a0d0d;
}

.receipt-paper {
  position: absolute;
  left: 64px;
  bottom: 102px;
  display: grid;
  gap: 5px;
  width: 120px;
  min-height: 112px;
  padding: 12px;
  border-radius: 10px 10px 4px 4px;
  background: #fff;
  color: #252b2d;
  font-size: 9px;
  transform: rotate(5deg);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.16);
}

.receipt-paper strong {
  color: var(--primary);
}

.mobile-stand {
  position: absolute;
  z-index: 5;
  right: 6px;
  bottom: 66px;
  width: 156px;
  padding: 9px;
  border-radius: 28px;
  background: #111516;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.32);
}

.mobile-stand::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: -18px;
  height: 24px;
  border-radius: 8px;
  background: #171b1c;
}

.mobile-screen {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  background: #fff;
}

.mobile-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-support span {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  font-size: 28px;
}

.hero-support strong {
  display: block;
  color: #20282b;
  font-size: 19px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 12px solid #1f2c2d;
  border-radius: 38px;
  background: #1f2c2d;
  box-shadow: 0 24px 52px rgba(18, 39, 38, 0.22);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.phone-front {
  z-index: 3;
  top: 68px;
  left: 50%;
  width: 270px;
  height: 520px;
  transform: translateX(-50%) rotate(2deg);
}

.phone-back {
  z-index: 2;
  top: 112px;
  left: 42px;
  width: 220px;
  height: 430px;
  transform: rotate(-8deg);
  opacity: 0.92;
}

.dashboard-card {
  position: absolute;
  z-index: 4;
  width: 220px;
  padding: 18px;
  border: 1px solid rgba(221, 233, 230, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.dashboard-card span,
.dashboard-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-card strong {
  display: block;
  margin: 6px 0;
  color: var(--ink);
  font-size: 22px;
}

.sales-card {
  right: 10px;
  top: 126px;
}

.status-card {
  left: 18px;
  bottom: 84px;
}

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

.section-heading h2,
.split-copy h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

.section-heading p {
  font-size: 18px;
}

.business-section,
.workflow-section,
.pricing-section {
  background: var(--white);
}

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

.business-card,
.feature-card,
.workflow-step,
.pillar-card,
.pricing-card,
details {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(88, 31, 28, 0.06);
}

.business-card {
  min-height: 250px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-card:hover,
.feature-card:hover,
.workflow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 22px;
}

.card-icon.blue {
  background: #e7f1ff;
  color: var(--blue);
}

.card-icon.yellow {
  background: #fff4d9;
  color: #b47700;
}

.card-icon.coral {
  background: #fff0ec;
  color: var(--coral);
}

.card-icon.green {
  background: #e7faeb;
  color: #18934b;
}

.business-card h3,
.feature-card h3,
.workflow-step h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

.business-card p,
.feature-card p,
.workflow-step p {
  margin-bottom: 0;
  font-size: 15px;
}

.pillars-section,
.features-section,
.showcase-section,
.reports-section {
  background: linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

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

.pillar-card {
  min-height: 300px;
  padding: 34px;
}

.pillar-top {
  margin-bottom: 26px;
}

.pillar-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 24px;
}

.pillar-card h2 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

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

.workflow-step {
  position: relative;
  min-height: 260px;
  padding: 26px;
}

.workflow-step span {
  display: inline-flex;
  margin-bottom: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
}

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

.feature-card {
  min-height: 240px;
  padding: 28px;
}

.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 24px;
}

.spotlight-section {
  padding-top: 110px;
  overflow: hidden;
  background: #ffffff;
}

.post-hero-description {
  padding: 82px 0 0;
  background: #ffffff;
}

.post-hero-description .spotlight-description {
  margin: 34px auto 0;
}

.section-transition-marker {
  width: min(108px, 28vw);
  height: 4px;
  margin: 46px auto 0;
  border-radius: 999px;
  background: var(--primary);
}

.chrome-style-showcase {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.spotlight-heading {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 56px;
  text-align: center;
}

.spotlight-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.3vw, 61px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
}

.spotlight-hero-image {
  width: min(1056px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: #f5f1ed;
  box-shadow: 0 30px 80px rgba(54, 27, 22, 0.16);
}

.spotlight-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: center;
}

.spotlight-description {
  width: min(820px, calc(100% - 48px));
  margin: 38px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
  font-weight: 600;
}

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

.spotlight-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(184, 27, 27, 0.16);
  border-radius: 28px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.spotlight-card.is-active {
  cursor: pointer;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.spotlight-card::before {
  inset: 0;
  opacity: 0.96;
}

.spotlight-card:hover,
.spotlight-card:focus-visible,
.spotlight-card.is-active {
  transform: translateY(-5px);
  border-color: rgba(184, 27, 27, 0.24);
  box-shadow: var(--shadow);
  outline: 0;
}

.spotlight-card.is-active .spotlight-action {
  background: var(--primary);
}

.spotlight-card-pay::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 27, 27, 0.16), transparent 30%),
    radial-gradient(circle at 16% 18%, rgba(246, 189, 54, 0.22), transparent 28%),
    linear-gradient(135deg, #fff8f7 0%, #fff2ee 48%, #fbf4ea 100%);
}

.spotlight-card-lens::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(127, 31, 26, 0.14), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(255, 112, 88, 0.16), transparent 28%),
    linear-gradient(135deg, #fffaf3 0%, #fff0ee 52%, #ffffff 100%);
}

.spotlight-card-offline::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 246, 244, 0.96) 68%),
    url("../img/goepos-offline-online-showcase.webp") center 18% / cover no-repeat;
}

.spotlight-card-copy,
.spotlight-card-detail,
.spotlight-action,
.spotlight-close {
  z-index: 1;
}

.spotlight-card-copy {
  position: relative;
  grid-area: 1 / 1;
  align-self: start;
  justify-self: center;
  max-width: 460px;
  margin-top: 172px;
  opacity: 1;
  text-align: center;
  transform: translateY(0);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.spotlight-card.is-active .spotlight-card-copy,
.spotlight-card.is-active .spotlight-action {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
}

.spotlight-card-image {
  width: min(100%, 500px);
  height: auto;
  margin-bottom: 18px;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(45, 54, 64, 0.18);
}

.spotlight-card-image-portrait {
  display: block;
  width: min(100%, 340px);
  max-height: 250px;
  margin-right: auto;
  margin-left: auto;
  object-fit: cover;
  object-position: center top;
}

.spotlight-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.spotlight-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.spotlight-card p {
  max-width: 360px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  font-size: 16px;
}

.spotlight-card-detail {
  position: relative;
  grid-area: 1 / 1;
  align-self: start;
  width: 100%;
  padding-right: 56px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.spotlight-card.is-active .spotlight-card-detail {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.spotlight-card-detail h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
}

.spotlight-card-detail p {
  max-width: 620px;
  margin-bottom: 0;
}

.spotlight-card-detail ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spotlight-card-detail li {
  position: relative;
  padding-left: 28px;
  color: #314245;
  font-weight: 700;
}

.spotlight-card-detail li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
}

.spotlight-action {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.24s ease, transform 0.24s ease, background 0.2s ease;
}

.spotlight-close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.82) rotate(-16deg);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.2s ease;
}

.spotlight-card.is-active .spotlight-close {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) rotate(0);
}

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

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

.showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(88, 31, 28, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  background: #f5f8f8;
}

.showcase-card div {
  padding: 22px;
}

.showcase-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

.showcase-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.split-section {
  background:
    radial-gradient(circle at 16% 38%, rgba(184, 27, 27, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff8f7 100%);
}

.split-grid,
.reports-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
  align-items: center;
}

.split-copy p {
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #344649;
  line-height: 1.6;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: inset 0 0 0 5px #ffe0dc;
}

.sync-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 34px;
  border-radius: 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sync-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fbfefd;
}

.sync-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.sync-card strong {
  font-size: 30px;
}

.sync-card.active {
  background: #351614;
  color: var(--white);
}

.sync-card.active span {
  color: #ffd2cc;
}

.sync-card.cloud {
  background: var(--primary-soft);
}

.sync-line {
  width: 2px;
  height: 34px;
  margin-left: 30px;
  background: var(--line);
}

.report-preview {
  display: flex;
  justify-content: center;
}

.report-window {
  position: relative;
  width: min(360px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d9e4e2;
}

.report-window img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
  background: #f5f8f8;
}

.report-stat {
  position: absolute;
  right: -24px;
  bottom: 28px;
  max-width: 210px;
  padding: 18px;
  border-radius: 24px;
  background: #351614;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.report-stat small {
  display: block;
  margin-bottom: 6px;
  color: #ffd2cc;
}

.report-stat strong {
  font-size: 18px;
}

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

.mini-grid span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  font-weight: 800;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 27, 27, 0.12), transparent 30%),
    var(--white);
}

.price-label {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-weight: 800;
}

.pricing-card h3 {
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 800;
}

.pricing-card p {
  margin-bottom: 0;
}

.site-footer {
  padding: 72px 0;
  background: #fff8f7;
  border-top: 1px solid rgba(184, 27, 27, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(220px, 0.9fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #000000;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: #000000;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}

.footer-links a:hover {
  color: #000000;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 27, 27, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: #000000;
  color: #ffffff;
}

.footer-download {
  justify-self: end;
}

.footer-play-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px;
  border-radius: 12px;
  background: #171f22;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(23, 31, 34, 0.14);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-play-badge:hover {
  transform: translateY(-2px);
  background: #000000;
}

.footer-play-badge i {
  font-size: 25px;
}

.footer-play-badge span {
  display: grid;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 800;
}

.footer-play-badge small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.footer-copyright {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom a {
  color: #000000;
  text-decoration: none;
  text-underline-offset: 4px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

  .reveal,
  .btn,
  .business-card,
  .feature-card,
  .spotlight-card,
  .spotlight-card-copy,
  .spotlight-card-detail,
  .spotlight-action,
  .spotlight-close,
  .workflow-step {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .goepos-hero {
    min-height: auto;
    align-items: flex-start;
    background:
      radial-gradient(circle at 72% 74%, rgba(184, 27, 27, 0.10), transparent 36%),
      linear-gradient(180deg, #fffaf5 0%, #fff7ef 58%, #f6e6d9 100%);
  }

  .goepos-hero-container {
    grid-template-columns: 1fr;
    padding: 124px 42px 56px;
    gap: 28px;
  }

  .goepos-hero-left {
    max-width: 100%;
    padding-left: 0;
  }

  .goepos-hero-right,
  .goepos-devices-stage {
    min-height: auto;
  }

  .goepos-hero-devices-img {
    width: min(820px, 100%);
    margin-left: auto;
    margin-right: auto;
    transform: translateX(0);
  }

  .goepos-hero {
    padding: 132px 0 70px;
  }

  .goepos-hero__shell {
    width: min(100% - 56px, 860px);
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .goepos-hero__copy {
    max-width: 760px;
  }

  .goepos-hero__visual {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .reports-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: min(100% - 60px, 860px);
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-device-stage {
    min-height: 620px;
  }

  .pos-terminal {
    right: 50%;
    width: min(660px, 92%);
    transform: translateX(50%);
  }

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

  .workflow,
  .feature-grid,
  .spotlight-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .goepos-hero-container {
    padding: 116px 24px 44px;
  }

  .goepos-hero-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .goepos-hero-feature,
  .goepos-hero-business,
  .goepos-hero-support {
    grid-template-columns: 78px 1fr;
  }

  .goepos-hero-cta {
    width: 100%;
    min-width: 0;
  }

  .goepos-hero {
    padding-top: 124px;
  }

  .goepos-hero__shell {
    width: min(100% - 32px, 680px);
    gap: 38px;
  }

  .goepos-hero h1 {
    font-size: clamp(36px, 9vw, 52px);
  }

  .goepos-hero__lead {
    font-size: 16px;
  }

  .goepos-hero__cta {
    width: 100%;
  }

  .goepos-dashboard__grid {
    grid-template-columns: 1fr;
  }

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

  .goepos-dashboard__sidebar span {
    justify-content: center;
    padding: 0 8px;
  }

  .goepos-stat-row,
  .goepos-menu-grid,
  .goepos-table-row {
    grid-template-columns: 1fr;
  }

  .goepos-floating-card,
  .goepos-floating-icon {
    display: none;
  }

  .section-pad {
    padding: 78px 0;
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .brand img {
    width: 72px;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    order: 4;
    display: none;
    width: 100%;
    align-items: stretch;
    padding-top: 10px;
    flex-direction: column;
  }

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

  .site-nav a {
    width: 100%;
    padding: 13px 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-brand {
    font-size: clamp(42px, 12vw, 62px);
  }

  .hero-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero h2 {
    font-size: 28px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-benefits article:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }

  .hero-benefits h3 {
    font-size: 21px;
  }

  .hero-market p {
    font-size: 20px;
  }

  .hero-benefits p,
  .hero-market p,
  .hero-support p,
  .section-heading p,
  .split-copy p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn-primary {
    min-width: 0;
    min-height: 64px;
    font-size: 20px;
  }

  .business-grid,
  .pillars-grid,
  .workflow,
  .feature-grid,
  .spotlight-grid,
  .showcase-grid,
  .mini-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .business-card,
  .feature-card,
  .spotlight-card,
  .workflow-step,
  .pillar-card {
    min-height: auto;
  }

  .spotlight-card {
    min-height: 330px;
  }

  .workflow-step span {
    margin-bottom: 28px;
  }

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

  .footer-download {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 54px 0;
  }

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

  .footer-column h2 {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .footer-links {
    gap: 8px;
    font-size: 17px;
  }

  .footer-social {
    margin-top: 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
    padding-top: 20px;
  }

  .spotlight-heading {
    width: min(100% - 28px, 520px);
    margin-bottom: 30px;
  }

  .spotlight-heading h2 {
    font-size: 27px;
    line-height: 1.12;
  }

  .spotlight-hero-image {
    width: min(100% - 28px, 520px);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(54, 27, 22, 0.14);
  }

  .spotlight-hero-image img {
    aspect-ratio: 4 / 3;
  }

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

  .goepos-hero-feature,
  .goepos-hero-business,
  .goepos-hero-support {
    grid-template-columns: 70px 1fr;
    gap: 14px;
  }

  .spotlight-card {
    min-height: 300px;
    padding: 26px;
  }

  .spotlight-card-copy {
    margin-top: 88px;
  }

  .spotlight-card h3 {
    font-size: 30px;
  }

  .spotlight-card-detail {
    padding-right: 0;
  }

  .spotlight-card-detail h3 {
    font-size: 30px;
  }

  .goepos-hero-icon,
  .goepos-hero-support-icon {
    width: 62px;
    height: 62px;
  }

  .goepos-hero-business-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }

  .goepos-hero-icon svg,
  .goepos-hero-support-icon svg,
  .goepos-hero-business-icon svg {
    width: 34px;
    height: 34px;
  }

  .goepos-hero-cta {
    padding-left: 24px;
  }

  .goepos-hero-cta .label {
    font-size: 18px;
  }

  .goepos-hero-cta .arrow-circle {
    width: 44px;
    height: 44px;
  }

  .goepos-hero__shell {
    width: min(100% - 28px, 1160px);
  }

  .goepos-hero h1 {
    font-size: 34px;
  }

  .goepos-hero__chips {
    gap: 9px;
  }

  .goepos-hero__chips span {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .goepos-hero__support {
    width: 100%;
  }

  .goepos-dashboard {
    border-radius: 22px;
  }

  .goepos-dashboard__topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }

  .goepos-dashboard__grid {
    padding: 12px;
  }

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

  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero-showcase {
    width: min(100% - 28px, 1160px);
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-device-stage {
    min-height: 430px;
  }

  .hero-benefits span,
  .hero-market span {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    font-size: 26px;
  }

  .hero-support span {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 24px;
  }

  .pos-terminal {
    top: 34px;
    width: 96%;
  }

  .terminal-screen {
    padding: 9px;
    border-width: 12px;
    border-bottom-width: 18px;
    border-radius: 16px;
  }

  .terminal-neck {
    width: 72px;
    height: 76px;
  }

  .terminal-base {
    width: 250px;
    height: 82px;
    border-radius: 10px 10px 18px 18px;
  }

  .receipt-printer {
    left: 4px;
    bottom: 72px;
    width: 154px;
    height: 96px;
    border-radius: 18px 18px 12px 12px;
  }

  .receipt-paper {
    left: 38px;
    bottom: 66px;
    width: 78px;
    min-height: 76px;
    padding: 8px;
    font-size: 7px;
  }

  .mobile-stand {
    right: 0;
    bottom: 48px;
    width: 102px;
    padding: 6px;
    border-radius: 20px;
  }

  .mobile-screen {
    border-radius: 15px;
  }

  .section-heading h2,
  .split-copy h2 {
    font-size: 34px;
  }

  .sync-visual,
  .pricing-card {
    padding: 20px;
    border-radius: 28px;
  }

  .report-stat {
    position: static;
    max-width: none;
    margin-top: 14px;
  }
}

.goepos-hero {
  padding: 0;
}

@media (max-width: 1080px) {
  .goepos-hero {
    padding: 0;
  }
}

@media (max-width: 820px) {
  .goepos-hero {
    padding: 0;
  }
}

/* Final hero tuning: compact first viewport and transparent top navigation. */
.site-header {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    top 0.25s ease,
    background 0.25s ease;
}

.site-header.is-hidden-on-hero {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -18px);
}

.site-header.is-scrolled,
body.nav-open .site-header {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(88, 31, 28, 0.12);
  backdrop-filter: blur(18px);
}

body.nav-open .site-header {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
}

.goepos-hero-container {
  padding: 104px 78px 34px;
  grid-template-columns: 0.88fr 1.22fr;
}

.goepos-hero-left {
  max-width: 570px;
}

.goepos-hero-brand {
  margin-bottom: 4px;
  font-size: clamp(38px, 4.3vw, 58px);
}

.goepos-hero-headline {
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 42px);
}

.goepos-hero-line {
  width: 60px;
  height: 6px;
  margin-bottom: 22px;
}

.goepos-hero-title {
  margin-bottom: 14px;
  font-size: clamp(22px, 1.9vw, 28px);
}

.goepos-hero-features {
  gap: 10px 14px;
  margin-bottom: 14px;
}

.goepos-hero-feature {
  grid-template-columns: 66px 1fr;
  gap: 12px;
  min-height: 82px;
  padding: 4px 4px 4px 0;
}

.goepos-hero-icon,
.goepos-hero-support-icon {
  width: 58px;
  height: 58px;
}

.goepos-hero-icon svg,
.goepos-hero-support-icon svg {
  width: 31px;
  height: 31px;
}

.goepos-hero-feature-text h3 {
  margin-bottom: 4px;
  font-size: clamp(16px, 1.35vw, 19px);
}

.goepos-hero-feature-text p {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.32;
}

.goepos-hero-business {
  grid-template-columns: 66px 1fr;
  gap: 12px;
  margin-bottom: 14px;
  padding: 4px 4px 4px 0;
}

.goepos-hero-business-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.goepos-hero-business-icon svg {
  width: 31px;
  height: 31px;
}

.goepos-hero-business-text {
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.25;
}

.goepos-hero-cta {
  min-width: 330px;
  margin-bottom: 14px;
  padding: 10px 10px 10px 26px;
}

.goepos-hero-cta .label {
  font-size: clamp(17px, 1.45vw, 20px);
}

.goepos-hero-cta .arrow-circle {
  width: 42px;
  height: 42px;
}

.goepos-hero-support {
  grid-template-columns: 66px 1fr;
  gap: 12px;
}

.goepos-hero-support-text h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

.goepos-hero-support-text p {
  font-size: 14px;
  line-height: 1.32;
}

.goepos-hero-right,
.goepos-devices-stage {
  min-height: 650px;
}

.goepos-hero-devices-img {
  width: min(960px, 110%);
  transform: translate(56px, -44px);
}

@media (max-width: 1280px) {
  .goepos-hero-container {
    padding-left: 56px;
    padding-right: 56px;
  }

  .goepos-hero-devices-img {
    transform: translate(42px, -36px);
  }
}

@media (max-width: 1080px) {
  .site-header {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 36px rgba(88, 31, 28, 0.08);
    backdrop-filter: blur(18px);
  }

  .goepos-hero-container {
    padding: 116px 42px 40px;
  }

  .goepos-hero-devices-img {
    transform: translate(0, -22px);
  }
}

@media (max-width: 820px) {
  .goepos-hero-container {
    padding: 116px 24px 38px;
  }

  .goepos-hero-feature,
  .goepos-hero-business,
  .goepos-hero-support {
    grid-template-columns: 62px 1fr;
  }

  .goepos-hero-cta {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .goepos-hero-brand {
    font-size: 38px;
  }

  .goepos-hero-headline {
    font-size: 28px;
  }

  .goepos-hero-container {
    padding-top: 108px;
  }
}

/* Hero refinements requested after visual review. */
.goepos-hero-container {
  width: min(1480px, calc(100% - 96px));
  margin: 0 auto;
  padding: 20px 0 0;
  grid-template-columns: minmax(430px, 0.78fr) minmax(0, 1.22fr);
  gap: 10px;
}

.goepos-hero-left,
.goepos-hero-left.reveal.is-visible {
  max-width: 520px;
  transform: translateY(-30px);
}

.goepos-hero-brand {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.34vw, 46px);
}

.goepos-hero .goepos-hero-headline {
  margin-bottom: 14px;
  font-size: clamp(23px, 2.09vw, 31px);
  white-space: nowrap;
}

.goepos-hero .goepos-hero-headline .dot {
  color: #202020;
}

.goepos-hero-line {
  height: 5px;
  margin-bottom: 16px;
}

.goepos-hero-title {
  margin-bottom: 10px;
  font-size: clamp(19px, 1.55vw, 24px);
}

.goepos-hero-features {
  gap: 6px 10px;
  margin-bottom: 8px;
}

.goepos-hero-feature {
  grid-template-columns: 72px 1fr;
  gap: 8px;
  min-height: 74px;
  padding: 2px 2px 2px 0;
}

.goepos-hero-icon,
.goepos-hero-support-icon {
  width: 66px;
  height: 66px;
}

.goepos-hero-icon svg,
.goepos-hero-support-icon svg {
  width: 37px;
  height: 37px;
}

.goepos-hero-feature-text h3 {
  margin-bottom: 2px;
  font-size: clamp(15px, 1.27vw, 19px);
  font-weight: 550;
}

.goepos-hero-support-text h4 {
  font-weight: 550;
}

.goepos-hero-feature-text p {
  font-size: clamp(12px, 0.9vw, 13px);
  line-height: 1.25;
}

.goepos-hero-business {
  grid-template-columns: 72px 1fr;
  gap: 8px;
  margin-bottom: 10px;
  padding: 2px 2px 2px 0;
}

.goepos-hero-business-icon {
  width: 66px;
  height: 66px;
}

.goepos-hero-business-icon svg {
  width: 45px;
  height: 45px;
}

.goepos-hero-feature:nth-child(1) .goepos-hero-icon svg,
.goepos-hero-feature:nth-child(4) .goepos-hero-icon svg {
  width: 46px;
  height: 46px;
}

.goepos-hero-business-text {
  font-size: clamp(13px, 1.12vw, 16px);
  line-height: 1.22;
}

.goepos-hero-cta {
  min-width: 300px;
  margin-top: 14px;
  margin-bottom: 22px;
  padding: 8px 9px 8px 22px;
}

.goepos-hero-cta .label {
  font-size: clamp(15px, 1.2vw, 17px);
}

.goepos-hero-cta .arrow-circle {
  width: 38px;
  height: 38px;
}

.goepos-hero-support {
  grid-template-columns: 72px 1fr;
  gap: 8px;
}

.goepos-hero-support-text h4 {
  margin-bottom: 2px;
  font-size: 14px;
}

.goepos-hero-support-text p {
  font-size: 12px;
  line-height: 1.25;
}

.goepos-hero-right,
.goepos-devices-stage {
  min-height: 640px;
}

.goepos-hero-right.reveal,
.goepos-hero-right.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.goepos-devices-stage {
  justify-content: flex-end;
}

.goepos-devices-stage::before,
.goepos-devices-stage::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.goepos-devices-stage::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 24%;
  background: linear-gradient(to right, rgba(255, 250, 245, 0.92), rgba(255, 250, 245, 0.34) 44%, rgba(255, 250, 245, 0));
}

.goepos-devices-stage::after {
  content: none;
  left: 0;
  right: 0;
  bottom: 0;
  height: 21%;
  background: linear-gradient(to bottom, rgba(255, 250, 245, 0), rgba(255, 250, 245, 0.42) 52%, rgba(255, 250, 245, 0.9));
}

.goepos-hero-devices-img {
  position: relative;
  z-index: 1;
  width: min(864px, 90%);
  max-width: none;
  margin-left: auto;
  transform: translate(0, -84px);
  filter: none;
  transition: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 5%, #000 14%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 84%, rgba(0, 0, 0, 0.62) 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.55) 5%, #000 14%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 84%, rgba(0, 0, 0, 0.62) 93%, transparent 100%);
  mask-composite: intersect;
}

@media (max-width: 1280px) {
  .goepos-hero-container {
    width: 100%;
    padding-left: 56px;
  }

  .goepos-hero-devices-img {
    transform: translate(0, -76px);
  }
}

@media (max-width: 1080px) {
  .goepos-hero-container {
    width: min(100% - 32px, 860px);
    padding: 64px 0 0;
    grid-template-columns: 1fr;
  }

  .goepos-hero-left {
    max-width: 100%;
    transform: none;
  }

  .goepos-hero-left.reveal.is-visible {
    transform: none;
  }

  .goepos-hero-devices-img {
    width: min(738px, 90%);
    transform: translate(0, -40px);
  }
}

@media (max-width: 820px) {
  .goepos-hero-headline {
    white-space: normal;
  }
}

/* Static two-card spotlight layout. */
.spotlight-card {
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 24px;
  cursor: default;
}

.spotlight-card::before,
.spotlight-action,
.spotlight-close,
.spotlight-card-detail {
  display: none;
}

.spotlight-card:hover,
.spotlight-card:focus-visible,
.spotlight-card.is-active {
  transform: none;
  border-color: rgba(184, 27, 27, 0.16);
  box-shadow: var(--shadow-soft);
}

.spotlight-card-visual {
  width: 80%;
  aspect-ratio: 1 / 1;
  margin: 0 auto 24px;
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.spotlight-card-copy {
  position: static;
  grid-area: auto;
  align-self: auto;
  justify-self: auto;
  max-width: none;
  margin-top: 0;
  text-align: left;
  transform: none;
}

.spotlight-card h3 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.2vw, 40px);
}

.spotlight-card p {
  max-width: none;
  margin: 0;
  font-size: 17px;
}

@media (max-width: 600px) {
  .spotlight-card {
    min-height: auto;
    padding: 18px;
  }

  .spotlight-card-visual {
    margin-bottom: 20px;
    border-radius: 14px;
  }

  .spotlight-card-copy {
    margin-top: 0;
  }

  .spotlight-card h3 {
    font-size: 28px;
  }
}

/* Offline spotlight split layout. */
.spotlight-offline-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.spotlight-media-card {
  width: min(100%, 620px);
  justify-self: start;
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
}

.spotlight-media-card .spotlight-card-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
  border-radius: inherit;
  object-fit: cover;
}

.spotlight-card-offline .spotlight-card-visual {
  background: #ffffff;
  object-fit: contain;
}

.spotlight-security-layout {
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1fr);
  margin-top: 110px;
}

.spotlight-security-layout .spotlight-media-card {
  justify-self: end;
}

.spotlight-offline-copy {
  max-width: 600px;
}

.spotlight-offline-copy h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 800;
}

.spotlight-offline-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
  font-weight: 600;
}

.flexible-transaction-section {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f7 100%);
}

.flexible-transaction-heading {
  width: min(920px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.flexible-transaction-heading h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
}

.flexible-transaction-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.6;
  font-weight: 600;
}

.flexible-transaction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
}

.flexible-transaction-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(184, 27, 27, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.flexible-transaction-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.team-routing-section {
  overflow: hidden;
  background: #ffffff;
}

.team-routing-heading {
  width: min(980px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.team-routing-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
}

.team-routing-visual {
  width: min(1120px, 100%);
  margin: 0 auto 42px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(54, 27, 22, 0.16);
}

.team-routing-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
}

.team-routing-description {
  width: min(850px, 100%);
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.58;
  font-weight: 600;
}

.active-orders-section {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f7 100%);
}

.active-orders-heading {
  width: min(980px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.active-orders-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
}

.active-orders-grid {
  display: grid;
  grid-template-columns: minmax(0, 1040px);
  gap: clamp(18px, 2.5vw, 28px);
  align-items: stretch;
  justify-content: center;
  margin-bottom: 34px;
}

.active-orders-card {
  overflow: hidden;
  border: 1px solid rgba(184, 27, 27, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.active-orders-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
}

.active-orders-description {
  width: min(900px, 100%);
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.58;
  font-weight: 600;
}

.receipt-promo-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

.receipt-promo-heading {
  width: min(980px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.receipt-promo-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
}

.receipt-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  align-items: stretch;
}

.receipt-promo-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(184, 27, 27, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.receipt-promo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.receipt-promo-card p {
  margin: 0;
  padding: 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.5;
  font-weight: 700;
}

.table-management-section {
  overflow: hidden;
  background: #ffffff;
}

.table-management-card {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(184, 27, 27, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, #fffafa 0%, #ffffff 58%, #fff4f2 100%);
  box-shadow: var(--shadow-soft);
}

.table-management-media {
  margin: 0;
  overflow: hidden;
  padding: clamp(16px, 2.2vw, 26px);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(54, 27, 22, 0.13);
}

.table-management-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
}

.table-management-copy {
  max-width: 690px;
}

.table-management-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
}

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

.table-management-list li {
  position: relative;
  margin: 0;
  padding-left: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
  font-weight: 650;
}

.table-management-list li + li {
  margin-top: 14px;
}

.table-management-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #B81B1B;
  box-shadow: 0 0 0 5px rgba(215, 25, 25, 0.11);
}

.cashier-shift-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

.customer-display-section {
  overflow: hidden;
  background: #ffffff;
}

.cashier-shift-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.cashier-shift-copy {
  max-width: 720px;
}

.cashier-shift-copy h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
}

.cashier-shift-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.68;
  font-weight: 600;
}

.cashier-shift-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  justify-self: stretch;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 27, 27, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.cashier-shift-media img {
  display: block;
  width: 100%;
  height: 100%;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
}

.customer-display-card .cashier-shift-copy {
  justify-self: end;
}

@media (max-width: 820px) {
  .spotlight-offline-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .spotlight-security-layout {
    margin-top: 76px;
  }

  .spotlight-media-card {
    justify-self: center;
  }

  .spotlight-offline-copy {
    max-width: none;
    text-align: center;
  }

  .flexible-transaction-grid {
    grid-template-columns: 1fr;
  }

  .flexible-transaction-card {
    min-height: auto;
  }

  .team-routing-visual {
    border-radius: 22px;
  }

  .active-orders-grid {
    grid-template-columns: 1fr;
  }

  .receipt-promo-grid {
    grid-template-columns: 1fr;
  }

  .table-management-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .table-management-copy {
    max-width: none;
    text-align: center;
  }

  .cashier-shift-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cashier-shift-copy {
    max-width: none;
    text-align: center;
  }

  .cashier-shift-media {
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .flexible-transaction-heading {
    margin-bottom: 30px;
  }

  .flexible-transaction-heading h2 {
    font-size: 30px;
  }

  .flexible-transaction-heading p {
    font-size: 16px;
  }

  .flexible-transaction-card {
    border-radius: 20px;
  }

  .team-routing-heading {
    margin-bottom: 30px;
  }

  .team-routing-heading h2 {
    font-size: 30px;
  }

  .team-routing-visual {
    margin-bottom: 30px;
    border-radius: 18px;
  }

  .team-routing-visual img {
    aspect-ratio: 4 / 3;
  }

  .team-routing-description {
    font-size: 16px;
  }

  .active-orders-heading {
    margin-bottom: 30px;
  }

  .active-orders-heading h2 {
    font-size: 30px;
  }

  .active-orders-grid {
    margin-bottom: 26px;
  }

  .active-orders-card {
    border-radius: 20px;
  }

  .active-orders-description {
    font-size: 16px;
  }

  .receipt-promo-heading {
    margin-bottom: 30px;
  }

  .receipt-promo-heading h2 {
    font-size: 30px;
  }

  .receipt-promo-card {
    border-radius: 20px;
  }

  .receipt-promo-card p {
    padding: 18px;
    font-size: 16px;
  }

  .table-management-card {
    padding: 16px;
    border-radius: 22px;
  }

  .table-management-media {
    border-radius: 18px;
  }

  .table-management-copy h2 {
    font-size: 30px;
  }

  .table-management-list li {
    font-size: 16px;
  }

  .cashier-shift-card {
    gap: 20px;
  }

  .cashier-shift-copy h2 {
    font-size: 30px;
  }

  .cashier-shift-copy p {
    font-size: 16px;
  }

  .cashier-shift-media {
    width: 100%;
    border-radius: 18px;
  }
}

/* Typography pass inspired by Shift4's clean, high-contrast hierarchy. */
body {
  font-family: var(--font-main);
  font-size: 16.5px;
  line-height: 1.56;
  letter-spacing: 0;
  font-weight: 600;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.goepos-hero-brand,
.goepos-hero-headline,
.goepos-hero-title,
.section-heading h2,
.spotlight-heading h2,
.spotlight-offline-copy h3,
.flexible-transaction-heading h2,
.team-routing-heading h2,
.active-orders-heading h2,
.receipt-promo-heading h2,
.table-management-copy h2,
.cashier-shift-copy h2,
.pricing-card h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

.goepos-hero-brand {
  font-size: clamp(34px, 3.73vw, 53px);
  line-height: 0.95;
  font-weight: 800;
}

.goepos-hero .goepos-hero-headline {
  font-size: clamp(25px, 2.79vw, 40px);
  line-height: 1.04;
  font-weight: 800;
}

.goepos-hero-title {
  font-size: clamp(17px, 1.62vw, 24px);
  line-height: 1.14;
  font-weight: 800;
}

.goepos-hero-feature-text h3,
.goepos-hero-support-text h4 {
  font-size: clamp(13px, 1.07vw, 16px);
  line-height: 1.12;
  font-weight: 800;
}

.goepos-hero-feature-text p,
.goepos-hero-support-text p {
  color: #38474a;
  font-size: clamp(13px, 1vw, 15.5px);
  line-height: 1.48;
  font-weight: 650;
}

.goepos-hero-business-text {
  color: #38474a;
  font-size: clamp(13px, 1vw, 15.5px);
  line-height: 1.48;
  font-weight: 650;
}

.goepos-hero-business-text strong {
  color: var(--goepos-primary);
  font-size: clamp(13px, 1.07vw, 16px);
  line-height: 1.12;
  font-weight: 800;
}

.goepos-hero-cta .label,
.btn,
.header-cta,
.language-switch button {
  font-weight: 900;
}

.spotlight-heading h2,
.section-heading h2,
.spotlight-offline-copy h3,
.flexible-transaction-heading h2,
.team-routing-heading h2,
.active-orders-heading h2,
.receipt-promo-heading h2,
.table-management-copy h2,
.cashier-shift-copy h2 {
  color: #111d20;
  font-size: clamp(32px, 3.69vw, 52px);
  line-height: 1.04;
  font-weight: 800;
}

.section-heading {
  max-width: 860px;
}

.section-heading p,
.spotlight-description,
.spotlight-offline-copy p,
.flexible-transaction-heading p,
.team-routing-description,
.active-orders-description,
.cashier-shift-copy p {
  color: #536466;
  font-size: clamp(21.5px, 1.67vw, 24px);
  line-height: 1.58;
  font-weight: 650;
}

.table-management-list li {
  color: #536466;
  font-size: clamp(20px, 1.5vw, 22.5px);
  line-height: 1.6;
  font-weight: 650;
}

.receipt-promo-card p,
.business-card p,
.feature-card p,
.workflow-step p,
.pricing-card p,
.footer-links {
  color: #000000;
  font-size: clamp(19px, 1.27vw, 21px);
  line-height: 1.56;
  font-weight: 650;
}

.business-card h3,
.feature-card h3,
.workflow-step h3,
.pillar-card h2,
.spotlight-card h3,
.pricing-card h3 {
  color: #111d20;
  line-height: 1.12;
  font-weight: 800;
}

.pricing-card h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.check-list li {
  color: #536466;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

@media (max-width: 820px) {
  .spotlight-heading h2,
  .section-heading h2,
  .spotlight-offline-copy h3,
  .flexible-transaction-heading h2,
  .team-routing-heading h2,
  .active-orders-heading h2,
  .receipt-promo-heading h2,
  .table-management-copy h2,
  .cashier-shift-copy h2 {
    font-size: clamp(25px, 6.3vw, 37px);
    line-height: 1.08;
  }

  .section-heading p,
  .spotlight-description,
  .spotlight-offline-copy p,
  .flexible-transaction-heading p,
  .team-routing-description,
  .active-orders-description,
  .cashier-shift-copy p {
    font-size: 20px;
    line-height: 1.66;
  }
}

@media (max-width: 600px) {
  .goepos-hero-brand {
    font-size: 32px;
  }

  .goepos-hero .goepos-hero-headline {
    font-size: 24px;
    line-height: 1.08;
  }

  .goepos-hero-title {
    font-size: 18px;
  }

  .spotlight-heading h2,
  .section-heading h2,
  .spotlight-offline-copy h3,
  .flexible-transaction-heading h2,
  .team-routing-heading h2,
  .active-orders-heading h2,
  .receipt-promo-heading h2,
  .table-management-copy h2,
  .cashier-shift-copy h2 {
    font-size: 25px;
  }
}
