@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --brand-blue: #094a9f;
  --brand-blue-deep: #0b5bbb;
  --brand-blue-night: #2b2b2b;
  --brand-orange: #f3771a;
  --brand-orange-deep: #d9640d;
  --brand-charcoal: #444648;
  --brand-charcoal-deep: #2b2b2b;
  --ink: #1a2230;
  --muted: #667287;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(9, 74, 159, 0.12);
  --brand-light-blue: #e6f0fa;
  --brand-soft-gray: #f5f5f5;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(9, 74, 159, 0.12);
  --shadow-bold: 0 32px 80px rgba(9, 74, 159, 0.2);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --font-body: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 15% 10%, rgba(9, 74, 159, 0.15), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(243, 119, 26, 0.11), transparent 18%),
    linear-gradient(180deg, #fbfdff 0%, var(--brand-light-blue) 48%, #fffaf6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18) 0%, transparent 28%, transparent 70%, rgba(255, 255, 255, 0.16) 100%);
  opacity: 0.75;
}

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

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

.page-shell {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  margin-bottom: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(9, 74, 159, 0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 180px;
  max-width: 100%;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-links a,
.footer-links a {
  color: var(--brand-charcoal);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--brand-blue);
}

.mobile-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(9, 74, 159, 0.08);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--brand-blue-night);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn,
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.32) 36%, transparent 62%);
  transform: translateX(-120%);
}

.btn:hover::before,
.nav-cta:hover::before {
  transform: translateX(120%);
  transition: transform 0.8s ease;
}

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

.btn-brand,
.nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
  box-shadow: 0 18px 34px rgba(9, 74, 159, 0.28);
}

.btn-brand:hover,
.btn-brand:focus,
.nav-cta:hover,
.nav-cta:focus,
.nav-cta:visited {
  color: var(--white);
}

.btn-outline-brand {
  color: var(--brand-blue-night);
  border: 1px solid rgba(12, 103, 184, 0.16);
  background: rgba(255, 255, 255, 0.88);
}

.btn-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 34px;
  align-items: center;
  padding: 36px 0 28px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-copy h1,
.section-heading h2,
.showcase-copy h2,
.cta-section h2,
.simple-page h1 {
  margin: 0;
  color: var(--brand-blue-night);
  font-family: var(--font-display);
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.feature-card p,
.showcase-copy p,
.industry-card p,
.hardware-card p,
.process-step p,
.cta-section p,
.simple-page p,
.footer-copy {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: #58667c;
}

.hero-intro-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 9px 14px;
  border: 1px solid rgba(12, 103, 184, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-charcoal-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin: 30px 0 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span,
.brand-band span {
  padding: 12px 16px;
  border: 1px solid rgba(12, 103, 184, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-charcoal-deep);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(12, 103, 184, 0.08);
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-proof-strip div {
  padding: 16px 18px;
  border: 1px solid rgba(12, 103, 184, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 34px rgba(8, 55, 102, 0.06);
}

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

.hero-proof-strip strong {
  margin-bottom: 6px;
  color: var(--brand-blue-night);
  font-size: 0.95rem;
}

.hero-proof-strip span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
}

.hero-product-card,
.feature-card,
.showcase-card,
.industry-card,
.hardware-card,
.process-step,
.simple-page {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.76)),
    rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.hero-product-card {
  min-height: 620px;
  padding: 34px;
}

.hero-product-card > img {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  margin: 26px auto 0;
  filter: drop-shadow(0 28px 40px rgba(8, 55, 102, 0.22));
}

.shine-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.shine-orb-blue {
  top: 54px;
  left: 24px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(12, 103, 184, 0.4), rgba(12, 103, 184, 0));
}

.shine-orb-orange {
  right: 18px;
  bottom: 90px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 147, 24, 0.34), rgba(255, 147, 24, 0));
}

.hero-product-card::after,
.feature-card::after,
.showcase-card::after,
.hardware-card::after {
  content: "";
  position: absolute;
  inset: -35% auto auto -20%;
  width: 60%;
  height: 180%;
  transform: rotate(22deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.floating-panel {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 30px rgba(8, 55, 102, 0.12);
}

.floating-panel p,
.floating-panel span {
  margin: 0;
  color: var(--muted);
}

.floating-panel strong {
  display: block;
  margin: 6px 0 4px;
  color: var(--brand-blue-night);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.floating-panel-sales {
  top: 30px;
  right: 26px;
}

.floating-panel-sync {
  bottom: 28px;
  left: 24px;
}

.hero-micro-card {
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 3;
  max-width: 230px;
  padding: 18px;
  border: 1px solid rgba(12, 103, 184, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 32px rgba(8, 55, 102, 0.12);
}

.hero-micro-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-orange-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-micro-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-blue-night);
  font-size: 1rem;
  line-height: 1.35;
}

.hero-micro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.brand-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}

.content-section {
  padding-top: 96px;
}

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

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

.section-heading h2,
.showcase-copy h2,
.cta-section h2,
.simple-page h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.feature-grid,
.industry-grid,
.hardware-grid,
.process-grid,
.payment-grid {
  display: grid;
  gap: 20px;
}

.feature-story-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.story-card {
  padding: 24px 26px;
  border: 1px solid rgba(12, 103, 184, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(8, 55, 102, 0.07);
}

.story-card h3 {
  margin: 0 0 10px;
  color: var(--brand-blue-night);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
}

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

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

.feature-card {
  padding: 28px;
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--brand-orange);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-card h3,
.showcase-card h3,
.industry-card h3,
.hardware-card h3,
.process-step h3 {
  margin: 0 0 12px;
  color: var(--brand-blue-night);
  font-size: 1.24rem;
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

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

.showcase-note-card {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(12, 103, 184, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 28px rgba(8, 55, 102, 0.06);
}

.showcase-note-card p {
  margin: 0;
}

.showcase-list li {
  position: relative;
  padding-left: 28px;
  color: var(--brand-charcoal-deep);
  font-weight: 700;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
  box-shadow: 0 0 0 6px rgba(255, 147, 24, 0.12);
}

.showcase-stack {
  display: grid;
  gap: 20px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(12, 103, 184, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #eff5fb);
}

.card-label {
  margin: 0 0 10px;
  color: var(--brand-orange-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alt-section {
  position: relative;
}

.alt-section::before {
  content: "";
  position: absolute;
  inset: 36px -16px -20px;
  z-index: -1;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(12, 103, 184, 0.05), rgba(255, 147, 24, 0.1));
}

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

.industry-card {
  padding: 28px;
}

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

.hardware-card {
  padding: 24px;
}

.hardware-card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(12, 103, 184, 0.08);
}

.hardware-card-accent {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 147, 24, 0.34), transparent 24%),
    linear-gradient(145deg, var(--brand-charcoal-deep), var(--brand-blue-night));
  box-shadow: var(--shadow-bold);
}

.hardware-card-accent h3,
.hardware-card-accent p {
  color: var(--white);
}

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

.process-step {
  padding: 28px;
}

.payment-section {
  position: relative;
}

.payment-layout,
.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.payment-story-card,
.payment-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.payment-story-card::after,
.payment-card::after,
.pricing-card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -18%;
  width: 55%;
  height: 170%;
  transform: rotate(20deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.payment-story-card h3,
.payment-card h3,
.pricing-card h3 {
  margin: 0 0 12px;
  color: var(--brand-blue-night);
  font-size: 1.38rem;
}

.payment-story-card p,
.payment-card p,
.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.terminal-picker-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.terminal-picker {
  padding: 16px;
  border: 1px solid rgba(12, 103, 184, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(12, 103, 184, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.88));
  box-shadow: 0 14px 30px rgba(8, 55, 102, 0.06);
}

.terminal-picker-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(12, 103, 184, 0.08);
}

.terminal-picker-image-product {
  object-fit: contain;
  padding: 12px;
}

.terminal-picker-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-orange-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terminal-picker strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-blue-night);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.terminal-picker p {
  margin: 0;
}

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

.payment-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(255, 147, 24, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8));
}

.pricing-section {
  padding-top: 88px;
}

.pricing-shell {
  padding: 30px;
  border: 1px solid rgba(12, 103, 184, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 147, 24, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(12, 103, 184, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.88));
  box-shadow: 0 22px 54px rgba(8, 55, 102, 0.09);
}

.pricing-copy h2 {
  margin: 0;
  color: var(--brand-blue-night);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.pricing-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.74;
}

.pricing-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.pricing-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-charcoal-deep);
  font-weight: 700;
}

.pricing-points span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
  box-shadow: 0 0 0 6px rgba(255, 147, 24, 0.12);
}

.pricing-card {
  align-self: stretch;
  background:
    radial-gradient(circle at top right, rgba(12, 103, 184, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand-orange);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.cta-section {
  margin-top: 84px;
  padding: 38px;
  border-radius: 38px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 147, 24, 0.44), transparent 22%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(135deg, var(--brand-blue-night), var(--brand-blue) 60%, var(--brand-charcoal));
  box-shadow: var(--shadow-bold);
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.cta-section p {
  max-width: 64ch;
  opacity: 0.86;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-copy {
  min-width: 0;
}

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

.contact-detail-card,
.contact-form-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.contact-detail-card {
  padding: 16px 18px;
}

.contact-detail-card a,
.contact-detail-card p {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  line-height: 1.6;
}

.contact-detail-card-wide {
  grid-column: span 2;
}

.contact-label {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-card {
  padding: 24px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-wide {
  grid-column: span 2;
}

.form-field label {
  color: var(--white);
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 147, 24, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 147, 24, 0.14);
}

.field-validation-error {
  color: #ffe0d7;
  font-size: 0.92rem;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}

.form-alert:empty {
  display: none;
}

.form-alert-success {
  color: #f4fff5;
  background: rgba(38, 162, 105, 0.26);
}

.form-alert-warning {
  color: #fff9e8;
  background: rgba(255, 147, 24, 0.24);
}

.form-alert-error {
  color: #fff2ef;
  background: rgba(186, 61, 61, 0.24);
}

.captcha-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.privacy-inline-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  justify-self: start;
}

.site-footer {
  padding: 44px 0 12px;
}

.footer-panel {
  padding: 28px;
  border: 1px solid rgba(12, 103, 184, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(243, 119, 26, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 245, 0.92));
  box-shadow: 0 20px 48px rgba(9, 74, 159, 0.08);
}

.footer-brand-block {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 0;
}

.footer-copy {
  margin: 0;
  max-width: 56ch;
}

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

.footer-info-card {
  padding: 18px;
  border: 1px solid rgba(12, 103, 184, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.footer-info-card a,
.footer-info-card p {
  margin: 0;
  color: var(--brand-blue-night);
  font-weight: 600;
  line-height: 1.6;
}

.footer-info-card a {
  display: inline-grid;
  gap: 0;
}

.footer-info-card a span {
  display: block;
}

.footer-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-orange-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(12, 103, 184, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand-charcoal-deep), var(--brand-blue));
  box-shadow: 0 18px 34px rgba(43, 43, 43, 0.2);
}

.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.footer-bottom-bar .footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-bar .footer-links a:hover {
  color: #ffd19a;
}

.simple-page {
  max-width: 780px;
  margin: 76px auto 32px;
  padding: 40px;
}

@media (max-width: 1100px) {
  .hero-section,
  .showcase-section,
  .payment-layout,
  .pricing-shell {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-proof-strip,
  .feature-story-rail {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .site-footer {
    display: grid;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 24px, 1220px);
    padding-top: 14px;
  }

  .site-header {
    top: 10px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px;
    border-radius: 28px;
  }

  .brand-logo {
    width: 150px;
  }

  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-menu {
    display: none;
    width: 100%;
    padding-top: 8px;
  }

  .site-menu.is-open {
    display: grid;
    gap: 14px;
  }

  .nav-links,
  .hero-actions,
  .hero-badges,
  .cta-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a,
  .nav-cta {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(9, 74, 159, 0.05);
  }

  .nav-cta {
    width: 100%;
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
    box-shadow: 0 16px 28px rgba(9, 74, 159, 0.24);
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.45rem, 10vw, 3.8rem);
  }

  .hero-product-card {
    min-height: auto;
    padding: 22px 22px 30px;
  }

  .floating-panel {
    position: relative;
    inset: auto;
    margin-top: 16px;
  }

  .brand-band,
  .feature-grid,
  .industry-grid,
  .hardware-grid,
  .process-grid,
  .payment-grid,
  .terminal-picker-list,
  .contact-details,
  .form-grid,
  .footer-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .contact-detail-card-wide,
  .form-field-wide {
    grid-column: auto;
  }

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

  .showcase-card img {
    aspect-ratio: 4 / 3;
  }

  .terminal-picker-image {
    aspect-ratio: 16 / 10;
    max-height: 170px;
  }

  .terminal-picker-image-product {
    padding: 10px;
  }

  .cta-section,
  .simple-page,
  .pricing-shell {
    padding: 28px;
  }

  .hero-micro-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 16px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .footer-bottom-bar,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 18px, 1220px);
  }

  .brand-logo,
  .footer-logo {
    width: 132px;
  }

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

  .content-section {
    padding-top: 62px;
  }

  .hero-text,
  .section-heading p,
  .feature-card p,
  .showcase-copy p,
  .industry-card p,
  .hardware-card p,
  .process-step p,
  .cta-section p,
  .simple-page p,
  .footer-copy {
    line-height: 1.62;
  }

  .feature-card,
  .industry-card,
  .hardware-card,
  .process-step {
    padding: 22px;
  }

  .cta-section {
    margin-top: 62px;
    padding: 24px;
  }
}
