@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #051223;
  --bg-deep: #020a16;
  --bg-glow: rgba(0, 111, 188, 0.45);
  --panel: #0b1b2f;
  --panel-2: #0f2138;
  --panel-soft: rgba(11, 27, 47, 0.66);
  --panel-soft-2: rgba(11, 27, 47, 0.6);
  --band-bg: rgba(13, 29, 51, 0.72);
  --header-bg: #081526;
  --footer-bg: rgba(2, 10, 22, 0.9);
  --mobile-bg: rgba(2, 11, 24, 0.96);
  --input-bg: #071427;
  --input-border: rgba(76, 97, 123, 0.8);
  --line: rgba(58, 87, 121, 0.45);
  --text: #f6f9fc;
  --muted: #9ba6b1;
  --brand-a: #00acf3;
  --brand-b: #48d7fe;
  --radius: 28px;
  --container: 1160px;
}

:root[data-theme="light"] {
  --bg: #f4f8fd;
  --bg-deep: #e7f0fa;
  --bg-glow: rgba(17, 132, 204, 0.14);
  --panel: #ffffff;
  --panel-2: #f1f7ff;
  --panel-soft: rgba(255, 255, 255, 0.88);
  --panel-soft-2: rgba(255, 255, 255, 0.92);
  --band-bg: rgba(241, 246, 253, 0.92);
  --header-bg: rgba(248, 252, 255, 0.95);
  --footer-bg: rgba(232, 241, 250, 0.95);
  --mobile-bg: rgba(250, 253, 255, 0.98);
  --input-bg: #ffffff;
  --input-border: rgba(132, 156, 184, 0.62);
  --line: rgba(85, 116, 150, 0.25);
  --text: #0d2138;
  --muted: #4f647a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(80% 35% at 50% 0%, var(--bg-glow), rgba(0, 0, 0, 0) 65%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
}

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

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

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--band-bg);
}

.band-cards {
  padding: 0;
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  border-bottom: 1px solid rgba(37, 52, 71, 0.6);
  background: #051223;
}

.site-header {
  position: relative;
  z-index: 40;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 57px;
}

.brand img {
  width: 130px;
  height: auto;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav .nav-link {
  text-decoration: none;
  color: var(--muted);
  font-family: "Inter", "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 19.5px;
}

.desktop-nav .nav-link:hover {
  color: var(--text);
}

.nav-utilities {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  width: 58px;
  height: 32px;
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 999px;
  background: #0b1b2f;
  padding: 4px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.theme-toggle .dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease;
}

.theme-toggle .dot svg {
  width: 12px;
  height: 12px;
}

.theme-toggle:hover {
  box-shadow: 0 0 0 3px rgba(72, 215, 254, 0.15);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--brand-b);
  outline-offset: 2px;
}

.theme-toggle[aria-pressed="true"] .dot {
  transform: translateX(24px);
}

.nav-cta {
  min-width: 112px;
  height: 30.75px;
  padding: 0 14px;
  font-family: "Inter", "Space Grotesk", sans-serif;
  font-size: 12px;
  line-height: 15px;
  gap: 4px;
  border-radius: 999px;
}

.nav-cta .arrow {
  font-size: 12px;
}

/* Content pages use the CTA directly; keep it aligned like homepage utilities. */
.nav-shell > .nav-cta {
  margin-left: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
  background: var(--mobile-bg);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  color: #041122;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.72);
}

.btn-muted {
  color: var(--text);
  background: var(--panel-soft);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 92px;
  background:
    radial-gradient(1200px 760px at 50% 60%, rgba(58, 199, 255, 0.38), rgba(58, 199, 255, 0) 52%),
    linear-gradient(180deg, #05162c 0%, #020917 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 0;
}

.hero-grid > div:first-child {
  width: min(100%, 760px);
  text-align: center;
}

.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(3.4rem, 5.05vw, 4.64rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-line {
  display: block;
}

.hero-line-accent {
  background: linear-gradient(125deg, var(--brand-a), var(--brand-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 28px;
  padding: 5px 14px;
  color: var(--brand-b);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin: 0;
}

.pill-icon {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 12px;
}

.pill-icon img {
  width: 12px;
  height: 12px;
}

.hero-copy {
  color: var(--muted);
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.25rem;
  line-height: 1.625;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.btn-hero-primary,
.btn-hero-secondary {
  height: 42.5px;
  padding: 0 16px;
}

.btn-hero-primary {
  min-width: 154px;
}

.btn-hero-secondary {
  min-width: 180px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.btn-icon img {
  width: 16px;
  height: 16px;
}

.btn-icon-phone {
  margin-right: 2px;
}

.hero-flags {
  width: max-content;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  font-size: 0.8125rem;
}

.hero-flags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-flag-icon {
  width: 16px;
  height: 16px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
}

.hero-flag-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.hero-art-wrap {
  position: relative;
  width: min(768px, 100%);
  margin: 54px auto 0;
  aspect-ratio: 768 / 576;
}

.hero-art-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  width: 86%;
  height: 76%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(58, 199, 255, 0.56), rgba(58, 199, 255, 0) 68%);
  filter: blur(32px);
}

.hero-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  box-shadow:
    inset 1px 0 0 rgba(37, 52, 71, 0.6),
    inset -1px 0 0 rgba(37, 52, 71, 0.6);
}

.info-card {
  min-height: 267.69px;
  padding: 48px 32px 34px;
  background: #051223;
  border-right: 1px solid rgba(37, 52, 71, 0.6);
}

.info-card:last-child {
  border-right: 0;
}

.card-badge {
  width: 40px;
  height: 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 20px 50px -20px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.card-badge img {
  width: 20px;
  height: 20px;
}

.info-card h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: "Inter", "Space Grotesk", sans-serif;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: -0.55px;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Inter", "Space Grotesk", sans-serif;
  font-size: 14.5px;
  line-height: 23.56px;
}

.kicker {
  margin: 0;
  color: var(--brand-b);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.center {
  text-align: center;
}

.integrations-grid {
  display: grid;
  grid-template-columns: minmax(0, 422px) minmax(0, 1fr);
  gap: clamp(64px, 7.25vw, 110px);
  align-items: center;
}

.integrations {
  padding: 66px 0 91px;
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  background: var(--panel);
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.integrations h2 {
  max-width: 420px;
  margin: 11px 0 11px;
  font-size: clamp(2rem, 2.68vw, 2.544rem);
  font-weight: 600;
  line-height: 1.135;
  letter-spacing: -0.038em;
}

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

.integrations .kicker {
  color: #3ac7ff;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 2.86px;
}

.integrations .integrations-copy {
  max-width: 415px;
  margin: 0 0 17px;
  font-size: 16px;
  line-height: 26px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 400px;
}

.chip-row span {
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 999px;
  padding: 4px 12px;
  background: var(--bg);
  color: var(--text);
  font-size: 13px;
  line-height: 19.5px;
}

.chip-row span:last-child {
  color: var(--muted);
}

.logo-grid {
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(37, 52, 71, 0.6);
}

.logo-grid img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  padding: 32px 36px;
  border-right: 1px solid rgba(37, 52, 71, 0.6);
  border-bottom: 1px solid rgba(37, 52, 71, 0.6);
  background: var(--bg);
  opacity: 0.8;
}

.logo-grid img:nth-child(3n) {
  border-right: 0;
}

.logo-grid img:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.logo-grid img:last-child {
  padding: 32px;
  opacity: 0.9;
}

.logo-grid img.integration-microsoft {
  padding: 32px 36px;
  object-fit: contain;
  object-position: center;
}

.epos-suite {
  padding: 111px 0 102px;
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  background: var(--bg);
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.epos-suite-inner {
  width: min(1120px, calc(100% - 40px));
}

.epos-suite .kicker {
  color: #3ac7ff;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 2.86px;
}

.epos-suite h2 {
  max-width: 780px;
  margin: 13px auto 68px;
  color: var(--text);
  font-size: clamp(2.45rem, 3.4vw, 3.231rem);
  font-weight: 600;
  line-height: 1.137;
  letter-spacing: -0.038em;
}

.epos-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 36px;
  background: rgba(37, 52, 71, 0.6);
}

.epos-feature-card {
  min-width: 0;
  min-height: 185px;
  padding: 28px;
  background: var(--bg);
}

.epos-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 16px;
  background: var(--panel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.epos-feature-icon img {
  width: 18px;
  height: 18px;
}

.epos-feature-card h3 {
  margin: 16px 0 8px;
  color: var(--text);
  font-size: 15.8px;
  font-weight: 600;
  line-height: 25.5px;
  letter-spacing: -0.34px;
}

.epos-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
}

.industries {
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  background: var(--bg);
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.industries-intro {
  width: min(1120px, calc(100% - 40px));
  padding-top: 111px;
}

.industries .kicker {
  color: #3ac7ff;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 2.6px;
}

.industries-intro > h2 {
  max-width: 660px;
  margin: 13px auto 68px;
  color: var(--text);
  font-size: clamp(2.45rem, 3.38vw, 3.213rem);
  font-weight: 600;
  line-height: 1.144;
  letter-spacing: -1.96px;
}

.industry-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  height: 193px;
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 36px;
  background: rgba(37, 52, 71, 0.6);
}

.industry-type-card {
  min-width: 0;
  padding: 28px;
  background: var(--bg);
}

.industry-type-icon {
  width: 40px;
  height: 40px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00acf3 0%, #48d7fe 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 20px 50px -20px rgba(0, 0, 0, 0.5);
}

.industry-type-icon img {
  width: 20px;
  height: 20px;
}

.industry-type-card h3 {
  margin: 15px 0 6px;
  color: var(--text);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.36px;
}

.industry-type-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 22.75px;
}

.industry-showcases {
  padding-top: 48px;
}

.industry-showcase {
  min-height: 715px;
  border-bottom: 1px solid rgba(37, 52, 71, 0.6);
}

.industry-showcase:last-child {
  border-bottom: 0;
}

.industry-showcase-grid {
  width: min(1120px, calc(100% - 40px));
  min-height: 715px;
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(0, 532px) minmax(0, 532px);
  gap: 56px;
  align-items: center;
}

.industry-showcase-image {
  height: 522px;
  overflow: hidden;
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 36px;
  background: var(--panel);
  box-shadow: 0 0 0 1px rgba(58, 199, 255, 0.3), 0 30px 80px -20px rgba(58, 199, 255, 0.35);
}

.industry-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-showcase-grid.reverse .industry-showcase-image {
  order: 2;
}

.industry-showcase-copy {
  min-width: 0;
}

.industry-showcase-copy h3 {
  margin: 10px 0 10px;
  color: var(--text);
  font-size: clamp(2.25rem, 2.9vw, 2.77rem);
  font-weight: 600;
  line-height: 50.4px;
  letter-spacing: -1.68px;
}

.industry-summary {
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 17px;
  line-height: 27.63px;
}

.industry-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.industry-feature-list li {
  position: relative;
  min-height: 22.5px;
  padding-left: 26px;
  color: var(--text);
  font-size: 15px;
  line-height: 22.5px;
}

.industry-feature-list li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("img/industry-check.svg") center / contain no-repeat;
}

.industry-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #3ac7ff;
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  text-decoration: none;
}

.industry-demo-link img {
  width: 16px;
  height: 16px;
}

.process-section {
  padding: 111px 0 124px;
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  background: var(--panel);
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.process-inner {
  width: min(1120px, calc(100% - 40px));
}

.process-section .kicker {
  color: #3ac7ff;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 2.86px;
}

.process-section h2 {
  max-width: 660px;
  margin: 13px auto 68px;
  color: var(--text);
  font-size: clamp(2.45rem, 3.41vw, 3.238rem);
  font-weight: 600;
  line-height: 1.135;
  letter-spacing: -1.96px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  min-height: 219px;
  overflow: hidden;
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 36px;
  background: rgba(37, 52, 71, 0.6);
}

.process-step {
  min-width: 0;
  min-height: 217px;
  padding: 28px;
  background: var(--bg);
}

.process-number {
  display: block;
  width: max-content;
  background: linear-gradient(138deg, #00acf3 0%, #48d7fe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -1.2px;
}

.process-step h3 {
  margin: 16px 0 4px;
  color: var(--text);
  font-size: 18.4px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.5px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 23.56px;
}

.offer-section {
  position: relative;
  min-height: 672px;
  overflow: hidden;
  background: linear-gradient(135deg, #000514 0%, #00112f 50%, #000213 100%);
  color: #fff;
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.offer-glow {
  position: absolute;
  top: -128px;
  left: 10%;
  right: 10%;
  height: 395px;
  border-radius: 999px;
  background: rgba(58, 199, 255, 0.3);
  filter: blur(32px);
  opacity: 0.6;
}

.offer-shell {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  min-height: 672px;
}

.offer-content {
  position: absolute;
  top: 132.67px;
  left: 0;
  width: 540px;
}

.offer-badge {
  width: max-content;
  min-height: 28px;
  margin: 0 0 13.99px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.offer-badge img {
  width: 12px;
  height: 12px;
}

.offer-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 3.66vw, 3.469rem);
  font-weight: 600;
  line-height: 61.2px;
  letter-spacing: -2.4px;
}

.offer-content h2 span {
  display: block;
}

.offer-content h2 span:not(:first-child) {
  color: rgba(255, 255, 255, 0.55);
}

.offer-copy {
  max-width: 480px;
  margin: 20.31px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 27.63px;
}

.offer-actions {
  display: flex;
  gap: 9px;
  margin-top: 50px;
}

.offer-primary,
.offer-phone {
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  line-height: 22.5px;
  text-decoration: none;
}

.offer-primary {
  width: 169px;
  background: #fff;
  color: #020b1b;
  font-weight: 600;
}

.offer-phone {
  width: 169px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
}

.offer-primary img,
.offer-phone img {
  width: 16px;
  height: 16px;
}

.offer-product {
  position: absolute;
  top: 128px;
  right: 50px;
  width: 448px;
  height: auto;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.stats-row {
  width: min(1120px, calc(100% - 40px));
  min-height: 252px;
  padding-top: 95px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: center;
}

.stats-row div {
  padding: 0;
}

.stats-band {
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  background: #051223;
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.stats-row strong {
  display: block;
  width: max-content;
  margin: 0 auto;
  background: linear-gradient(120deg, #00acf3 0%, #48d7fe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 60px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -2.4px;
}

.stats-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 21px;
}

.customers-section {
  padding: 111px 0 124px;
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  background: var(--bg);
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.customers-inner {
  width: min(1120px, calc(100% - 40px));
}

.customers-section .kicker {
  color: #3ac7ff;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 2.86px;
}

.customers-section h2 {
  max-width: 720px;
  margin: 13px auto 68px;
  color: var(--text);
  font-size: clamp(2.45rem, 3.4vw, 3.225rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -1.96px;
}

.customer-grid {
  height: 477px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 252.39px 221.59px;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 36px;
  background: rgba(37, 52, 71, 0.6);
}

.customer-quote {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 40px;
  background: var(--bg);
}

.customer-quote blockquote {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  line-height: 30.8px;
  letter-spacing: -0.33px;
}

.customer-quote figcaption {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.customer-logo {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 4px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customer-quote figcaption > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.customer-quote strong,
.customer-quote small {
  font-size: 13.5px;
  line-height: 20.25px;
}

.customer-quote strong {
  color: var(--text);
  font-weight: 500;
}

.customer-quote small {
  color: var(--muted);
  font-weight: 400;
}

.partners-section {
  padding: 63.88px 0 43.25px;
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  background: #0b1b2f;
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.partners-inner {
  width: min(1120px, calc(100% - 40px));
}

.partners-section h2 {
  margin: 0 0 32.12px;
  color: #9ba6b1;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 18.75px;
  letter-spacing: 3.125px;
  text-align: center;
  text-transform: uppercase;
}

.partners-row {
  width: calc(100% - 72px);
  max-width: 1048px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partners-row img {
  width: auto;
  height: 24px;
  opacity: 0.7;
}

.contact {
  padding: 101px 0 100px;
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  background: var(--panel);
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.contact-grid {
  width: min(1137px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 432px) minmax(0, 649px);
  gap: 56px;
  align-items: start;
}

.contact-content {
  padding-top: 10px;
}

.contact .kicker {
  color: #3ac7ff;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 2.6px;
}

.contact h2 {
  max-width: 360px;
  margin: 13px 0 16px;
  color: var(--text);
  font-size: clamp(2.5rem, 2.9vw, 2.77rem);
  font-weight: 600;
  line-height: 50.4px;
  letter-spacing: -1.68px;
}

.contact .contact-intro {
  max-width: 435px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 27.63px;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin: 39px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li,
.contact-list a {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 22.5px;
  text-decoration: none;
}

.contact-list li > span,
.contact-list a > span {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 50%;
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-list img {
  width: 16px;
  height: 16px;
}

.contact-benefits {
  max-width: 350px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-benefits span {
  min-height: 29px;
  padding: 4px 10px 4px 28px;
  position: relative;
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 999px;
  background: var(--bg);
  color: var(--muted);
  font-size: 12.5px;
  line-height: 18.75px;
}

.contact-benefits span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 12px;
  height: 12px;
  background: url("img/contact-check.svg") center / contain no-repeat;
}

.lead-form {
  min-height: 543px;
  border: 1px solid rgba(37, 52, 71, 0.6);
  border-radius: 36px;
  padding: 38px;
  background: var(--bg);
}

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

.lead-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 18.75px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(37, 52, 71, 0.8);
  background: rgba(2, 10, 22, 0.28);
  color: var(--text);
  padding: 13px 16px;
  margin: 0 0 20px;
  font: 14px/22px "Inter", "Space Grotesk", sans-serif;
}

.lead-form input {
  height: 50px;
  border-radius: 999px;
}

.lead-form textarea {
  height: 125px;
  border-radius: 28px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(155, 166, 177, 0.55);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--brand-b);
  outline: none;
}

.btn-submit {
  width: 100%;
  min-height: 52px;
  position: relative;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg, #44a9e9 0%, #70d6ef 100%);
  color: #020b1b;
  font-family: "Inter", "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #051223;
  border-radius: 50%;
  display: none;
  animation: spin 0.9s linear infinite;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 18.75px;
  text-align: center;
}

.site-footer {
  min-height: 93px;
  border-top: 1px solid rgba(37, 52, 71, 0.6);
  padding: 0;
  background: #051223;
  font-family: "Inter", "Space Grotesk", sans-serif;
}

/* Reusable content layout for crawlable migration landing pages and articles. */
.seo-page { padding: 88px 0 110px; }
.seo-hero { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr); gap:56px; align-items:center; }
.seo-hero h1 { margin:10px 0 20px; color:var(--text); font-size:clamp(2.5rem,5vw,4.6rem); line-height:1.02; letter-spacing:-.05em; }
.seo-hero p, .seo-copy p, .seo-copy li { color:var(--muted); font-size:17px; line-height:1.7; }
.seo-hero-image {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: 36px;
  border: 1px solid rgba(58,199,255,.3);
  background: var(--panel);
}
.seo-copy { max-width:820px; margin:72px auto 0; }
.seo-copy h2 { margin:42px 0 12px; color:var(--text); font-size:clamp(1.7rem,3vw,2.5rem); }
.seo-copy h3 { margin:28px 0 8px; color:var(--text); font-size:1.25rem; }
.seo-copy a { color:#3ac7ff; }
.seo-copy a.btn,
.seo-cta a.btn {
  color: #020b1b;
}
.seo-cta { margin-top:42px; padding:28px; border:1px solid rgba(58,199,255,.3); border-radius:28px; background:var(--panel); }
.seo-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
@media (max-width:760px) { .seo-hero { grid-template-columns:1fr; gap:30px; } .seo-page { padding-top:48px; } }

.footer-grid {
  width: min(1136px, calc(100% - 40px));
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.footer-brand {
  width: 130px;
  height: 24px;
  display: block;
}

.footer-brand img {
  width: 130px;
  height: 24px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: #9ba6b1;
  font-size: 12.5px;
  line-height: 18.75px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f6f9fc;
}

.footer-tagline {
  margin: 3px 0 0;
  color: #9ba6b1;
  font-size: 12.5px;
  line-height: 18.75px;
  text-align: right;
}

.page-shell {
  padding: 64px 0 90px;
}

.page-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft-2);
  padding: clamp(20px, 3.5vw, 36px);
}

.page-card h1 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.page-card p,
.page-card li {
  color: var(--muted);
}

.legal-page {
  padding: 88px 0 104px;
  background:
    radial-gradient(720px 420px at 50% 0%, rgba(58, 199, 255, 0.1), transparent 70%),
    var(--bg);
  font-family: "Inter", "Space Grotesk", sans-serif;
}

.legal-layout {
  width: min(920px, calc(100% - 40px));
}

.legal-hero {
  margin-bottom: 42px;
  text-align: center;
}

.legal-hero .kicker {
  color: #3ac7ff;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 2.86px;
}

.legal-hero h1 {
  margin: 12px 0 10px;
  color: var(--text);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.legal-hero > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-document {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--panel-soft-2);
  box-shadow: 0 30px 80px -55px rgba(58, 199, 255, 0.38);
  overflow-wrap: anywhere;
}

.legal-document h2 {
  margin: 48px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.legal-document h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-document h3 {
  margin: 30px 0 10px;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.4;
}

.legal-document p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.legal-document a {
  color: #3ac7ff;
  text-underline-offset: 3px;
}

.legal-document .legal-callout {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
  color: var(--text);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1060px) {
  .integrations-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .integrations-grid {
    gap: 44px;
  }

  .contact-grid {
    gap: 56px;
  }

  .lead-form {
    width: min(649px, 100%);
  }

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

  .industry-type-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-type-card {
    min-height: 193px;
  }

  .industry-showcase-grid,
  .industry-showcase-grid.reverse {
    min-height: 0;
    padding: 72px 0;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .industry-showcase-grid.reverse .industry-showcase-image {
    order: 0;
  }

  .industry-showcase-image {
    height: min(70vw, 522px);
  }

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

  .offer-section {
    min-height: 0;
    padding: 96px 0;
  }

  .offer-shell {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 48px;
    align-items: center;
  }

  .offer-content,
  .offer-product {
    position: static;
    width: 100%;
  }

  .offer-actions {
    margin-top: 36px;
  }

  .customer-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .customer-quote {
    min-height: 252px;
  }

  .partners-row {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 44px;
  }

  .hero-grid > div:first-child {
    width: min(100%, 760px);
  }

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

  .cards-4 {
    border-left: 0;
    border-right: 0;
  }

  .info-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .info-card:nth-child(2n) {
    border-right: 0;
  }

  .info-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .stats-row div:nth-child(2) {
    border-right: 0;
  }

  .stats-row div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .stats-band .stats-row {
    min-height: 0;
    padding: 64px 0;
    gap: 48px 0;
  }

  .stats-band .stats-row div {
    border: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 40px);
  }

  .site-header {
    position: sticky;
    top: 0;
    min-height: 57px;
    background: rgba(5, 18, 35, 0.7);
    border-bottom-color: rgba(37, 52, 71, 0.36);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-shell {
    min-height: 57px;
  }

  .brand img {
    width: 130px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-utilities {
    margin-left: auto;
    display: flex;
    gap: 12px;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero h1 {
    margin: 16px 0 14px;
    font-size: 32px;
    line-height: 36.12px;
    letter-spacing: -1.2px;
  }

  .pill {
    min-height: 26.5px;
    padding: 4px 12px;
    font-size: 11px;
    line-height: 16.5px;
    letter-spacing: 1.98px;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 15.5px;
    line-height: 25.19px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    min-height: 46.5px;
  }

  .hero-flags {
    width: min(100%, 280px);
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 10px 28px;
    font-size: 12.5px;
  }

  .hero-flags li:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .hero-art-wrap {
    width: 100%;
    margin-top: 28px;
  }

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

  .hero.section-pad {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .integrations-grid {
    gap: 36px;
  }

  .integrations {
    padding: 80px 0 72px;
  }

  .integrations h2,
  .epos-suite h2,
  .industries-intro > h2,
  .process-section h2,
  .customers-section h2 {
    font-size: 33.2px;
    line-height: 37.8px;
    letter-spacing: -1.26px;
  }

  .epos-suite {
    padding: 72px 0;
  }

  .epos-suite h2 {
    margin-bottom: 36px;
    font-size: 33.2px;
  }

  .epos-feature-grid {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .epos-feature-card {
    min-height: 185px;
    padding: 28px 24px;
  }

  .industries-intro {
    padding-top: 72px;
  }

  .industries-intro > h2 {
    margin-bottom: 36px;
    font-size: 33.2px;
  }

  .industry-type-grid {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .industry-type-card {
    min-height: 190px;
    padding: 28px 24px;
  }

  .industry-showcases {
    padding-top: 40px;
  }

  .industry-showcase-grid,
  .industry-showcase-grid.reverse {
    padding: 56px 0;
    gap: 40px;
  }

  .industry-showcase-image {
    height: calc(100vw - 40px);
    max-height: 522px;
    border-radius: 28px;
  }

  .industry-showcase-copy h3 {
    font-size: clamp(2.1rem, 9vw, 2.65rem);
    line-height: 1.14;
  }

  .industry-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }

  .industry-feature-list li {
    padding-left: 22px;
    font-size: 12.5px;
    line-height: 19px;
  }

  .process-section {
    padding: 72px 0;
  }

  .process-section h2 {
    margin-bottom: 36px;
    font-size: 33.2px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .process-step {
    min-height: 0;
  }

  .offer-section {
    padding: 72px 0;
  }

  .offer-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .offer-content h2 {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    line-height: 1.08;
  }

  .offer-copy {
    margin-top: 24px;
  }

  .offer-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .offer-primary,
  .offer-phone {
    width: 100%;
    min-height: 48px;
  }

  .offer-product {
    max-width: 448px;
    margin: 0 auto;
  }

  .customers-section {
    padding: 72px 0;
  }

  .customers-section h2 {
    margin-bottom: 36px;
    font-size: 33.2px;
  }

  .customer-grid {
    border-radius: 28px;
  }

  .customer-quote {
    min-height: 0;
    padding: 32px 28px;
  }

  .customer-quote blockquote {
    font-size: 20px;
    line-height: 29px;
  }

  .customer-quote figcaption {
    position: static;
    height: auto;
    margin-top: 32px;
  }

  .partners-section {
    padding: 56px 0;
  }

  .partners-section h2 {
    margin-bottom: 30px;
  }

  .partners-row {
    gap: 26px 34px;
  }

  .partners-row img {
    max-width: 132px;
  }

  .contact {
    padding: 72px 0;
  }

  .contact-content {
    padding-top: 0;
  }

  .contact h2 {
    font-size: 33.2px;
    line-height: 1.14;
    letter-spacing: -1.26px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 28px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 28px;
  }

  .logo-grid img:nth-child(3n) {
    border-right: 1px solid rgba(37, 52, 71, 0.6);
  }

  .logo-grid img:nth-child(2n) {
    border-right: 0;
  }

  .logo-grid img:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(37, 52, 71, 0.6);
  }

  .logo-grid img:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .cards-4,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .band-cards .container {
    width: 100%;
  }

  .cards-4 {
    border-left: 0;
    border-right: 0;
  }

  .info-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 210px;
    padding: 36px 24px 30px;
  }

  .info-card:last-child {
    border-bottom: 0;
  }

  .card-badge {
    margin-bottom: 17px;
  }

  .stats-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-row div:last-child {
    border-bottom: 0;
  }

  .stats-band .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 64px 0 60px;
    gap: 42px 0;
  }

  .stats-band .stats-row div {
    border: 0;
  }

  .stats-row strong {
    font-size: 38.4px;
    line-height: 38.4px;
    letter-spacing: -1.536px;
  }

  .stats-row span {
    margin-top: 8px;
    font-size: 13px;
    line-height: 19.5px;
  }

  .site-footer,
  .footer-grid {
    min-height: 0;
  }

  .footer-grid {
    width: calc(100% - 32px);
    padding: 24px 0;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
    overflow: hidden;
  }

  .footer-links {
    grid-row: 3;
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 8px;
  }

  .footer-links a {
    max-width: 100%;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .footer-tagline {
    grid-row: 2;
    margin-top: 0;
    text-align: center;
  }

  .legal-page {
    padding: 64px 0 72px;
  }

  .legal-layout {
    width: min(100% - 28px, 920px);
  }

  .legal-hero {
    margin-bottom: 30px;
  }

  .legal-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .legal-document {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .legal-document h2 {
    margin-top: 38px;
    padding-top: 26px;
    font-size: 1.35rem;
  }

  .legal-document p {
    font-size: 14.5px;
    line-height: 1.72;
  }

}

@media (max-width: 370px) {
  .nav-utilities .theme-toggle {
    display: none;
  }
}

/* Light theme overrides for design sections that intentionally use fixed dark colours. */
:root[data-theme="light"] .site-header {
  background: rgba(248, 252, 255, 0.9);
  border-color: var(--line);
}

:root[data-theme="light"] .theme-toggle {
  background: #fff;
  border-color: var(--line);
}

:root[data-theme="light"] .mobile-nav {
  background: rgba(250, 253, 255, 0.98);
}

:root[data-theme="light"] .hero {
  background:
    radial-gradient(900px 560px at 50% 58%, rgba(58, 199, 255, 0.2), rgba(58, 199, 255, 0) 58%),
    linear-gradient(180deg, #f8fcff 0%, #eaf4ff 100%);
}

:root[data-theme="light"] .pill,
:root[data-theme="light"] .btn-muted {
  background: rgba(255, 255, 255, 0.82);
}

:root[data-theme="light"] .band-cards,
:root[data-theme="light"] .info-card {
  background: #fff;
  border-color: var(--line);
}

:root[data-theme="light"] .logo-grid,
:root[data-theme="light"] .epos-feature-grid,
:root[data-theme="light"] .industry-type-grid,
:root[data-theme="light"] .process-grid,
:root[data-theme="light"] .customer-grid {
  background: var(--line);
  border-color: var(--line);
}

:root[data-theme="light"] .logo-grid {
  background: #fff;
}

:root[data-theme="light"] .logo-grid img {
  background: transparent;
  border-color: var(--line);
  filter: brightness(0) saturate(100%) opacity(0.76);
}

:root[data-theme="light"] .epos-feature-card,
:root[data-theme="light"] .industry-type-card,
:root[data-theme="light"] .process-step,
:root[data-theme="light"] .customer-quote {
  background: #fff;
}

:root[data-theme="light"] .industry-showcase,
:root[data-theme="light"] .process-section,
:root[data-theme="light"] .customers-section,
:root[data-theme="light"] .contact {
  border-color: var(--line);
}

:root[data-theme="light"] .offer-section {
  background: linear-gradient(135deg, #f7fbff 0%, #e7f3ff 50%, #f9fcff 100%);
  color: var(--text);
}

:root[data-theme="light"] .offer-glow {
  background: rgba(58, 199, 255, 0.18);
}

:root[data-theme="light"] .offer-badge {
  background: rgba(13, 33, 56, 0.04);
  border-color: rgba(13, 33, 56, 0.15);
  color: rgba(13, 33, 56, 0.72);
}

:root[data-theme="light"] .offer-badge img,
:root[data-theme="light"] .offer-phone img {
  filter: brightness(0) saturate(100%) opacity(0.75);
}

:root[data-theme="light"] .offer-content h2,
:root[data-theme="light"] .offer-phone {
  color: var(--text);
}

:root[data-theme="light"] .offer-content h2 span:not(:first-child) {
  color: rgba(13, 33, 56, 0.55);
}

:root[data-theme="light"] .offer-copy {
  color: var(--muted);
}

:root[data-theme="light"] .offer-phone {
  border-color: rgba(13, 33, 56, 0.2);
}

:root[data-theme="light"] .offer-primary {
  background: #0d2138;
  color: #fff;
}

:root[data-theme="light"] .offer-primary img {
  filter: invert(1);
}

:root[data-theme="light"] .partners-section,
:root[data-theme="light"] .stats-band {
  background: #fff;
  border-color: var(--line);
}

:root[data-theme="light"] .partners-row img {
  filter: brightness(0) saturate(100%);
  opacity: 0.58;
}

:root[data-theme="light"] .lead-form,
:root[data-theme="light"] .contact-list li > span,
:root[data-theme="light"] .contact-list a > span,
:root[data-theme="light"] .contact-benefits span {
  background: #fff;
  border-color: var(--line);
}

:root[data-theme="light"] .lead-form input,
:root[data-theme="light"] .lead-form textarea {
  background: #f8fbff;
  border-color: rgba(85, 116, 150, 0.28);
}

:root[data-theme="light"] .footer-links a:hover {
  color: var(--text);
}
