:root {
  --ink: #0a0a0a;
  --ink-soft: #53616b;
  --green-950: #022b49;
  --green-900: #034e80;
  --green-800: #0867a3;
  --green-700: #0b78ba;
  --teal: #2e8bc4;
  --mint: #eaf4fa;
  --mint-soft: #eef6fb;
  --gold: #0867a3;
  --gold-deep: #034e80;
  --paper: #ffffff;
  --line: #cfe2ef;
  --white: #fff;
  --shadow: 0 24px 64px rgba(2, 43, 73, 0.14);
  --shadow-soft: 0 16px 40px rgba(3, 78, 128, 0.09);
  --radius: 22px;
  --shell: min(1280px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Inter", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
a {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  border-radius: 8px;
  background: var(--green-900);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell,
.nav-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.eyebrow--light {
  color: #7be2cf;
}

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

.section-heading h2,
.platform-copy h2,
.pos-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.1vw, 62px);
  font-weight: 760;
  line-height: 1.13;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.section-heading--split > p,
.platform-copy > p,
.pos-copy > p,
.faq-intro > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.section-heading--split > p {
  max-width: 470px;
  margin: 0 0 8px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.nav-contact:focus-visible,
.text-link:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid rgba(245, 168, 28, 0.6);
  outline-offset: 4px;
}

.button span {
  color: inherit;
  opacity: 0.68;
  font-size: 11px;
  font-weight: 650;
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 8px;
  font-size: 13px;
}

.button--gold {
  color: #221700;
  background: linear-gradient(135deg, #ffc13d, var(--gold));
  box-shadow: 0 12px 30px rgba(245, 168, 28, 0.24);
}

.button--gold:hover {
  box-shadow: 0 17px 34px rgba(245, 168, 28, 0.34);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.12);
}

.button--dark {
  color: #fff;
  background: var(--green-900);
  box-shadow: 0 14px 30px rgba(3, 47, 46, 0.2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(3, 35, 32, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  min-height: 82px;
  grid-template-columns: 126px 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  position: relative;
  display: block;
  width: 116px;
  height: 52px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.brand-logo--colour {
  opacity: 0;
}

.is-scrolled .brand-logo--white,
.nav-open .brand-logo--white {
  opacity: 0;
}

.is-scrolled .brand-logo--colour,
.nav-open .brand-logo--colour {
  opacity: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.main-nav a,
.nav-contact {
  position: relative;
  text-decoration: none;
  font-size: 12px;
  font-weight: 680;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-contact {
  font-size: 13px;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  padding: 152px 0 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(2, 38, 37, 0.98) 0%, rgba(1, 69, 65, 0.96) 58%, rgba(0, 126, 116, 0.94) 100%);
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -210px;
  width: 720px;
  height: 720px;
  content: "";
  border: 1px solid rgba(247, 180, 48, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.018),
    0 0 0 200px rgba(255, 255, 255, 0.014);
}

.hero::after {
  position: absolute;
  top: 82px;
  left: -9vw;
  width: 48vw;
  height: 560px;
  content: "";
  opacity: 0.62;
  background: linear-gradient(135deg, transparent 49.6%, rgba(107, 229, 208, 0.1) 50%);
  transform: rotate(-7deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow--one {
  top: 32%;
  left: 41%;
  width: 220px;
  height: 220px;
  background: rgba(28, 182, 158, 0.17);
}

.hero-glow--two {
  right: -120px;
  bottom: 160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(245, 168, 28, 0.32);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 670px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 50px;
}

.hero-copy {
  max-width: 580px;
  padding-bottom: 44px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(47px, 4.6vw, 70px);
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  color: #7be2cf;
}

.hero-subtitle {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-intro {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.75;
}

.hero-intro--en {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

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

.hero-phone {
  display: inline-flex;
  margin-top: 29px;
  align-items: flex-end;
  gap: 16px;
  text-decoration: none;
}

.hero-phone small {
  display: block;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.hero-phone strong {
  color: #fff;
  font-size: 23px;
  letter-spacing: 0.045em;
}

.hero-visual {
  position: relative;
  height: 620px;
}

.laptop {
  position: absolute;
  z-index: 2;
  top: 84px;
  right: -82px;
  width: 720px;
  filter: drop-shadow(0 32px 35px rgba(0, 24, 22, 0.36));
}

.laptop-frame {
  position: relative;
  height: 430px;
  padding: 13px;
  border: 2px solid #7d8986;
  border-radius: 19px 19px 7px 7px;
  background: #14201f;
}

.laptop-frame::before {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: #020908;
}

.laptop-base {
  width: calc(100% + 70px);
  height: 19px;
  margin-left: -35px;
  border-radius: 2px 2px 55% 55%;
  background: linear-gradient(180deg, #e0e6e3, #8b9693 64%, #d7dfdc);
}

.dashboard {
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--ink);
  border-radius: 8px 8px 2px 2px;
  background: #f1f5f2;
  grid-template-columns: 94px 1fr;
}

.dash-sidebar {
  padding: 17px 11px;
  background: #fff;
}

.dash-sidebar img {
  display: block;
  width: 70px;
  height: 40px;
  margin: 0 auto 27px;
  object-fit: contain;
}

.dash-nav {
  display: block;
  margin: 5px 0;
  padding: 9px 8px;
  color: #88938f;
  border-radius: 6px;
  font-size: 8px;
}

.dash-nav::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 2px;
}

.dash-nav.is-active {
  color: var(--green-800);
  background: #e7f5ef;
  font-weight: 800;
}

.dash-main {
  min-width: 0;
  padding: 18px;
}

.dash-top,
.dash-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-top > div,
.dash-panel-title {
  flex-direction: column;
  align-items: flex-start;
}

.dash-top small,
.dash-panel-title span {
  color: #89938f;
  font-size: 7px;
}

.dash-top strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.dash-top > span {
  padding: 4px 7px;
  color: #70807b;
  border-radius: 10px;
  background: #e7ece9;
  font-size: 6px;
}

.dash-metrics {
  display: grid;
  margin-top: 16px;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 9px;
}

.dash-metric {
  min-height: 74px;
  padding: 12px;
  border: 1px solid #e1e7e3;
  border-radius: 9px;
  background: #fff;
}

.dash-metric small,
.dash-metric span {
  display: block;
  color: #83908b;
  font-size: 7px;
}

.dash-metric strong {
  display: block;
  margin: 7px 0 5px;
  font-size: 14px;
}

.dash-metric span {
  color: var(--green-700);
}

.dash-metric--lead {
  color: #fff;
  border-color: var(--green-800);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

.dash-metric--lead small,
.dash-metric--lead span {
  color: rgba(255, 255, 255, 0.65);
}

.dash-panels {
  display: grid;
  margin-top: 9px;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 9px;
}

.dash-chart,
.dash-channel {
  min-height: 230px;
  padding: 13px;
  border: 1px solid #e1e7e3;
  border-radius: 9px;
  background: #fff;
}

.dash-panel-title strong {
  margin-top: 3px;
  font-size: 9px;
}

.chart-area {
  display: flex;
  height: 155px;
  margin-top: 25px;
  padding: 0 8px;
  align-items: end;
  gap: 11px;
  border-bottom: 1px solid #dfe5e1;
  background: repeating-linear-gradient(to bottom, transparent 0 35px, #eff2f0 36px);
}

.chart-area i {
  width: 100%;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #f8c452, #ed9317);
}

.channel {
  margin-top: 25px;
}

.channel b {
  display: block;
  margin-bottom: 5px;
  color: #74807c;
  font-size: 7px;
}

.channel > span {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 5px;
  background: #e7ece9;
}

.channel i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}

.login-card,
.floating-card {
  position: absolute;
  z-index: 4;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.login-card {
  top: 20px;
  left: -24px;
  width: 232px;
  padding: 22px;
  border-radius: 16px;
}

.login-card img {
  display: block;
  width: 90px;
  height: 48px;
  margin: auto;
  object-fit: contain;
}

.login-card > p {
  margin: -2px 0 18px;
  color: #77817e;
  text-align: center;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.login-card label {
  display: block;
  margin: 10px 0;
  color: #68736f;
  font-size: 8px;
}

.login-card input {
  width: 100%;
  height: 34px;
  margin-top: 5px;
  padding: 0 10px;
  color: #5a6461;
  border: 1px solid #dfe4e1;
  border-radius: 4px;
  background: #fff;
  font-size: 8px;
}

.login-card button {
  width: 100%;
  height: 36px;
  margin-top: 5px;
  color: #251800;
  border: 0;
  border-radius: 5px;
  background: var(--gold);
  font-size: 9px;
  font-weight: 800;
}

.login-card > small {
  display: block;
  margin-top: 8px;
  color: #9aa39f;
  text-align: center;
  font-size: 6px;
}

.floating-card {
  width: 224px;
  padding: 17px 18px;
  border-radius: 14px;
}

.floating-card > small {
  color: #8b9591;
  font-size: 7px;
}

.floating-card > strong {
  display: block;
  margin: 3px 0 10px;
  font-size: 11px;
}

.floating-card > div {
  display: flex;
  padding: 8px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #edf0ee;
  font-size: 7px;
}

.floating-card > div b {
  color: var(--green-700);
}

.floating-card p {
  margin: 0;
  color: #7f8985;
  font-size: 8px;
  line-height: 1.5;
}

.floating-card--payment {
  right: -18px;
  bottom: 88px;
}

.floating-card--settlement {
  right: 142px;
  bottom: 0;
}

.benefit-strip {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 148px;
  padding: 24px 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.benefit-strip article {
  display: flex;
  padding: 20px 30px;
  align-items: center;
  gap: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit-strip article:first-child {
  padding-left: 0;
}

.benefit-strip article:last-child {
  border-right: 0;
}

.benefit-strip article > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
}

.benefit-strip strong,
.benefit-strip small {
  display: block;
}

.benefit-strip strong {
  font-size: 16px;
}

.benefit-strip small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

/* Payment methods */
.section--mint {
  background:
    radial-gradient(circle at 90% 0, rgba(39, 173, 148, 0.11), transparent 25%),
    var(--mint-soft);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.payment-methods-grid article {
  display: flex;
  min-height: 118px;
  padding: 25px;
  align-items: center;
  gap: 18px;
  border: 1px solid #dbe8e1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.payment-methods-grid article:hover {
  border-color: #b8d9cc;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.method-mark {
  display: grid;
  width: 56px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: #153e8b;
  border-radius: 9px;
  background: #edf1ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.method-mark--dark {
  color: #fff;
  background: #252a33;
}

.method-mark--red {
  color: #fff;
  background: #c44339;
}

.method-mark--blue {
  color: #fff;
  background: #1757a6;
}

.method-mark--cyan {
  color: #fff;
  background: #198bd5;
}

.method-mark--green {
  color: #fff;
  background: #1fa45d;
}

.payment-methods-grid strong,
.payment-methods-grid small {
  display: block;
}

.payment-methods-grid strong {
  font-size: 17px;
}

.payment-methods-grid small {
  margin-top: 6px;
  color: #7e8b86;
  font-size: 11px;
}

/* Services */
.services-section {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 386px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

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

.service-card--featured {
  color: #fff;
  border-color: var(--green-900);
  background:
    radial-gradient(circle at 85% 10%, rgba(35, 192, 166, 0.25), transparent 36%),
    var(--green-900);
}

.service-card--featured h3,
.service-card--featured a {
  color: #fff;
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.68);
}

.card-index {
  position: absolute;
  top: 31px;
  right: 34px;
  color: #a4b0ac;
  font-size: 11px;
  font-weight: 800;
}

.service-card--featured .card-index {
  color: rgba(255, 255, 255, 0.45);
}

.service-symbol {
  display: flex;
  width: 80px;
  height: 70px;
  margin-bottom: 58px;
  padding: 17px;
  align-items: end;
  justify-content: center;
  gap: 5px;
  border-radius: 16px;
  background: #eef6f1;
}

.service-symbol i {
  display: block;
  width: 10px;
  height: 30px;
  border-radius: 3px;
  background: var(--green-700);
}

.service-symbol i:nth-child(1) {
  height: 17px;
}

.service-symbol i:nth-child(3) {
  height: 24px;
}

.service-card--featured .service-symbol {
  background: rgba(255, 255, 255, 0.1);
}

.service-card--featured .service-symbol i {
  background: var(--gold);
}

.service-symbol--bars {
  align-items: center;
}

.service-symbol--bars i {
  width: 39px;
  height: 7px;
}

.service-symbol--bars i:nth-child(1) {
  width: 25px;
  height: 7px;
}

.service-symbol--bars i:nth-child(3) {
  width: 32px;
  height: 7px;
}

.service-symbol--ledger {
  flex-direction: column;
  align-items: stretch;
}

.service-symbol--ledger i,
.service-symbol--ledger i:nth-child(1),
.service-symbol--ledger i:nth-child(3) {
  width: 100%;
  height: 5px;
}

.service-symbol--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.service-symbol--grid i,
.service-symbol--grid i:nth-child(1),
.service-symbol--grid i:nth-child(3) {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.25;
}

.service-card h3 small {
  color: inherit;
  font-size: 15px;
  font-weight: 650;
  opacity: 0.54;
}

.service-card p {
  max-width: 460px;
  margin: 19px 0 30px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.service-card a {
  position: absolute;
  bottom: 39px;
  left: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-800);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.service-card a span {
  transition: transform 180ms ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.service-card--featured h3,
.service-card--featured a {
  color: #fff;
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.7);
}

/* Platform */
.platform-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 30%, rgba(15, 155, 139, 0.28), transparent 30%),
    linear-gradient(145deg, #032e2d, #064b47);
}

.platform-section::after {
  position: absolute;
  right: -220px;
  bottom: -350px;
  width: 720px;
  height: 720px;
  content: "";
  border: 1px solid rgba(245, 168, 28, 0.22);
  border-radius: 50%;
}

.platform-showcase {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 55px;
}

.platform-copy {
  position: relative;
  z-index: 2;
}

.platform-copy h2 {
  color: #fff;
  font-size: clamp(38px, 4vw, 57px);
}

.platform-copy > p {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.feature-list {
  display: grid;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  gap: 23px 18px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-list li > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 850;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  font-size: 14px;
}

.feature-list small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.platform-dashboard {
  position: relative;
  z-index: 2;
  padding: 31px 0 31px 30px;
}

.platform-dashboard::before {
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  left: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px 0 0 30px;
  background: rgba(255, 255, 255, 0.055);
}

.platform-window {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border: 8px solid #d6dcd9;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 35px 70px rgba(0, 21, 19, 0.35);
}

.window-top {
  display: flex;
  height: 45px;
  padding: 0 18px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e7ece9;
  background: #fff;
}

.window-top img {
  width: 61px;
  height: 32px;
  object-fit: contain;
}

.window-top > span {
  margin-right: auto;
  color: #87918d;
  font-size: 8px;
}

.window-top > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d5dcd8;
}

.window-body {
  display: grid;
  min-height: 465px;
  grid-template-columns: 92px 1fr;
}

.window-body aside {
  display: flex;
  padding: 25px 14px;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid #e7ece9;
  background: #fbfcfb;
}

.window-body aside span,
.window-body aside b {
  padding: 10px;
  color: #88928e;
  border-radius: 5px;
  font-size: 7px;
}

.window-body aside b {
  color: var(--green-800);
  background: #e7f4ef;
}

.window-content {
  padding: 24px;
  background: #f2f6f3;
}

.window-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-title small,
.window-title strong {
  display: block;
}

.window-title small {
  color: #89938f;
  font-size: 7px;
}

.window-title strong {
  margin-top: 3px;
  font-size: 13px;
}

.window-title > b {
  color: #79847f;
  font-size: 7px;
}

.window-metrics {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.window-metrics article {
  padding: 13px;
  border: 1px solid #e1e7e3;
  border-radius: 8px;
  background: #fff;
}

.window-metrics article:first-child {
  color: #fff;
  border-color: var(--green-800);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
}

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

.window-metrics span,
.window-metrics small {
  color: #82908a;
  font-size: 6px;
}

.window-metrics article:first-child span,
.window-metrics article:first-child small {
  color: rgba(255, 255, 255, 0.65);
}

.window-metrics strong {
  margin: 7px 0 5px;
  font-size: 13px;
}

.window-charts {
  display: grid;
  margin-top: 9px;
  grid-template-columns: 1.55fr 0.7fr;
  gap: 9px;
}

.window-charts article {
  min-height: 190px;
  padding: 14px;
  border: 1px solid #e1e7e3;
  border-radius: 8px;
  background: #fff;
}

.window-charts article > span {
  color: #6e7975;
  font-size: 7px;
  font-weight: 750;
}

.area-lines {
  display: flex;
  height: 123px;
  margin-top: 18px;
  align-items: end;
  gap: 8px;
  border-bottom: 1px solid #dfe5e1;
  background: repeating-linear-gradient(to bottom, transparent 0 28px, #eff2f0 29px);
}

.area-lines i {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #f8c75d, var(--gold-deep));
}

.area-lines i:nth-child(1) { height: 28%; }
.area-lines i:nth-child(2) { height: 47%; }
.area-lines i:nth-child(3) { height: 38%; }
.area-lines i:nth-child(4) { height: 69%; }
.area-lines i:nth-child(5) { height: 57%; }
.area-lines i:nth-child(6) { height: 82%; }
.area-lines i:nth-child(7) { height: 74%; }

.donut-panel {
  text-align: center;
}

.donut {
  width: 87px;
  height: 87px;
  margin: 24px auto 11px;
  border: 17px solid var(--gold);
  border-right-color: var(--green-700);
  border-bottom-color: #6dd0ba;
  border-radius: 50%;
  transform: rotate(31deg);
}

.donut-panel small {
  color: #929b98;
  font-size: 6px;
}

.record-list {
  display: grid;
  margin-top: 9px;
  padding: 12px 14px;
  align-items: center;
  grid-template-columns: 1.4fr 0.7fr 1fr auto;
  border: 1px solid #e1e7e3;
  border-radius: 8px;
  background: #fff;
  font-size: 7px;
  font-style: normal;
}

.record-list b,
.record-list small {
  color: #7d8985;
}

.record-list em {
  color: var(--green-700);
  font-style: normal;
  font-weight: 800;
}

.platform-mini-cards {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 78px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.platform-mini-cards article {
  min-height: 140px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
}

.platform-mini-cards span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 850;
}

.platform-mini-cards strong {
  display: block;
  margin-top: 17px;
  font-size: 16px;
}

.platform-mini-cards p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

/* POS */
.pos-intro {
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 76%, rgba(245, 168, 28, 0.11), transparent 25%),
    #f7f6f1;
}

.pos-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.pos-visual {
  position: relative;
  min-height: 630px;
}

.pos-orbit {
  position: absolute;
  top: 60px;
  left: 20px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(3, 84, 79, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(16, 133, 119, 0.035),
    0 0 0 150px rgba(16, 133, 119, 0.025);
}

.pos-device {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 142px;
  width: 300px;
  min-height: 540px;
  padding: 20px 18px 25px;
  border: 1px solid #ced6d2;
  border-radius: 38px;
  background: linear-gradient(145deg, #fdfefd, #dce3df);
  box-shadow: 0 38px 70px rgba(20, 45, 40, 0.22);
  transform: rotate(7deg);
}

.pos-speaker {
  width: 38px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 5px;
  background: #acb6b2;
}

.pos-screen {
  min-height: 385px;
  padding: 33px 23px 25px;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e5eae7;
}

.pos-screen img {
  width: 96px;
  height: 52px;
  object-fit: contain;
}

.pos-screen > span {
  display: block;
  margin-top: 30px;
  color: #78847f;
  font-size: 11px;
}

.pos-screen > strong {
  display: block;
  margin-top: 8px;
  font-size: 32px;
}

.pos-pay-row {
  display: flex;
  margin: 32px 0 24px;
  justify-content: center;
  gap: 9px;
}

.pos-pay-row i {
  display: grid;
  width: 45px;
  height: 38px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--green-800);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.pos-pay-row i:nth-child(2) {
  background: var(--gold-deep);
}

.pos-pay-row i:nth-child(3) {
  color: var(--green-900);
  background: #9ce4d3;
}

.pos-screen button {
  width: 100%;
  height: 46px;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: var(--green-900);
  font-size: 12px;
  font-weight: 800;
}

.pos-key {
  display: flex;
  margin-top: 32px;
  justify-content: center;
  gap: 17px;
}

.pos-key span {
  width: 34px;
  height: 23px;
  border-radius: 5px;
  background: #c1cac6;
}

.pos-status-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 86px;
  min-width: 220px;
  padding: 20px 23px;
  border: 1px solid #e0e5e2;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.pos-status-card span {
  color: #85908b;
  font-size: 9px;
}

.pos-status-card strong {
  margin-top: 7px;
  font-size: 13px;
}

.pos-copy h2 {
  font-size: clamp(40px, 4.3vw, 60px);
}

.pos-copy .pos-subtitle {
  margin: 20px 0 27px;
  color: var(--green-800);
  font-size: 17px;
  font-weight: 700;
}

.pos-copy > p:not(.eyebrow):not(.pos-subtitle) {
  max-width: 600px;
}

.pos-feature-list {
  display: grid;
  margin: 34px 0 39px;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  gap: 16px 25px;
}

.pos-feature-list li {
  position: relative;
  padding-left: 23px;
  color: #32423e;
  font-size: 14px;
}

.pos-feature-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid var(--gold-deep);
  border-radius: 50%;
}

.inline-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Comparison */
.comparison-section {
  background: #fffefa;
}

.table-scroll {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.comparison-table {
  width: 100%;
  min-width: 890px;
  overflow: hidden;
  color: #36423f;
  border: 1px solid #e2a549;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 24px;
  background: #fff;
}

.label-col {
  width: 30%;
}

.easypay-col,
.traditional-col {
  width: 35%;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 25px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #edc992;
  border-bottom: 1px solid #edc992;
}

.comparison-table tr > *:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  height: 112px;
  background: #fffdfa;
  font-size: 18px;
}

.comparison-table th span,
.comparison-table th small,
.comparison-table td strong,
.comparison-table td > small {
  display: block;
}

.comparison-table th small,
.comparison-table td small {
  margin-top: 4px;
  color: #77817e;
  font-size: 11px;
  font-weight: 550;
}

.easypay-head {
  position: relative;
  background: #f6fbf7 !important;
  box-shadow: inset 3px 0 0 rgba(0, 118, 107, 0.08), inset -3px 0 0 rgba(0, 118, 107, 0.08);
}

.easypay-head img {
  display: block;
  width: 135px;
  height: 65px;
  margin: auto;
  object-fit: contain;
}

.recommended {
  position: absolute;
  top: 9px;
  left: 50%;
  padding: 4px 8px;
  color: var(--green-800);
  border-radius: 10px;
  background: #dff2ea;
  font-size: 8px !important;
  transform: translateX(-50%);
}

.table-group th {
  padding-block: 11px;
  color: #fff;
  border-right: 0;
  background: linear-gradient(90deg, #dd741c, #f1a324);
  font-size: 17px;
  letter-spacing: 0.01em;
}

.table-group th small {
  display: inline;
  margin-left: 7px;
  color: rgba(255, 255, 255, 0.78);
}

.comparison-table tbody th {
  font-size: 15px;
  font-weight: 650;
}

.comparison-table tbody td {
  min-height: 62px;
  font-size: 14px;
}

.easypay-cell {
  color: #9f531c;
  background: #fcfffd;
  box-shadow: inset 3px 0 0 rgba(0, 118, 107, 0.08), inset -3px 0 0 rgba(0, 118, 107, 0.08);
}

.easypay-cell strong {
  color: #a5551a;
  font-weight: 800;
}

.table-methods {
  display: grid;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.table-methods li {
  position: relative;
  padding-left: 13px;
  font-weight: 700;
}

.table-methods li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--gold-deep);
}

.table-methods small {
  display: block;
  margin-top: 3px;
  color: #8b9290;
  font-weight: 500;
}

.rate strong {
  font-size: 19px;
}

.table-notes {
  display: grid;
  margin-top: 30px;
  grid-template-columns: 1fr auto;
  gap: 40px;
  color: #5f6b67;
  font-size: 11px;
  line-height: 1.65;
}

.table-notes p {
  margin: 0;
}

.table-notes p:last-child {
  text-align: right;
}

.table-notes span {
  color: #89928f;
}

/* Solutions */
.solutions-section {
  background:
    linear-gradient(180deg, rgba(231, 244, 238, 0.82), rgba(244, 248, 245, 0.9));
}

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

.industry-card {
  position: relative;
  min-height: 415px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid #d9e5df;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.industry-art {
  position: relative;
  height: 212px;
  margin: -25px -25px 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #063e3b, #078779);
}

.industry-art::before,
.industry-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.industry-art::before {
  top: -60px;
  right: -35px;
  width: 190px;
  height: 190px;
}

.industry-art::after {
  right: 20px;
  bottom: -75px;
  width: 160px;
  height: 160px;
  border-color: rgba(245, 168, 28, 0.38);
}

.industry-art span,
.industry-art i,
.industry-art b {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.92);
}

.industry-card--food .industry-art span {
  bottom: 42px;
  left: 74px;
  width: 120px;
  height: 60px;
  border-radius: 0 0 60px 60px;
}

.industry-card--food .industry-art i {
  bottom: 95px;
  left: 87px;
  width: 94px;
  height: 6px;
  border-radius: 6px;
}

.industry-card--food .industry-art b {
  bottom: 113px;
  left: 118px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.industry-card--retail .industry-art span {
  bottom: 39px;
  left: 82px;
  width: 104px;
  height: 104px;
  border-radius: 13px;
}

.industry-card--retail .industry-art i {
  bottom: 128px;
  left: 106px;
  width: 56px;
  height: 40px;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
  background: transparent;
}

.industry-card--retail .industry-art b {
  bottom: 80px;
  left: 112px;
  width: 44px;
  height: 7px;
  border-radius: 6px;
  background: var(--gold);
}

.industry-card--professional .industry-art span {
  bottom: 42px;
  left: 68px;
  width: 132px;
  height: 92px;
  border-radius: 9px;
}

.industry-card--professional .industry-art i {
  bottom: 132px;
  left: 109px;
  width: 50px;
  height: 23px;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: transparent;
}

.industry-card--professional .industry-art b {
  bottom: 82px;
  left: 68px;
  width: 132px;
  height: 7px;
  background: var(--gold);
}

.industry-card--online .industry-art span {
  bottom: 47px;
  left: 60px;
  width: 150px;
  height: 100px;
  border-radius: 10px;
}

.industry-card--online .industry-art i {
  bottom: 61px;
  left: 73px;
  width: 124px;
  height: 70px;
  border-radius: 5px;
  background: #c7e8df;
}

.industry-card--online .industry-art b {
  bottom: 48px;
  left: 47px;
  width: 176px;
  height: 8px;
  border-radius: 0 0 50% 50%;
  background: #fff;
}

.industry-number {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 850;
}

.industry-card h3 {
  margin: 15px 0 12px;
  font-size: 21px;
}

.industry-card h3 small {
  display: block;
  margin-top: 5px;
  color: #78847f;
  font-size: 11px;
  font-weight: 600;
}

.industry-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

/* Application */
.application-section {
  background: #fff;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}

.process-grid::before {
  position: absolute;
  top: 34px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: #d5dfda;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-step > span {
  display: grid;
  width: 69px;
  height: 69px;
  margin: 0 auto 28px;
  place-items: center;
  color: #fff;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--green-900);
  box-shadow: 0 0 0 1px #cbd8d2;
  font-size: 11px;
  font-weight: 850;
}

.process-step:nth-child(4) > span {
  color: #281900;
  background: var(--gold);
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.process-step p {
  max-width: 220px;
  margin: auto;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.center-action {
  margin-top: 48px;
  text-align: center;
}

/* Why */
.why-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(2, 35, 34, 0.96), rgba(3, 79, 73, 0.97)),
    var(--green-950);
}

.why-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  content: "";
  opacity: 0.5;
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(255, 255, 255, 0.06) 50%),
    radial-gradient(circle at 70% 30%, rgba(32, 185, 157, 0.19), transparent 40%);
}

.section-heading--light {
  position: relative;
  z-index: 2;
}

.section-heading--light h2 {
  color: #fff;
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.why-grid article {
  min-height: 260px;
  padding: 40px 31px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.why-grid article:first-child {
  padding-left: 0;
}

.why-grid article:last-child {
  border-right: 0;
}

.why-grid span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
}

.why-grid h3 {
  margin: 47px 0 15px;
  font-size: 21px;
}

.why-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.75;
}

/* FAQ */
.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(42px, 4.6vw, 64px);
}

.faq-intro > p {
  max-width: 400px;
  margin: 25px 0 30px;
}

.faq-list {
  border-top: 1px solid #ccd8d2;
}

.faq-item {
  border-bottom: 1px solid #ccd8d2;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 85px;
  padding: 24px 4px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 16px;
  font-weight: 720;
  cursor: pointer;
}

.faq-question i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin-left: 20px;
  border: 1px solid #b8c6c0;
  border-radius: 50%;
}

.faq-question i::before,
.faq-question i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--green-800);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 45px 26px 4px;
}

/* CTA & Footer */
.final-cta {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(115deg, #05665f, #008f82);
}

.final-cta::before {
  position: absolute;
  top: -230px;
  right: -90px;
  width: 590px;
  height: 590px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.025);
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: end;
  gap: 80px;
}

.final-cta h2 {
  color: #fff;
}

.cta-contact p {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
}

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

.site-footer {
  color: #fff;
  background: #022b2a;
}

.footer-grid {
  display: grid;
  padding: 74px 0 28px;
  grid-template-columns: 1.55fr repeat(3, 0.7fr);
  gap: 55px;
}

.footer-brand img {
  display: block;
  width: 142px;
  height: 68px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 270px;
  margin: 9px 0 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.footer-brand > a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.6;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer-bottom address {
  width: 100%;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .nav-shell {
    gap: 20px;
  }

  .main-nav {
    gap: 16px;
  }

  .nav-contact {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
  }

  .laptop {
    right: -170px;
  }

  .login-card {
    left: -6px;
  }

  .floating-card--payment {
    right: -35px;
  }
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 48px, 920px);
  }

  .section {
    padding: 92px 0;
  }

  .nav-shell {
    min-height: 74px;
    grid-template-columns: 112px 1fr auto;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 135px;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 80px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero-visual {
    width: min(100%, 820px);
    height: 600px;
    margin: 0 auto;
  }

  .laptop {
    right: -25px;
  }

  .benefit-strip article {
    padding-inline: 18px;
  }

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

  .platform-copy {
    max-width: 760px;
  }

  .platform-dashboard {
    padding-left: 0;
  }

  .platform-mini-cards {
    margin-top: 30px;
  }

  .pos-grid {
    gap: 45px;
  }

  .pos-device {
    left: 60px;
  }

  .pos-status-card {
    right: -15px;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-layout {
    gap: 55px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading,
  .section-heading--split {
    display: block;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .platform-copy h2,
  .pos-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .section-heading--split > p {
    margin-top: 20px;
  }

  .nav-shell {
    position: relative;
    display: flex;
    min-height: 72px;
    justify-content: space-between;
  }

  .brand {
    width: 105px;
    height: 48px;
  }

  .nav-toggle {
    z-index: 3;
    display: block;
    order: 3;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .button {
    display: none;
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 22px;
    overflow: hidden;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 20px 34px rgba(3, 35, 32, 0.09);
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .nav-open .main-nav {
    max-height: 520px;
    padding-block: 12px 22px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid #e8ece9;
    font-size: 14px;
  }

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

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 118px;
  }

  .hero::before {
    width: 450px;
    height: 450px;
  }

  .hero-grid {
    padding-bottom: 55px;
  }

  .hero-copy h1 {
    font-size: clamp(41px, 11vw, 58px);
  }

  .hero-visual {
    height: auto;
    padding-top: 25px;
  }

  .laptop,
  .login-card,
  .floating-card {
    position: relative;
    inset: auto;
  }

  .laptop {
    width: 100%;
  }

  .laptop-frame {
    height: auto;
    aspect-ratio: 1.66 / 1;
  }

  .dashboard {
    grid-template-columns: 70px 1fr;
  }

  .dash-sidebar {
    padding: 10px 7px;
  }

  .dash-sidebar img {
    width: 50px;
    height: 28px;
    margin-bottom: 10px;
  }

  .dash-nav {
    padding: 6px 4px;
    font-size: 5px;
  }

  .dash-main {
    padding: 9px;
  }

  .dash-metrics {
    margin-top: 8px;
    gap: 4px;
  }

  .dash-metric {
    min-height: 48px;
    padding: 6px;
  }

  .dash-metric strong {
    margin-block: 3px;
    font-size: 8px;
  }

  .dash-panels {
    gap: 4px;
  }

  .dash-chart,
  .dash-channel {
    min-height: 130px;
    padding: 7px;
  }

  .chart-area {
    height: 88px;
    margin-top: 10px;
    gap: 5px;
  }

  .channel {
    margin-top: 11px;
  }

  .login-card {
    width: min(100%, 360px);
    margin: -38px 0 0 18px;
  }

  .floating-card {
    width: min(100%, 310px);
  }

  .floating-card--payment {
    margin: -55px 0 0 auto;
  }

  .floating-card--settlement {
    margin: 12px 0 0 30px;
  }

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

  .benefit-strip article {
    padding: 22px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .benefit-strip article:nth-child(2) {
    border-right: 0;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    min-height: 350px;
    padding: 32px;
  }

  .service-symbol {
    margin-bottom: 44px;
  }

  .service-card a {
    bottom: 31px;
    left: 32px;
  }

  .platform-mini-cards {
    grid-template-columns: 1fr;
  }

  .pos-grid {
    grid-template-columns: 1fr;
  }

  .pos-visual {
    order: 2;
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .pos-copy {
    order: 1;
  }

  .pos-feature-list {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .process-grid::before {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid article:nth-child(2) {
    border-right: 0;
  }

  .why-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .why-grid article:first-child,
  .why-grid article {
    padding: 32px 25px;
  }

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

  .faq-intro {
    position: relative;
    top: auto;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  :root {
    --shell: calc(100% - 30px);
    --radius: 17px;
  }

  .section {
    padding: 66px 0;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .section-heading h2,
  .platform-copy h2,
  .pos-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .section-heading--split > p,
  .platform-copy > p,
  .pos-copy > p,
  .faq-intro > p {
    font-size: 15px;
  }

  .hero {
    padding-top: 105px;
  }

  .hero-copy h1 {
    font-size: 41px;
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-phone {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .laptop-frame {
    padding: 7px;
    border-radius: 12px 12px 4px 4px;
  }

  .dashboard {
    grid-template-columns: 45px 1fr;
  }

  .dash-sidebar {
    padding: 7px 3px;
  }

  .dash-sidebar img {
    width: 37px;
    height: 20px;
  }

  .dash-nav {
    font-size: 0;
  }

  .dash-nav::before {
    display: block;
    width: 6px;
    height: 6px;
    margin: auto;
  }

  .dash-top strong {
    font-size: 8px;
  }

  .dash-top > span {
    display: none;
  }

  .dash-metric:nth-child(3) {
    display: none;
  }

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

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

  .dash-channel {
    display: none;
  }

  .dash-chart {
    min-height: 112px;
  }

  .chart-area {
    height: 70px;
  }

  .login-card {
    margin-top: -24px;
    margin-left: 6px;
    transform: scale(0.9);
    transform-origin: top left;
  }

  .floating-card--payment {
    margin-top: -47px;
  }

  .floating-card--settlement {
    margin-left: 0;
  }

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

  .benefit-strip article,
  .benefit-strip article:first-child {
    padding-inline: 0;
    border-right: 0;
  }

  .payment-methods-grid,
  .service-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods-grid article {
    min-height: 96px;
  }

  .service-card {
    min-height: 350px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .platform-dashboard {
    width: calc(100% + 15px);
  }

  .window-body {
    min-height: 330px;
    grid-template-columns: 48px 1fr;
  }

  .window-body aside {
    padding: 12px 5px;
  }

  .window-body aside span,
  .window-body aside b {
    padding: 6px 3px;
    font-size: 5px;
  }

  .window-content {
    padding: 11px;
  }

  .window-metrics article {
    padding: 7px;
  }

  .window-metrics article:nth-child(3) {
    display: none;
  }

  .window-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .window-charts {
    grid-template-columns: 1fr;
  }

  .window-charts article {
    min-height: 130px;
  }

  .area-lines {
    height: 77px;
  }

  .donut-panel,
  .record-list {
    display: none;
  }

  .pos-visual {
    min-height: 530px;
  }

  .pos-orbit {
    top: 65px;
    left: -30px;
    width: 360px;
    height: 360px;
  }

  .pos-device {
    left: 50%;
    width: 250px;
    min-height: 460px;
    padding: 17px 14px;
    transform: translateX(-50%) rotate(5deg);
  }

  .pos-screen {
    min-height: 326px;
    padding: 24px 18px;
  }

  .pos-screen > strong {
    font-size: 27px;
  }

  .pos-status-card {
    right: 0;
    bottom: 26px;
    min-width: 190px;
  }

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

  .inline-actions .button {
    width: 100%;
  }

  .table-scroll {
    margin-right: -15px;
    border-radius: 17px 0 0 17px;
    scrollbar-color: var(--gold) #ece6dc;
    scrollbar-width: thin;
  }

  .comparison-table {
    border-radius: 17px;
  }

  .table-notes {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .table-notes p:last-child {
    text-align: left;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    display: grid;
    text-align: left;
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .process-step > span {
    width: 55px;
    height: 55px;
    margin: 0;
    border-width: 6px;
  }

  .process-step p {
    max-width: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid article,
  .why-grid article:first-child {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .why-grid h3 {
    margin-top: 24px;
  }

  .faq-question {
    min-height: 76px;
    font-size: 14px;
  }

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

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* Product motion — restrained depth for the existing POS and hero layers */
@keyframes pos-device-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(7deg);
  }
  50% {
    transform: translate3d(0, -22px, 0) rotate(5.5deg);
  }
}

@keyframes pos-ring-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.985);
  }
  50% {
    opacity: 1;
    transform: scale(1.055);
  }
}

@keyframes pos-card-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(16px, -18px, 0);
  }
}

@keyframes hero-device-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes hero-card-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(4px, -7px, 0);
  }
}

.pos-device {
  animation: pos-device-float 5.6s ease-in-out infinite;
  will-change: transform;
}

.pos-orbit {
  animation: pos-ring-breathe 5.2s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, opacity;
}

.pos-status-card {
  animation: pos-card-drift 4.6s ease-in-out -1.1s infinite;
  will-change: transform;
}

.laptop {
  animation: hero-device-float 7.4s ease-in-out infinite;
  will-change: transform;
}

.login-card {
  animation: hero-card-drift 6.1s ease-in-out -1.8s infinite;
  will-change: transform;
}

.floating-card--payment {
  animation: hero-card-drift 5.7s ease-in-out -3s infinite reverse;
  will-change: transform;
}

.floating-card--settlement {
  animation: hero-card-drift 6.8s ease-in-out -0.9s infinite;
  will-change: transform;
}

.pos-pay-row i {
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.pos-pay-row i:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 18px rgba(3, 78, 128, 0.2);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .pos-device,
  .pos-orbit,
  .pos-status-card,
  .laptop,
  .login-card,
  .floating-card--payment,
  .floating-card--settlement {
    animation: none !important;
    transform: none;
    will-change: auto;
  }

  .pos-device {
    transform: rotate(7deg);
  }

  .pos-pay-row i {
    transition: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Trilingual language switcher */
.language-switcher {
  display: inline-flex;
  padding: 3px;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
}

.language-switcher button {
  min-width: 30px;
  min-height: 32px;
  padding: 0 7px;
  color: inherit;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.language-switcher button:hover {
  transform: translateY(-1px);
}

.language-switcher button.is-active {
  color: #0867a3;
  background: #fff;
}

.language-switcher button:focus-visible {
  outline: 3px solid #8bc8e9;
  outline-offset: 2px;
}

.site-header.is-scrolled .language-switcher,
.site-header.nav-open .language-switcher {
  border-color: #cfe2ef;
  background: #eef6fb;
}

.site-header.is-scrolled .language-switcher button.is-active,
.site-header.nav-open .language-switcher button.is-active {
  color: #fff;
  background: #0867a3;
}

@media (max-width: 1180px) {
  .nav-actions {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .language-switcher button {
    min-width: 31px;
    min-height: 38px;
  }
}

@media (max-width: 480px) {
  .brand {
    width: 88px;
  }

  .login-card {
    animation: none;
    transform: scale(0.9);
  }

  .language-switcher {
    padding: 2px;
  }

  .language-switcher button {
    min-width: 29px;
    min-height: 40px;
    padding-inline: 5px;
  }
}

/* Blue brand refresh — based on the supplied Easypay business-card palette */
.eyebrow--light,
.hero-copy h1 span {
  color: #a8d7f1;
}

.button:focus-visible,
.main-nav a:focus-visible,
.nav-contact:focus-visible,
.text-link:focus-visible,
.faq-question:focus-visible {
  outline-color: rgba(8, 103, 163, 0.48);
}

.nav-toggle:focus-visible {
  outline: 3px solid #0867a3;
  outline-offset: 3px;
}

.button--gold {
  color: #fff;
  background: linear-gradient(135deg, #0b78ba, #0867a3);
  box-shadow: 0 12px 30px rgba(8, 103, 163, 0.25);
}

.button--gold:hover {
  box-shadow: 0 17px 34px rgba(8, 103, 163, 0.35);
}

.hero .button--gold,
.final-cta .button--gold {
  color: #0867a3;
  background: #fff;
  box-shadow: 0 14px 34px rgba(2, 43, 73, 0.24);
}

.button--dark {
  background: #034e80;
  box-shadow: 0 14px 30px rgba(3, 78, 128, 0.22);
}

.site-header.is-scrolled,
.site-header.nav-open {
  box-shadow: 0 8px 30px rgba(2, 43, 73, 0.09);
}

.hero {
  background:
    linear-gradient(112deg, rgba(2, 43, 73, 0.99) 0%, rgba(3, 78, 128, 0.98) 56%, rgba(8, 103, 163, 0.97) 100%);
}

.hero::before {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 0 0 100px rgba(255, 255, 255, 0.025),
    0 0 0 200px rgba(255, 255, 255, 0.016);
}

.hero::after {
  top: -120px;
  left: 28%;
  width: 23vw;
  height: 1180px;
  opacity: 0.16;
  background: #fff;
  transform: skewX(-20deg) rotate(0);
}

.hero-glow--one {
  background: rgba(46, 139, 196, 0.22);
}

.hero-glow--two {
  border-color: rgba(255, 255, 255, 0.26);
}

.laptop {
  filter: drop-shadow(0 32px 35px rgba(2, 25, 44, 0.4));
}

.laptop-frame {
  border-color: #6c7e8a;
  background: #071b29;
}

.dashboard,
.window-content {
  background: #eef6fb;
}

.dash-nav.is-active,
.window-body aside b {
  color: #0867a3;
  background: #e2f0f8;
}

.dash-top > span,
.recommended {
  color: #0867a3;
  background: #e2f0f8;
}

.dash-metric--lead,
.window-metrics article:first-child {
  border-color: #0867a3;
  background: linear-gradient(135deg, #034e80, #0867a3);
}

.chart-area i,
.area-lines i {
  background: linear-gradient(180deg, #49a6d8, #0867a3);
}

.channel i {
  background: linear-gradient(90deg, #2e8bc4, #034e80);
}

.login-card button {
  color: #fff;
  background: #0867a3;
}

.floating-card > div b,
.dash-metric span,
.record-list em {
  color: #0867a3;
}

.benefit-strip article > span,
.feature-list li > span,
.platform-mini-cards span,
.why-grid span {
  color: #a8d7f1;
}

.section--mint {
  background:
    radial-gradient(circle at 90% 0, rgba(46, 139, 196, 0.13), transparent 25%),
    #eef6fb;
}

.payment-methods-grid article {
  border-color: #cfe2ef;
}

.payment-methods-grid article:hover {
  border-color: #8dbbd7;
}

.method-mark {
  color: #0867a3;
  background: #e5f1f8;
}

.method-mark--dark {
  color: #fff;
  background: #0a0a0a;
}

.method-mark--red,
.method-mark--blue,
.method-mark--cyan,
.method-mark--green {
  color: #fff;
  background: #0867a3;
}

.service-card--featured {
  border-color: #034e80;
  background:
    radial-gradient(circle at 85% 10%, rgba(46, 139, 196, 0.3), transparent 36%),
    #034e80;
}

.service-symbol {
  background: #e5f1f8;
}

.service-card--featured .service-symbol {
  background: rgba(255, 255, 255, 0.12);
}

.service-card--featured .service-symbol i {
  background: #fff;
}

.platform-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(46, 139, 196, 0.3), transparent 30%),
    linear-gradient(145deg, #022b49, #034e80);
}

.platform-section::after {
  border-color: rgba(168, 215, 241, 0.26);
}

.platform-dashboard::before {
  background: rgba(255, 255, 255, 0.07);
}

.platform-window {
  border-color: #dbe7ee;
  box-shadow: 0 35px 70px rgba(2, 25, 44, 0.38);
}

.window-body aside {
  background: #fbfdff;
}

.window-charts article,
.window-metrics article,
.record-list {
  border-color: #d8e6ee;
}

.donut {
  border-color: #0867a3;
  border-right-color: #2e8bc4;
  border-bottom-color: #0a0a0a;
}

.pos-intro {
  background:
    radial-gradient(circle at 11% 76%, rgba(46, 139, 196, 0.12), transparent 25%),
    #f4f8fb;
}

.pos-orbit {
  border-color: rgba(8, 103, 163, 0.2);
  box-shadow:
    0 0 0 75px rgba(46, 139, 196, 0.045),
    0 0 0 150px rgba(46, 139, 196, 0.028);
}

.pos-device {
  border-color: #c7d8e3;
  background: linear-gradient(145deg, #fff, #dce9f1);
  box-shadow: 0 38px 70px rgba(2, 43, 73, 0.22);
}

.pos-pay-row i {
  background: #0867a3;
}

.pos-pay-row i:nth-child(2) {
  background: #034e80;
}

.pos-pay-row i:nth-child(3) {
  color: #fff;
  background: #0a0a0a;
}

.pos-feature-list li::before {
  border-color: #0867a3;
}

.comparison-section {
  background: #fff;
}

.comparison-table {
  border-color: #0867a3;
}

.comparison-table th,
.comparison-table td {
  border-color: #9ec5dc;
}

.easypay-head,
.easypay-cell {
  background: #f4f9fc !important;
  box-shadow:
    inset 3px 0 0 rgba(8, 103, 163, 0.09),
    inset -3px 0 0 rgba(8, 103, 163, 0.09);
}

.table-group th {
  background: linear-gradient(90deg, #034e80, #0867a3);
}

.easypay-cell,
.easypay-cell strong {
  color: #034e80;
}

.table-methods li::before {
  background: #0867a3;
}

.solutions-section {
  background:
    linear-gradient(180deg, rgba(234, 244, 250, 0.9), rgba(244, 248, 251, 0.96));
}

.industry-card {
  border-color: #cfe2ef;
}

.industry-art {
  background: linear-gradient(145deg, #034e80, #0867a3);
}

.industry-art::after {
  border-color: rgba(255, 255, 255, 0.3);
}

.industry-card--retail .industry-art b,
.industry-card--professional .industry-art b {
  background: #0a0a0a;
}

.industry-card--online .industry-art i {
  background: #cfe6f3;
}

.industry-number {
  color: #0867a3;
}

.process-step > span {
  background: #034e80;
}

.process-step:nth-child(4) > span {
  color: #fff;
  background: #0867a3;
}

.why-section {
  background:
    linear-gradient(120deg, rgba(2, 43, 73, 0.98), rgba(3, 78, 128, 0.98)),
    #022b49;
}

.why-section::before {
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(255, 255, 255, 0.07) 50%),
    radial-gradient(circle at 70% 30%, rgba(46, 139, 196, 0.22), transparent 40%);
}

.faq-question i::before,
.faq-question i::after {
  background: #0867a3;
}

.final-cta {
  background: linear-gradient(115deg, #034e80, #0867a3);
}

.site-footer {
  background: #022b49;
}

/* Local payment-brand icons — keep the existing card geometry */
.payment-methods-grid .method-mark {
  border: 1px solid #d7e8f3;
  background: #fff;
}

.payment-methods-grid .method-mark img {
  display: block;
  width: 30px;
  max-height: 24px;
  object-fit: contain;
}

.payment-methods-grid .method-mark--mastercard img,
.payment-methods-grid .method-mark--unionpay img {
  width: 34px;
}

/* Approved light-surface refresh: hero, merchant platform and why Easypay only */
.hero {
  color: #0e1c2b;
  background: #f3f9fd;
}

.hero::before {
  border-color: rgba(8, 103, 163, 0.14);
  box-shadow:
    0 0 0 100px rgba(8, 103, 163, 0.025),
    0 0 0 200px rgba(8, 103, 163, 0.016);
}

.hero::after {
  background: #e7f3fa;
  opacity: 0.72;
}

.hero-glow--one {
  background: rgba(168, 215, 241, 0.38);
}

.hero-glow--two {
  border-color: rgba(8, 103, 163, 0.16);
}

.hero-copy h1,
.hero-subtitle,
.hero-phone strong,
.benefit-strip strong {
  color: #0e1c2b;
}

.hero-copy h1 span,
.hero .eyebrow,
.benefit-strip article > span {
  color: #0867a3;
}

.hero-intro,
.hero-phone small,
.benefit-strip small {
  color: #53616b;
}

.hero .button--ghost {
  color: #0867a3;
  border-color: #9bc7e2;
  background: rgba(255, 255, 255, 0.7);
}

.hero .button--ghost:hover {
  border-color: #0867a3;
  background: #fff;
}

.hero .benefit-strip {
  border-color: #cfe2ef;
  background: rgba(255, 255, 255, 0.78);
}

.hero .benefit-strip article {
  border-color: #cfe2ef;
}

.site-header:not(.is-scrolled):not(.nav-open) {
  color: #0e1c2b;
}

.site-header:not(.is-scrolled):not(.nav-open) .brand-logo--white {
  opacity: 0;
}

.site-header:not(.is-scrolled):not(.nav-open) .brand-logo--colour {
  opacity: 1;
}

.site-header:not(.is-scrolled):not(.nav-open) .language-switcher {
  border-color: #cfe2ef;
  background: rgba(255, 255, 255, 0.78);
}

.site-header:not(.is-scrolled):not(.nav-open) .language-switcher button.is-active {
  color: #fff;
  background: #0867a3;
}

.platform-section {
  color: #0e1c2b;
  background: #fff;
}

.platform-section::after {
  border-color: rgba(8, 103, 163, 0.12);
}

.platform-section .eyebrow,
.platform-section .feature-list li > span,
.platform-section .platform-mini-cards span {
  color: #0867a3;
}

.platform-copy h2,
.platform-section .feature-list strong,
.platform-section .platform-mini-cards strong {
  color: #0e1c2b;
}

.platform-copy > p,
.platform-section .feature-list small,
.platform-section .platform-mini-cards p {
  color: #53616b;
}

.platform-dashboard::before {
  border-color: #cfe2ef;
  background: #e7f3fa;
}

.platform-window {
  box-shadow: 0 28px 60px rgba(8, 103, 163, 0.14);
}

.platform-mini-cards article {
  border-color: #cfe2ef;
  background: #f8fbfd;
}

.why-section {
  color: #0e1c2b;
  background: #f3f9fd;
}

.why-section::before {
  border-color: rgba(8, 103, 163, 0.12);
  background: #e7f3fa;
  opacity: 0.6;
}

.why-section .section-heading h2,
.why-grid h3 {
  color: #0e1c2b;
}

.why-section .eyebrow,
.why-grid span {
  color: #0867a3;
}

.why-grid {
  border-color: #cfe2ef;
}

.why-grid article {
  border-color: #cfe2ef;
  background: rgba(255, 255, 255, 0.78);
}

.why-grid p {
  color: #53616b;
}

/* Why Easypay — light glass cards */
.why-grid {
  --why-glass: rgba(255, 255, 255, 0.62);
  --why-glass-border: rgba(255, 255, 255, 0.86);
  --why-glass-blur: saturate(160%) blur(18px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
  perspective: 1000px;
}

.why-grid article {
  --why-reveal-y: 0px;
  --why-lift-y: 0px;
  --why-tilt-x: 0deg;
  --why-tilt-y: 0deg;
  --why-shine-x: 0px;
  position: relative;
  min-height: 252px;
  padding: 34px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--why-glass-border);
  border-bottom-color: rgba(8, 103, 163, 0.18);
  border-radius: 18px;
  background: var(--why-glass);
  box-shadow: 0 18px 42px rgba(3, 78, 128, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  opacity: 1;
  transform: translate3d(0, calc(var(--why-reveal-y) + var(--why-lift-y)), 0)
    rotateX(var(--why-tilt-y)) rotateY(var(--why-tilt-x));
  transform-style: preserve-3d;
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
  will-change: transform;
}

.why-grid article:first-child,
.why-grid article:last-child {
  padding: 34px 30px 30px;
  border: 1px solid var(--why-glass-border);
  border-bottom-color: rgba(8, 103, 163, 0.18);
}

.why-grid article::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.72);
  transform: translate3d(var(--why-shine-x), 0, 0);
  transition: transform 240ms ease;
}

.why-grid span {
  font-weight: 600;
}

.why-grid h3 {
  margin: 44px 0 14px;
  font-weight: 600;
}

.why-grid.why-motion-enabled article {
  --why-reveal-y: 16px;
  opacity: 0;
}

.why-grid.why-motion-enabled article.is-revealed {
  --why-reveal-y: 0px;
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .why-grid article:hover {
    --why-lift-y: -8px;
    border-color: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(8, 103, 163, 0.28);
    box-shadow: 0 26px 52px rgba(3, 78, 128, 0.15), inset 0 1px 0 #fff;
  }
}

@media (hover: none) and (pointer: coarse) {
  .why-grid article:active {
    transform: translate3d(0, 2px, 0) scale(0.99);
  }
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid article,
  .why-grid article:first-child,
  .why-grid article:nth-child(2),
  .why-grid article:nth-child(-n + 2),
  .why-grid article:last-child {
    padding: 34px 30px 30px;
    border: 1px solid var(--why-glass-border);
    border-bottom-color: rgba(8, 103, 163, 0.18);
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-grid article,
  .why-grid article:first-child,
  .why-grid article:nth-child(2),
  .why-grid article:nth-child(-n + 2),
  .why-grid article:last-child {
    min-height: 0;
    padding: 28px 24px;
    border: 1px solid var(--why-glass-border);
    border-bottom-color: rgba(8, 103, 163, 0.18);
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .why-grid article,
  .why-grid article:first-child {
    background: #f8fcff;
    border-color: #cfe2ef;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .why-grid article,
  .why-grid article:first-child {
    background: #f8fcff;
    border-color: #cfe2ef;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-grid.why-motion-enabled article,
  .why-grid.why-motion-enabled article.is-revealed,
  .why-grid article:hover,
  .why-grid article:active {
    --why-reveal-y: 0px !important;
    --why-lift-y: 0px !important;
    --why-tilt-x: 0deg !important;
    --why-tilt-y: 0deg !important;
    --why-shine-x: 0px !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .why-grid article::before {
    transition: none !important;
  }
}

.hero-welcome {
  margin-bottom: 20px;
}

.hero-copy .hero-welcome-title {
  margin: 0;
  color: #0e1c2b;
  font-size: clamp(46px, 4.2vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy .hero-welcome-title span {
  color: #0867a3;
}

.hero-welcome-tagline {
  margin: 10px 0 0;
  color: #0e1c2b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .hero-copy .hero-welcome-title {
    font-size: 39px;
    line-height: 1.08;
  }
}
