/* ==========================================================================
   Qashier SG — Production Stylesheet
   Build order: tokens → base/components → utilities → mobile overrides
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS — fonts, colors, spacing, radii, shadows, motion
   -------------------------------------------------------------------------- */
/* =========================================================
   Qashier Design System — Colors & Type
   Source of truth: Qashier Corporate Colour guide
   Corporate font: Century Gothic (GOTHIC.TTF family)
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Century Gothic";
  src: url("assets/fonts/GOTHIC.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Century Gothic";
  src: url("assets/fonts/GOTHICI.TTF") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "Century Gothic";
  src: url("assets/fonts/GOTHICB.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Century Gothic";
  src: url("assets/fonts/GOTHICBI.TTF") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: block;
}

:root {
  /* ---------- Brand Primary ---------- */
  --qashier-blue:        #475CAE; /* Pantone 7455 C — the brand */
  --qashier-blue-print:  #3A5DAE; /* print-only variant */
  --white:               #FFFFFF;
  --cool-gray:           #7C7E7F; /* Pantone 425 U — tagline / subhead */

  /* ---------- Brand Secondary ---------- */
  --river-bed:           #3B4559; /* typographic, dark surfaces */
  --vista-blue:          #7CA6DE; /* secondary-to-Sunglow accent */
  --sunglow:             #FFC72C; /* main secondary — highlights */
  --red-orange:          #FF4F2C; /* office-furniture only; avoid in UI */

  /* ---------- Qashier Blue gradient scale ---------- *
   * Lights (1→6) — 6 is the brand */
  --blue-1:  #8897CF;
  --blue-2:  #7B8BCA;
  --blue-3:  #6D7EC3;
  --blue-4:  #5F72BE;
  --blue-5:  #5166B9;
  --blue-6:  #475CAE;
  /* Darks (7→12) */
  --blue-7:  #4155A0;
  --blue-8:  #3D4D93;
  --blue-9:  #364684;
  --blue-10: #303F76;
  --blue-11: #2C3768;
  --blue-12: #000000; /* reserved — spec terminates at deep navy */

  /* ---------- Cool Gray gradient scale ---------- */
  --gray-1:  #AEAFB0;
  --gray-2:  #A4A5A6;
  --gray-3:  #9A9B9C;
  --gray-4:  #919292;
  --gray-5:  #878889;
  --gray-6:  #7C7E7F;
  --gray-7:  #737475;
  --gray-8:  #696A6B;
  --gray-9:  #5F6061;
  --gray-10: #565757;
  --gray-11: #4C4D4D;
  --gray-12: #414242;

  /* ---------- River Bed gradient scale ---------- */
  --riverbed-1:  #637394;
  --riverbed-2:  #5A6A89;
  --riverbed-3:  #526066;   /* note: spec-provided value */
  --riverbed-4:  #4C5771;
  --riverbed-5:  #434E65;
  --riverbed-6:  #3B4559;
  --riverbed-7:  #333C4C;
  --riverbed-8:  #2C3341;
  --riverbed-9:  #242A36;
  --riverbed-10: #1C202A;
  --riverbed-11: #15171F;

  /* ---------- Sunglow gradient scale ---------- */
  --sunglow-1:  #FFE18E;
  --sunglow-2:  #FFDC7A;
  --sunglow-3:  #FFD767;
  --sunglow-4:  #FFD154;
  --sunglow-5:  #FFCD3F;
  --sunglow-6:  #FFC72C;
  --sunglow-7:  #FFC218;
  --sunglow-8:  #FFBD08;
  --sunglow-9:  #F1B001;
  --sunglow-10: #DDA200;
  --sunglow-11: #C99402;

  /* ---------- Vista Blue gradient scale ---------- */
  --vista-1:  #CADBF2;
  --vista-2:  #BBD1EF;
  --vista-3:  #ABC7EA;
  --vista-4:  #9CBCE6;
  --vista-5:  #8DB2E2;
  --vista-6:  #7CA6DE;
  --vista-7:  #6C9BDA;
  --vista-8:  #5E91D6;
  --vista-9:  #4E86D2;
  --vista-10: #3D7CCE;
  --vista-11: #3272C6;

  /* ---------- Semantic — foreground ---------- */
  --fg-1: #000000;          /* main copy, per spec */
  --fg-2: var(--river-bed); /* sub-copy */
  --fg-3: var(--cool-gray); /* tagline, captions, meta */
  --fg-brand: var(--qashier-blue);
  --fg-on-dark: var(--white);

  /* ---------- Semantic — background ---------- */
  --bg-page:   var(--white);
  --bg-soft:   #F5F6FA;          /* tint of Vista */
  --bg-brand:  var(--qashier-blue);
  --bg-dark:   var(--river-bed);
  --bg-accent: var(--sunglow);

  /* ---------- Semantic — borders / dividers ---------- */
  --border-1: rgba(59, 69, 89, 0.12); /* riverbed @12% */
  --border-2: rgba(59, 69, 89, 0.22);

  /* ---------- Gradients (approved) ---------- */
  --grad-blue:    linear-gradient(135deg, var(--blue-1) 0%, var(--blue-6) 50%, var(--blue-11) 100%);
  --grad-blue-v:  linear-gradient(180deg, var(--blue-6) 0%, var(--blue-11) 100%);
  --grad-sunglow: linear-gradient(135deg, var(--sunglow-1) 0%, var(--sunglow-6) 50%, var(--sunglow-11) 100%);
  --grad-vista:   linear-gradient(135deg, var(--vista-1) 0%, var(--vista-6) 50%, var(--vista-11) 100%);
  --grad-riverbed:linear-gradient(135deg, var(--riverbed-1) 0%, var(--riverbed-6) 50%, var(--riverbed-11) 100%);

  /* ---------- Type tokens ---------- */
  --font-display: "Century Gothic", "Futura", "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Century Gothic", "Futura", "Avenir Next", "Avenir", "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  --tracking-tight:  -0.01em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-caps:   0.12em;   /* button labels, eyebrow caps */

  --leading-tight: 1.08;
  --leading-snug:  1.20;
  --leading-body:  1.45;
  --leading-loose: 1.65;

  /* ---------- Spacing (8px base + 4px half) ---------- */
  --space-0:  0;
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* ---------- Radii — rounded, never sharp ---------- */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* ---------- Elevation / shadows ---------- */
  --shadow-1: 0 1px 2px rgba(59, 69, 89, 0.06), 0 1px 1px rgba(59, 69, 89, 0.04);
  --shadow-2: 0 4px 10px rgba(59, 69, 89, 0.08), 0 2px 4px rgba(59, 69, 89, 0.04);
  --shadow-3: 0 12px 28px rgba(59, 69, 89, 0.12), 0 4px 10px rgba(59, 69, 89, 0.06);
  --shadow-4: 0 24px 60px rgba(59, 69, 89, 0.18), 0 8px 16px rgba(59, 69, 89, 0.08);
  --shadow-brand: 0 18px 40px rgba(71, 92, 174, 0.30);

  /* ---------- Motion ---------- */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-1: 120ms;
  --duration-2: 220ms;
  --duration-3: 360ms;
  --duration-4: 560ms;
}

/* ---------- Base element mappings ---------- */

html, body {
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Display — for poster-scale numbers / hero */
.display-1, h1.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 128px);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg-1);
}

/* Headings */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg-1);
  margin: 0 0 var(--space-4);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--fg-1);
  margin: 0 0 var(--space-3);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: var(--leading-snug);
  color: var(--fg-1);
  margin: 0 0 var(--space-3);
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: var(--leading-snug);
  color: var(--fg-1);
  margin: 0 0 var(--space-2);
}

/* Eyebrow — tiny all-caps label */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--qashier-blue);
}

/* Body */
p, .body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--leading-body);
  color: var(--fg-2);
  margin: 0 0 var(--space-4);
  text-wrap: pretty;
}
.body-lg { font-size: 18px; line-height: var(--leading-body); }
.body-sm { font-size: 14px; line-height: var(--leading-body); }

/* Caption / meta */
.caption, small {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: var(--leading-snug);
  color: var(--fg-3);
  letter-spacing: var(--tracking-wide);
}

/* Tagline treatment (logo-tagline, as per spec) */
.tagline {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--cool-gray);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  font-size: 12px;
}

/* Code */
code, kbd, pre, .mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

/* Links */
a {
  color: var(--qashier-blue);
  text-decoration: none;
  transition: color var(--duration-2) var(--ease-standard);
}
a:hover { color: var(--blue-8); }


/* --------------------------------------------------------------------------
   2. BASE + COMPONENTS — nav, hero, sections, cards, footer
   -------------------------------------------------------------------------- */
/* Qashier SG marketing site */

* { box-sizing: border-box; }

/* ====== Scroll reveal system ====== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.r-fade { transform: none; }
.reveal.r-left { transform: translateX(-32px); }
.reveal.r-left.in { transform: translateX(0); }
.reveal.r-right { transform: translateX(32px); }
.reveal.r-right.in { transform: translateX(0); }
.reveal.r-scale { transform: scale(0.96); }
.reveal.r-scale.in { transform: scale(1); }
.reveal.r-rise { transform: translateY(48px); }
.reveal.r-rise.in { transform: translateY(0); }

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(56px) scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0) scale(1); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 140ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 280ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 420ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 560ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 700ms; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 840ms; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 980ms; }

/* Headline split-line reveal — wrap each line in <span class="line"><span class="inner">...</span></span> */
.split-lines .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.split-lines .line .inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.split-lines.in .line .inner { transform: translateY(0); }
.split-lines.in .line:nth-child(2) .inner { transition-delay: 90ms; }
.split-lines.in .line:nth-child(3) .inner { transition-delay: 180ms; }

/* Parallax helper — JS sets --py from scroll */
.parallax {
  transform: translateY(var(--py, 0px));
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .split-lines .line .inner, .parallax {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
[data-motion="off"] .reveal,
[data-motion="off"] .reveal-stagger > *,
[data-motion="off"] .split-lines .line .inner,
[data-motion="off"] .parallax {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-page);
  color: var(--fg-1);
  scroll-behavior: smooth;
}
body { overflow-x: clip; }

/* Override design system: use River Bed for all primary text instead of pure black */
:root {
  --fg-1: var(--river-bed);
}

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

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--duration-2) var(--ease-standard), border-color var(--duration-2);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(15,22,38,0.08);
  box-shadow: 0 2px 12px rgba(15,22,38,0.06);
}
.nav.scrolled .nav-inner { color: var(--qashier-blue); }
.nav.scrolled .nav-link { color: var(--qashier-blue); }
.nav.scrolled .nav-link:hover { background: rgba(71,92,174,0.08); color: var(--qashier-blue); }
.nav.scrolled .nav-logo img { filter: none; }
.nav-inner {
  max-width: 1344px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 32px;
  color: white;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 18px;
  color: white;
  cursor: pointer;
}
.nav-logo img { height: 28px; display: block; }
.nav-logo .logo-blue { display: none; }
.nav.scrolled .nav-logo .logo-white { display: none; }
.nav.scrolled .nav-logo .logo-blue { display: block; }
.nav-links {
  display: flex;
  gap: 0;
  margin-left: 28px;
  flex: 1;
  align-self: stretch;
  align-items: center;
}
.nav-link {
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background var(--duration-2) var(--ease-standard), color var(--duration-2);
  position: relative;
}
.nav-link:hover { background: rgba(255,255,255,0.08); color: white; }
.nav-link svg { opacity: 0.7; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login {
  font-size: 14px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  width: 132px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-2), color var(--duration-2), border-color var(--duration-2);
}
.nav-login:hover { background: var(--qashier-blue); color: #fff; border-color: var(--qashier-blue); }
.nav-cta {
  background: var(--qashier-blue);
  color: #fff;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0;
  text-decoration: none;
  width: 132px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-2), box-shadow var(--duration-2), background var(--duration-2);
}
.nav-cta:hover { color: var(--sunglow); }

.nav-link {
  background: transparent;
  border: 0;
  font-family: var(--font-body);
}
.nav-link.active { background: rgba(255,255,255,0.10); color: white; }
.nav.scrolled .nav-link.active { background: rgba(71,92,174,0.10); color: var(--qashier-blue); }
.nav-chev { opacity: 0.6; transition: transform var(--duration-2); }
.nav-link.active .nav-chev { transform: rotate(180deg); opacity: 1; }
.nav-ext { opacity: 0.55; margin-left: 1px; }

/* Square-style full-bleed dropdown panel */
.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  color: var(--fg-1);
  border-bottom: 1px solid rgba(15,22,38,0.08);
  box-shadow: 0 20px 40px rgba(15,22,38,0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-2) var(--ease-standard);
  z-index: 65;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.nav-panel.open {
  opacity: 1;
  pointer-events: all;
}
.nav.menu-open {
  background: white !important;
  border-bottom-color: rgba(15,22,38,0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav.menu-open .nav-inner { color: var(--fg-1); }
.nav.menu-open .nav-link { color: var(--fg-1); }
.nav.menu-open .nav-link:hover { background: rgba(15,22,38,0.06); }
.nav.menu-open .nav-link.active { background: rgba(15,22,38,0.06); }
.nav.menu-open .nav-logo .logo-white { display: none; }
.nav.menu-open .nav-logo .logo-blue { display: block; }
.nav.menu-open .nav-login { color: var(--fg-1); background: rgba(15,22,38,0.06); border-color: var(--border-1); }
.nav.menu-open .nav-login:hover { background: var(--qashier-blue); color: #fff; border-color: var(--qashier-blue); }
.nav.scrolled .nav-login { color: var(--qashier-blue); background: transparent; border-color: var(--qashier-blue); }
.nav.scrolled .nav-login:hover { background: var(--qashier-blue); color: #fff; border-color: var(--qashier-blue); }

.nav-panel-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 44px;
}
.nav-panel-cols {
  display: grid;
  gap: 36px;
  align-items: start;
}
.np-col {}
.np-heading {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--qashier-blue);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15,22,38,0.10);
}
.np-list { list-style: none; margin: 0; padding: 0; }
.np-list li { margin: 0; }
.np-item {
  display: block;
  text-decoration: none;
  color: var(--fg-1);
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: 10px;
  transition: background var(--duration-2);
}
.np-item:hover { background: rgba(71,92,174,0.06); }
.np-item:hover .np-item-name { color: var(--qashier-blue); }
.np-item-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--fg-1);
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--duration-2);
}
.np-item-desc {
  font-size: 12.5px;
  color: var(--fg-3);
  margin-top: 3px;
  line-height: 1.45;
  font-weight: 500;
}
.np-badge {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--sunglow);
  color: #1B2235;
}
.np-badge.popular { background: rgba(71,92,174,0.12); color: var(--qashier-blue); }
.np-badge.grant { background: rgba(0,177,79,0.14); color: #00813A; }

/* Featured panel card */
.np-feature {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #F4F6FB 0%, #E7ECF8 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--fg-1);
  transition: transform var(--duration-3) var(--ease-emphasis), box-shadow var(--duration-3);
  border: 1px solid rgba(71,92,174,0.10);
}
.np-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(31,36,60,0.14);
}
.np-feature-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--blue-9), var(--blue-11));
  position: relative;
  overflow: hidden;
}
.np-feature-media video,
.np-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.np-feature-body { padding: 18px 22px 22px; }
.np-feature-kicker {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--qashier-blue);
  margin-bottom: 8px;
}
.np-feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.np-feature-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-2);
  margin-bottom: 14px;
}
.np-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--qashier-blue);
  transition: gap var(--duration-2);
}
.np-feature:hover .np-feature-cta { gap: 10px; }

/* Scrim behind dropdown */
.nav-scrim {
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(15,22,38,0.30);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-2);
  z-index: 50;
}
.nav-scrim.open { opacity: 1; pointer-events: all; }

@media (max-width: 1080px) {
  .nav-panel-inner { padding: 24px 16px 32px; }
  .nav-panel-cols { grid-template-columns: 1fr !important; gap: 20px; }
  .np-feature { display: none; }
}

/* ---------- Hero ---------- */
.hero-mk {
  position: relative;
  min-height: 100vh;
  background: #1B2235;
  color: white;
  overflow: hidden;
  padding: 110px 32px 100px;
  display: flex;
  align-items: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  filter: contrast(1.10) saturate(1.10) brightness(0.95);
}
.hero-mk::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.32);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}
.hero-mk::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 700px at 50% 45%, rgba(0,0,0,0) 0%, rgba(8,12,22,0.30) 70%, rgba(8,12,22,0.55) 100%),
    linear-gradient(180deg, rgba(8,12,22,0.30) 0%, rgba(8,12,22,0) 35%, rgba(8,12,22,0.20) 70%, rgba(8,12,22,0.70) 100%),
    radial-gradient(900px 600px at 80% 20%, rgba(124,166,222,0.14), transparent 60%);
  z-index: 2;
  pointer-events: none;
}
.hero-mk-inner { z-index: 3; }
.hero-mk-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-mk-inner > * { max-width: 980px; }
.hero-mk h1 { text-align: center; max-width: 1280px; margin-left: auto; margin-right: auto; padding: 0 32px; }
.hero-mk .sub { text-align: center; max-width: 60ch; }
.hero-cta-row { justify-content: center; }
.hero-meta { justify-content: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sunglow);
  box-shadow: 0 0 0 0 rgba(255,199,44,0.7);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255,199,44, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,199,44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255,199,44, 0); }
}
.hero-mk h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 72px);
  line-height: 1.18;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 auto 24px;
  color: white;
  -webkit-text-fill-color: white;
  background: none;
}
.hero-mk h1 .accent {
  color: inherit;
  background: none;
  -webkit-text-fill-color: inherit;
}
html[data-motion="subtle"] .hero-mk h1 { animation: none; background: none; -webkit-text-fill-color: white; color: white; }
.hero-mk .sub {
  font-size: 21px;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  max-width: min(980px, 90vw);
  line-height: 1.55;
  margin: 0 0 40px;
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--duration-2) var(--ease-standard);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-sm { font-size: 14px; padding: 10px 18px; border-radius: 999px; }
.btn-primary {
  background: var(--sunglow);
  color: #475CAE;
}
.btn-primary:hover {
  background: var(--sunglow-3);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255,199,44,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.10);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.btn-equal {
  width: 180px;
  justify-content: center;
  border-radius: 999px;
}
.btn-blue {
  background: var(--qashier-blue);
  color: white;
}
.btn-blue:hover {
  color: #FFC72C;
  background: var(--qashier-blue);
  box-shadow: none;
  transform: none;
}
.btn-dark {
  background: var(--river-bed);
  color: white;
}
.btn-dark:hover { background: var(--blue-11); }

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0;
}
.hero-meta .check {
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-meta .check svg { color: var(--sunglow); }

/* Hero hardware */
.hero-hw {
  position: relative;
  min-height: 540px;
  display: flex; align-items: flex-end; justify-content: center;
}
.hw {
  position: absolute;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.4));
  transition: transform var(--duration-4) var(--ease-emphasis);
}
.hw img { display: block; }
.hw-xl { width: 420px; bottom: -10px; right: 38%; z-index: 1; animation: floatA 6s ease-in-out infinite; }
.hw-x2 { width: 270px; bottom: 30px; right: 4%; z-index: 2; animation: floatB 7s ease-in-out infinite; }
.hw-xs { width: 180px; bottom: 60px; right: 30%; z-index: 3; animation: floatC 5.5s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-16px) rotate(-1.5deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.scroll-down {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  animation: scrollNudge 2s ease-in-out infinite;
  z-index: 5;
}
.scroll-down .arr {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  display: grid; place-items: center;
  color: white;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Section: Work smarter ---------- */
.section { padding: 160px clamp(24px, 5vw, 80px); }
.section.bg-soft { background: var(--bg-soft); }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-head-c {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 72px;
}
.eyebrow-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--qashier-blue);
  background: rgba(71,92,174,0.10);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--fg-1);
}
.section h2 .accent {
  background: linear-gradient(90deg, var(--qashier-blue), var(--blue-9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head-c p {
  font-size: 19px;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0;
}

/* Want cards */
.want-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.want-card {
  background: white;
  border: 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-3) var(--ease-emphasis);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.want-card.square { aspect-ratio: 1 / 1; }
@media (hover: hover) and (pointer: fine) {
  .want-card:hover,
  .want-card.is-hovered {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
    border-color: rgba(71,92,174,0.18);
  }
}
.want-card.square .visual {
  position: absolute;
  inset: 0;
  margin: 0;
  background: var(--bg-soft);
  border-top: 0;
}
.want-card.square.dark .visual { background: white; }
.want-card.square video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.want-card.square .v-base,
.want-card.square .v-hover {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}
.want-card.square .v-hover {
  opacity: 0;
  transition: opacity 0.4s var(--ease-standard);
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .want-card.square:hover .v-hover,
  .want-card.square.is-hovered .v-hover { opacity: 1; }
}

.want-card.square .want-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 28px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(0);
  transition: transform 0.5s var(--ease-standard);
}
@media (hover: hover) and (pointer: fine) {
  .want-card.square:hover .want-content,
  .want-card.square.is-hovered .want-content {
    transform: translateY(-4px);
  }
}

.want-card.square .want-content .tag {
  position: static;
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--qashier-blue);
  margin: 0 0 0;
  padding: 6px 12px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid var(--qashier-blue);
  text-shadow: 0 1px 8px rgba(255,255,255,0.25);
  transition: margin 0.5s var(--ease-standard), color 0.3s, background 0.3s, border-color 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .want-card.square:hover .want-content .tag,
  .want-card.square.is-hovered .want-content .tag {
    color: white;
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.4);
    text-shadow: 0 1px 8px rgba(0,0,0,0.55);
    margin-bottom: 14px;
  }
}

.want-card.square .want-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.45s var(--ease-standard) 0.05s,
    transform 0.45s var(--ease-standard) 0.05s,
    max-height 0.5s var(--ease-standard) 0s,
    margin 0.5s var(--ease-standard);
}
@media (hover: hover) and (pointer: fine) {
  .want-card.square:hover .want-headline,
  .want-card.square.is-hovered .want-headline {
    max-height: 5em;
    opacity: 1;
    transform: translateY(0);
    margin: 0 0 10px;
  }
}

.want-card.square .want-body {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.015em;
  color: rgba(255,255,255,0.92);
  margin: 0;
  max-width: 38ch;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.5s var(--ease-standard) 0.12s,
    transform 0.5s var(--ease-standard) 0.12s,
    max-height 0.55s var(--ease-standard),
    margin 0.5s var(--ease-standard);
}
@media (hover: hover) and (pointer: fine) {
  .want-card.square:hover .want-body,
  .want-card.square.is-hovered .want-body {
    max-height: 8em;
    opacity: 1;
    transform: translateY(0);
    margin: 0 0 18px;
  }
}

.want-card.square .want-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sunglow);
  color: var(--river-bed);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transform: translate(-6px, 6px) scale(0.92);
  transition: opacity 0.45s var(--ease-standard), transform 0.45s var(--ease-standard), background 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
@media (hover: hover) and (pointer: fine) {
  .want-card.square:hover .want-arrow,
  .want-card.square.is-hovered .want-arrow {
    opacity: 1;
    transform: translate(0,0) scale(1);
  }
}

/* Subtle video brightness lift on hover so text stays legible */
.want-card.square video {
  transition: transform 6s ease-out, filter 0.5s var(--ease-standard);
}
@media (hover: hover) and (pointer: fine) {
  .want-card.square:hover video,
  .want-card.square.is-hovered video {
    filter: brightness(0.85) saturate(1.05);
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .want-card.square .want-overlay,
  .want-card.square .want-content,
  .want-card.square .want-headline,
  .want-card.square .want-body,
  .want-card.square .want-arrow { transition: none; }
}
.want-card.square .tag {
  /* legacy bottom-tag rule — kept inert; overridden by .want-content .tag above */
  position: static;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  margin: 0;
}
.want-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--qashier-blue);
  margin-bottom: 12px;
}
.want-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--fg-1);
}
.want-card h3 em, .want-card h3 .hl { font-style: normal; color: var(--qashier-blue); font-weight: 700; }
.want-card.dark h3 .hl { color: var(--sunglow); }
.final-cta h2 .hl { color: var(--sunglow); font-style: normal; }
.want-card .desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 24px;
}
.want-card .visual {
  margin-top: auto;
  margin-left: -36px;
  margin-right: -36px;
  margin-bottom: -36px;
  padding: 0;
  background: #0E1320;
  flex: 1;
  min-height: 240px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-1);
}
.want-card .visual video {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}
.want-card.dark .visual { background: rgba(0,0,0,0.32); }
.want-card .arrow-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--qashier-blue);
  margin-bottom: 28px;
  cursor: pointer;
}
.want-card .arrow-cta:hover { color: var(--blue-9); }
.want-card.dark {
  background: white;
  color: white;
  border: 0;
}
.want-card.dark h3 { color: white; }
.want-card.dark h3 em { color: var(--sunglow); }
.want-card.dark .desc { color: rgba(255,255,255,0.82); }
.want-card.dark .tag { color: var(--sunglow); }
.want-card.dark .arrow-cta { color: var(--sunglow); }
.want-card.dark .visual {
  background: rgba(0,0,0,0.18);
  border-top-color: rgba(255,255,255,0.08);
}

/* ---------- 4Ps strip ---------- */
.fourp {
  background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
}
.fourp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--border-1);
}
.fourp-cell {
  padding: 44px 36px;
  border-right: 1px solid var(--border-1);
  position: relative;
  background: white;
  transition: all var(--duration-3) var(--ease-emphasis);
}
.fourp-cell:last-child { border-right: 0; }
.fourp-cell:hover { background: var(--bg-soft); }
.fourp-cell .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--qashier-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.fourp-cell .num .p {
  font-size: 38px;
  color: var(--sunglow);
}
.fourp-cell .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.fourp-cell .copy {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.015em;
  color: var(--fg-2);
  margin: 0;
}
.fourp-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  color: var(--qashier-blue);
  font-weight: 700;
  font-size: 11px;
}
.fourp-cell:last-child .fourp-arrow { display: none; }

/* ---------- SuperTerminal ---------- */
.super {
  position: relative;
  background: linear-gradient(135deg, #1C202A 0%, #2C3768 60%, #475CAE 100%);
  color: white;
  overflow: hidden;
  padding: 160px 32px;
}
.super::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 90% 30%, rgba(255,199,44,0.18), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(124,166,222,0.20), transparent 60%);
  pointer-events: none;
}
.super-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.super .eyebrow-pill {
  background: rgba(255,199,44,0.18);
  color: var(--sunglow);
}
.super h2 {
  color: white;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}
.super h2 .top {
  display: block;
  font-size: 0.6em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  margin-bottom: 16px;
}
.super h2 strong {
  background: linear-gradient(90deg, #FFC72C 0%, #FFE18E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.super p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 48ch;
}
.super-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.super-feat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.super-feat .icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255,199,44,0.18);
  color: var(--sunglow);
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.super-feat .name {
  font-weight: 700;
  font-size: 13px;
}
.super-feat .v {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* SuperTerminal visual stage */
.super-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.super-glow {
  position: absolute;
  inset: 10% 10% 10% 10%;
  background: radial-gradient(closest-side, rgba(255,199,44,0.28), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.super-device {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 520px;
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.5));
  animation: floatA 7s ease-in-out infinite;
}
.super-orbit {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%; left: 5%;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 50%;
  animation: orbit 30s linear infinite;
}
.super-orbit-2 {
  position: absolute;
  width: 70%;
  height: 70%;
  top: 15%; left: 15%;
  border: 1px dashed rgba(255,199,44,0.22);
  border-radius: 50%;
  animation: orbit 22s linear infinite reverse;
}
@keyframes orbit {
  to { transform: rotate(360deg); }
}
.super-chip {
  position: absolute;
  background: white;
  color: var(--fg-1);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0,0,0,0.30);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  white-space: nowrap;
}
.super-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.super-chip.c1 { top: 8%; left: -2%; animation: floatA 6s ease-in-out infinite; }
.super-chip.c1 .dot { background: #00B14F; }
.super-chip.c2 { top: 22%; right: -4%; animation: floatB 7s ease-in-out infinite; }
.super-chip.c2 .dot { background: var(--qashier-blue); }
.super-chip.c3 { bottom: 30%; left: -6%; animation: floatC 5.5s ease-in-out infinite; }
.super-chip.c3 .dot { background: var(--sunglow); }
.super-chip.c4 { bottom: 12%; right: 4%; animation: floatA 6.5s ease-in-out infinite 1s; }
.super-chip.c4 .dot { background: #D70F64; }

/* ---------- Industries ---------- */
.industries {
  background: #ffffff;
}

/* Tabbed industries layout — full-width tab strip (POS-style) */
.indt-tabs {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px -12px rgba(15,22,38,0.10);
}
.indt-tab {
  position: relative;
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-family: var(--font-body);
  transition: background 0.25s var(--ease-standard);
  color: var(--fg-1);
}
.indt-tab + .indt-tab { border-left: 1px solid var(--border-1); }
.indt-tab:hover:not(.active) { background: var(--bg-soft); }
.indt-tab.active {
  border-bottom-color: var(--qashier-blue);
  background: linear-gradient(180deg, rgba(71,92,174,0.05), transparent);
}
.indt-tab-icon {
  width: 24px;
  height: 28px;  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-3);
  margin-bottom: 0;
  flex-shrink: 0;
}
.indt-tab-icon svg { width: 22px; height: 22px; }
.indt-tab.active .indt-tab-icon { color: var(--qashier-blue); }
.indt-tab-text { display: flex; flex-direction: column; gap: 4px; }
.indt-tab-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--fg-1);
}
.indt-tab.active .indt-tab-name { color: var(--qashier-blue); }
.indt-tab-sub {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--fg-3);
  line-height: 1.35;
}
.indt-stage {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: stretch;
  animation: indtFade 0.45s var(--ease-standard);
}
@keyframes indtFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.indt-meta { display: flex; flex-direction: column; gap: 18px; }
.indt-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0;
  text-wrap: balance;
}
.indt-desc {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
}
.indt-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 24px;
}
.indt-bullets li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--fg-1);
  line-height: 1.5;
}
.indt-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--qashier-blue);
}
.indt-bullets li::after {
  content: "";
  position: absolute;
  left: 5px; top: 9px;
  width: 7px; height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.indt-cta {
  margin-top: auto;
  align-self: flex-start;
}
.indt-demo {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 28px;
  border: 0;
  display: flex;
  align-self: stretch;
}
.indt-demo .bt-live {
  margin: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.indt-demo .bt-kds { flex-direction: column; gap: 14px; }
.indt-demo .bt-outlets { flex-direction: row; flex-wrap: wrap; gap: 8px; }

/* ---- Rich demo shared chrome ---- */
.bt-rich { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.rich-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--border-1);
}
.rich-h-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg-1); letter-spacing: -0.01em; }
.rich-h-meta { font-size: 12px; color: var(--fg-3); display: inline-flex; align-items: center; gap: 6px; font-variant-numeric: tabular-nums; }
.rich-foot {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border-1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--fg-3);
}
.rich-foot strong { color: var(--fg-1); font-variant-numeric: tabular-nums; }
.rich-bar { display: inline-block; width: 100px; height: 4px; background: rgba(15,22,38,0.06); border-radius: 999px; overflow: hidden; }
.rich-bar-fill { display: block; height: 100%; width: 60%; background: var(--qashier-blue); animation: barCreep 2.4s ease-in-out infinite alternate; }
@keyframes barCreep { from { width: 50%; } to { width: 78%; } }
.rich-pulse {
  font-weight: 700; color: var(--qashier-blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.rich-pulse::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--qashier-blue); animation: bp2 1.6s infinite; }

@keyframes slideIn {
  0% { opacity: 0; transform: translateY(8px); }
  12%, 88% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-6px); }
}
.slide-in { animation: slideIn 4s var(--ease-standard) infinite both; }
@keyframes pulseSoft {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.pulse-soft { animation: pulseSoft 1.4s ease-in-out infinite; }
@keyframes numTick {
  0% { transform: translateY(2px); opacity: 0.6; }
  100% { transform: translateY(0); opacity: 1; }
}
.num-tick { display: inline-block; animation: numTick 0.5s var(--ease-standard); }

/* KDS rich layout */
.kds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kds-ghost {
  background: rgba(255,255,255,0.5);
  border: 1.5px dashed rgba(71,92,174,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 120px; gap: 10px;
}
.kds-ghost-label { font-size: 11px; color: var(--fg-3); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.ghost-shimmer { width: 60%; height: 6px; background: linear-gradient(90deg, transparent, rgba(71,92,174,0.25), transparent); background-size: 200% 100%; border-radius: 999px; animation: shimmer 1.6s linear infinite; }
@keyframes shimmer { from { background-position: 100% 0; } to { background-position: -100% 0; } }

/* Retail rich */
.stock-list { display: flex; flex-direction: column; gap: 10px; }
.stock-row { padding: 8px 0; }
.bar-fill { display: block; height: 100%; background: #22c55e; border-radius: 999px; animation: barFill 3.2s var(--ease-emphasis) infinite both; transform-origin: left; }
@keyframes barFill {
  0% { transform: scaleX(0); }
  35%, 75% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}
.stock-bar.low .bar-fill { background: #f59e0b; }
.stock-bar.empty .bar-fill { background: rgba(15,22,38,0.12); }
.stock-num.warn { color: #d97706; font-weight: 700; }

/* Beauty rich */
.cal-grid { display: flex; flex-direction: column; gap: 8px; }
.cal-block { display: flex; flex-direction: column; gap: 2px; padding: 10px 14px; }
.cal-meta { font-size: 11px; opacity: 0.85; font-weight: 500; }
.pulse-block { box-shadow: 0 0 0 0 rgba(255,199,44, 0.5); animation: pulseBlock 2s ease-out infinite; }
@keyframes pulseBlock {
  0% { box-shadow: 0 0 0 0 rgba(255,199,44, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255,199,44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255,199,44, 0); }
}

/* Events / mobile rich */
.indt-demo .bt-mobile { flex-direction: row; gap: 16px; padding: 0; background: transparent; border: 0; color: var(--fg-1); }
.mob-frame {
  flex: 1.4;
  background: linear-gradient(180deg, #1B2235, #0d1220);
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.mob-frame .mob-bar { display: flex; justify-content: space-between; font-size: 11px; opacity: 0.7; font-variant-numeric: tabular-nums; }
.mob-merchant { font-size: 11px; opacity: 0.55; letter-spacing: 0.08em; text-transform: uppercase; }
.mob-amt { font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1; font-variant-numeric: tabular-nums; }
.mob-method { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; opacity: 0.85; }
.mob-card-chip { display: inline-block; width: 18px; height: 14px; background: linear-gradient(135deg, #FFC72C, #ffa726); border-radius: 3px; flex-shrink: 0; }
.mob-progress { height: 3px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.mob-progress-fill { display: block; height: 100%; width: 100%; background: #22c55e; transform-origin: left; animation: barFill 3.6s var(--ease-emphasis) infinite both; }
.mob-status { font-size: 12px; display: inline-flex; align-items: center; }
.mob-receipt {
  margin-top: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px;
}
.mob-r-row { display: flex; justify-content: space-between; opacity: 0.85; font-variant-numeric: tabular-nums; }
.mob-r-total { display: flex; justify-content: space-between; padding-top: 6px; margin-top: 4px; border-top: 1px solid rgba(255,255,255,0.1); font-weight: 700; font-variant-numeric: tabular-nums; }
.mob-side { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.mob-side-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.mob-side-card-blue { background: var(--qashier-blue); color: #fff; border-color: transparent; flex: 1; justify-content: center; }
.mob-side-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; opacity: 0.7; }
.mob-side-card-blue .mob-side-label { opacity: 0.8; }
.mob-side-meta { font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.mob-side-card-blue .mob-side-meta strong { font-family: var(--font-display); font-size: 26px; font-variant-numeric: tabular-nums; }
.mob-side-foot { font-size: 11px; opacity: 0.7; }
.signal-bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.signal-bars span { width: 3px; background: var(--qashier-blue); border-radius: 1px; }
.signal-bars span:nth-child(1) { height: 25%; }
.signal-bars span:nth-child(2) { height: 50%; }
.signal-bars span:nth-child(3) { height: 75%; }
.signal-bars span:nth-child(4) { height: 100%; }

@media (max-width: 980px) {
  .indt-tabs { flex-wrap: wrap; padding: 6px; }
  .indt-tab { padding: 10px 16px; font-size: 13px; }
  .indt-stage { grid-template-columns: 1fr; gap: 32px; }
  .indt-bullets { grid-template-columns: 1fr; }
}

/* Bento grid */
.bento-ind {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
  margin-top: 48px;
}
.bt {
  position: relative;
  border-radius: 24px;
  padding: 28px;
  background: white;
  border: 1px solid var(--border-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--duration-2), box-shadow var(--duration-2);
}
.bt:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.bt-meta { display: flex; flex-direction: column; gap: 8px; z-index: 2; }
.bt-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--qashier-blue);
}
.bt h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.bt p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; max-width: 42ch; letter-spacing: 0.015em; }
.bt-link {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--qashier-blue);
  text-decoration: none;
  align-self: flex-start;
}
.bt-live {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border-1);
}

/* Hero F&B tile spans 4 cols, 2 rows */
.bt-hero {
  grid-column: span 4;
  grid-row: span 2;
  flex-direction: row;
  gap: 32px;
  background: linear-gradient(135deg, #fff 0%, var(--bg-soft) 100%);
}
.bt-hero .bt-meta { flex: 1; justify-content: center; }
.bt-hero h3 { font-size: 32px; }
.bt-hero p { font-size: 15px; }
.bt-hero .bt-live { flex: 0 0 280px; background: white; }

/* KDS card */
.bt-kds { gap: 12px; padding: 14px; }
.kds-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-1);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kds-card-2 { background: #fff8e6; border-color: #ffd97a; }
.kds-h { display: flex; justify-content: space-between; align-items: center; }
.kds-no { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg-1); }
.kds-time { font-size: 11px; font-variant-numeric: tabular-nums; color: var(--fg-3); background: var(--bg-soft); padding: 3px 8px; border-radius: 999px; }
.kds-rows { display: flex; flex-direction: column; gap: 5px; }
.kds-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--fg-2); }
.kds-row.done { color: var(--fg-3); text-decoration: line-through; }
.kds-row.active { color: var(--fg-1); font-weight: 700; }
.kds-row .dot { width: 6px; height: 6px; border-radius: 50%; background: #cfd6e3; flex: 0 0 auto; }
.kds-row.done .dot { background: #22c55e; }
.kds-row.active .dot { background: var(--qashier-blue); }
.kds-row .dot.pulse { box-shadow: 0 0 0 0 rgba(71,92,174,0.5); animation: bp 1.4s infinite; }
@keyframes bp { 0%{box-shadow:0 0 0 0 rgba(71,92,174,0.5);} 70%{box-shadow:0 0 0 8px rgba(71,92,174,0);} 100%{box-shadow:0 0 0 0 rgba(71,92,174,0);} }
.kds-foot { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-3); border-top: 1px dashed var(--border-1); padding-top: 6px; }
.kds-foot.grab { color: #00b14f; font-weight: 700; }

/* Retail tile */
.bt-retail { grid-column: span 2; grid-row: span 2; }
.bt-stock { gap: 12px; }
.stock-row { display: grid; grid-template-columns: 1fr 80px 30px; align-items: center; gap: 10px; font-size: 12px; }
.stock-name { color: var(--fg-1); font-weight: 600; }
.stock-bar { height: 6px; border-radius: 999px; background: rgba(15,22,38,0.06); overflow: hidden; }
.stock-bar > span { display: block; height: 100%; background: #22c55e; }
.stock-bar.low > span { background: #f59e0b; }
.stock-bar.empty > span { background: #ef4444; }
.stock-num { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--fg-1); text-align: right; }
.stock-num.zero { color: #ef4444; }

/* Beauty calendar */
.bt-beauty { grid-column: span 3; }
.bt-cal { gap: 6px; }
.cal-h { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-3); font-weight: 700; margin-bottom: 4px; }
.cal-row { display: grid; grid-template-columns: 50px 1fr; gap: 10px; align-items: center; }
.cal-time { font-size: 11px; color: var(--fg-3); font-variant-numeric: tabular-nums; font-weight: 600; }
.cal-block { padding: 8px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; color: white; }
.cal-block.b1 { background: #475CAE; }
.cal-block.b2 { background: #7CA6DE; }
.cal-block.b3 { background: #1B2235; }
.cal-block.b4 { background: #475CAE; opacity: 0.7; }

/* Hawker tile */
.bt-hawker { grid-column: span 3; }
.bt-hawker-pay { gap: 6px; }
.hp-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-radius: 10px; background: white; border: 1px solid var(--border-1); font-size: 13px; }
.hp-row strong { font-family: var(--font-display); font-weight: 700; color: var(--fg-1); font-variant-numeric: tabular-nums; }
.hp-row-active { border-color: var(--qashier-blue); background: rgba(71,92,174,0.06); }
.hp-row-active span:first-child + span { color: var(--fg-1); font-weight: 700; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; margin-right: 8px; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); animation: bp2 1.4s infinite; }
@keyframes bp2 { 0%{box-shadow:0 0 0 0 rgba(34,197,94,0.5);} 70%{box-shadow:0 0 0 6px rgba(34,197,94,0);} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0);} }

/* Franchise outlets */
.bt-franchise { grid-column: span 4; }
.bt-outlets { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.outlet-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: white; border: 1px solid var(--border-1); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--fg-1); }
.outlet-dot { width: 8px; height: 8px; border-radius: 50%; }
.outlet-dot.online { background: #22c55e; }
.outlet-dot.warn { background: #f59e0b; }
.outlet-add { color: var(--fg-3); border-style: dashed; }

/* Events / mobile */
.bt-events { grid-column: span 2; }
.bt-mobile { gap: 8px; align-items: stretch; background: linear-gradient(180deg, #1B2235, #0d1220); color: white; border-color: rgba(255,255,255,0.1); }
.mob-bar { display: flex; justify-content: space-between; align-items: center; opacity: 0.5; }
.mob-signal::before { content: "● ●●"; letter-spacing: 1px; font-size: 10px; }
.mob-batt::before { content: "▮▮▮▮"; font-size: 10px; }
.mob-amt { font-family: var(--font-display); font-weight: 700; font-size: 36px; line-height: 1; font-variant-numeric: tabular-nums; }
.mob-method { font-size: 12px; opacity: 0.7; }
.mob-status { font-size: 12px; display: flex; align-items: center; margin-top: auto; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.1); }

@media (max-width: 1080px) {
  .bento-ind { grid-template-columns: repeat(4, 1fr); }
  .bt-hero { grid-column: span 4; flex-direction: column; }
  .bt-hero .bt-live { flex: 1; }
  .bt-retail, .bt-franchise { grid-column: span 2; grid-row: auto; }
  .bt-beauty, .bt-hawker { grid-column: span 2; }
  .bt-events { grid-column: span 4; }
}
@media (max-width: 720px) {
  .bento-ind { grid-template-columns: 1fr; }
  .bt, .bt-hero, .bt-retail, .bt-beauty, .bt-hawker, .bt-franchise, .bt-events { grid-column: span 1; grid-row: auto; }
}

.ind-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.ind-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 28px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: all var(--duration-3) var(--ease-emphasis);
  background: white;
  border: 1px solid var(--border-1);
}
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.ind-card.feat {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 580px;
  background: linear-gradient(160deg, #FFE9A1 0%, #FFC72C 100%);
  border: 0;
}
.ind-card.feat .ind-name { color: var(--blue-11); font-size: 38px; }
.ind-card.feat p { color: var(--blue-11); font-size: 16px; }
.ind-card .ind-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--qashier-blue);
  margin-bottom: 6px;
}
.ind-card.feat .ind-tag { color: var(--blue-11); opacity: 0.7; }
.ind-card .ind-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--fg-1);
}
.ind-card p {
  font-size: 13px;
  color: var(--fg-2);
  margin: 0 0 14px;
  line-height: 1.5;
}
.ind-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  display: grid; place-items: center;
  color: var(--qashier-blue);
  box-shadow: var(--shadow-2);
  transition: transform var(--duration-2);
}
.ind-card:hover .ind-arrow { transform: translate(2px, -2px); }
.ind-card.feat .ind-arrow {
  background: var(--blue-11);
  color: var(--sunglow);
}
.ind-illust {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.95;
}

/* ---------- Stats ---------- */
.stats-band {
  background: var(--river-bed);
  color: white;
  padding: 80px 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 40px auto 0;
}
.stat-c {
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 24px;
}
.stat-c .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, white 0%, #FFE18E 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-c .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.stats-band .head-row {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: end;
}
.stats-band h2 { color: white; }
.stats-band p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 60ch; }
.awards {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.award {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.award .badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunglow), var(--sunglow-9));
  color: var(--blue-11);
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 800;
}

/* ---------- Stories ---------- */
.stories {
  background: white;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.story {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-3) var(--ease-emphasis);
  cursor: pointer;
}
.story:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}
.story-thumb {
  height: 220px;
  background: linear-gradient(135deg, var(--blue-9), var(--blue-11));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.story-thumb.s1 { background: linear-gradient(135deg, #C4A988 0%, #8B6F4D 100%); }
.story-thumb.s2 { background: linear-gradient(135deg, #B36A88 0%, #6F2E4F 100%); }
.story-thumb.s3 { background: linear-gradient(135deg, #4F6E5A 0%, #2A4231 100%); }
.story-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
}
.story-play {
  position: relative;
  z-index: 2;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 2px solid white;
  display: grid; place-items: center;
  color: white;
  backdrop-filter: blur(6px);
  transition: all var(--duration-2);
}
.story:hover .story-play {
  background: var(--sunglow);
  border-color: var(--sunglow);
  color: #1B2235;
  transform: scale(1.08);
}
.story-name {
  position: absolute;
  bottom: 14px; left: 18px;
  z-index: 2;
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.story-body {
  padding: 24px;
}
.story-quote {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.45;
  color: var(--fg-1);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.story-quote::before {
  content: "“";
  font-size: 48px;
  line-height: 0;
  color: var(--qashier-blue);
  vertical-align: -22px;
  margin-right: 4px;
  font-family: var(--font-display);
}
.story-author {
  font-size: 13px;
  color: var(--fg-3);
  border-top: 1px solid var(--border-1);
  padding-top: 14px;
}
.story-author strong {
  display: block;
  color: var(--fg-1);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

/* ---------- Credentials section ---------- */
.creds {
  background: white;
  padding: 140px 32px;
}
.creds h2 .accent { color: var(--qashier-blue); }

.creds-awards-block {
  margin-top: 64px;
}
.creds-awards-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 24px;
  text-align: center;
}
.creds-awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cred-award {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 0 12px;
}
.cred-award img {
  max-width: 100%;
  max-height: 84px;
  object-fit: contain;
  display: block;
}

.creds-stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.cred-stat {
  border-top: 2px solid var(--qashier-blue);
  padding-top: 18px;
}
.cred-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--fg-1);
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
}
.cred-stat-lbl {
  margin-top: 12px;
  font-size: 15px;
  color: var(--fg-2);
}

.creds-mpi {
  margin-top: 56px;
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.creds-mpi-shield {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(71,92,174,0.12);
  color: var(--qashier-blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.creds-mpi p { margin: 0; font-size: 14px; color: var(--fg-2); line-height: 1.55; }
.creds-mpi strong { color: var(--fg-1); font-weight: 700; }

/* Testimonials — Real Stories */
.creds-stories {
  margin-top: 120px;
}
.creds-stories-head {
  text-align: left;
  margin-bottom: 36px;
}
.creds-stories-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--fg-1);
}
.creds-stories-head h3 .accent {
  background: linear-gradient(90deg, var(--qashier-blue), var(--blue-9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.creds-stories-head p {
  margin: 0;
  font-size: 16px;
  color: var(--fg-2);
}
.creds-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cred-story {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--duration-2), box-shadow var(--duration-2);
}
.cred-story:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20,28,60,0.08);
}
.cred-story-media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-soft);
  overflow: hidden;
}
.cred-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cred-story-play {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--qashier-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(71,92,174,0.4);
}
.cred-story-play svg { margin-left: 2px; }
.cred-story-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.cred-story-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-1);
  flex: 1;
}
.cred-story-attrib {
  border-top: 1px solid var(--border-1);
  padding-top: 14px;
}
.cred-story-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-1);
}
.cred-story-role {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 2px;
}

/* Trust footer — consolidated */
.creds-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  border-bottom: 1px solid rgba(20,28,60,0.06);
}
.creds-trust-mpi {
  padding: 28px 40px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid rgba(20,28,60,0.06);
}
.creds-trust-mpi-shield {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(71,92,174,0.12);
  color: var(--qashier-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.creds-trust-mpi p {
  margin: 0;
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}
.creds-trust-mpi strong { color: var(--fg-1); font-weight: 700; }
.creds-trust-awards {
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 24px;
}
.creds-trust-awards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}
.creds-trust-awards-row .cred-award {
  min-height: 60px;
  padding: 0;
}
.creds-trust-awards-row .cred-award img {
  max-height: 60px;
}

@media (max-width: 900px) {
  .creds-stories-grid { grid-template-columns: 1fr; }
  .creds-trust-grid { grid-template-columns: 1fr; }
  .creds-trust-mpi { border-right: none; border-bottom: 1px solid rgba(20,28,60,0.06); }
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: videoFadeIn 0.18s ease-out;
}
@keyframes videoFadeIn { from { opacity: 0; } to { opacity: 1; } }
.video-modal-inner {
  position: relative;
  width: min(960px, 100%);
  background: #0f1423;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.18s;
}
.video-modal-close:hover { background: rgba(255,255,255,0.22); }
.video-modal-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 24px;
  pointer-events: none;
  z-index: 0;
}
.video-modal-fallback p { margin: 0; font-size: 14px; }
.video-modal-fallback a {
  color: var(--qashier-blue);
  font-weight: 600;
  text-decoration: none;
  pointer-events: auto;
  background: rgba(255,255,255,0.08);
  padding: 10px 20px;
  border-radius: 999px;
}
.video-modal-caption {
  padding: 18px 22px;
  color: #fff;
}
.video-modal-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.video-modal-role {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.creds-trust {
  margin-top: 40px;
  background: var(--bg-soft);
  border-radius: 20px;
  overflow: hidden;
}
.creds-trust-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
}
.creds-trust-row + .creds-trust-row {
}
.creds-trust-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.creds-trust-label span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.creds-backed-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}
.creds-backed-logos img {
  width: 100%;
  max-width: 720px;
  height: auto;
  opacity: 0.7;
  filter: invert(1) brightness(0.5);
}
.creds-press-track-wrap {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.creds-press-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: pressMarquee 60s linear infinite;
}
.creds-press-track img {
  height: 34px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(1) contrast(0.95);
  flex-shrink: 0;
}
@keyframes pressMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 32px)); }
}

@media (max-width: 800px) {
  .creds-trust-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }
}

@media (max-width: 1000px) {
  .creds-awards { grid-template-columns: 1fr; }
  .creds-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .creds-stats { grid-template-columns: 1fr; }
}

/* ---------- Backed by / press ---------- */
.backed {
  background: var(--bg-soft);
  padding: 70px 32px;
}
.backed-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.backed h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.logo-stub {
  height: 38px;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  padding: 0 14px;
  transition: all var(--duration-2);
}
.logo-stub:hover { color: var(--fg-1); border-color: var(--border-2); }
.mas-note {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 32px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.mas-shield {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(71,92,174,0.10);
  color: var(--qashier-blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mas-note p {
  margin: 0;
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.5;
}

/* ---------- Signup modal (HubSpot) ---------- */
.signup-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 38, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  animation: signupBackdropIn 0.22s ease-out;
}
@keyframes signupBackdropIn { from { opacity: 0; } to { opacity: 1; } }
.signup-modal {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(15, 22, 38, 0.35);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 36px 32px;
  animation: signupModalIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes signupModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.signup-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(15, 22, 38, 0.06);
  color: var(--fg-1);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--duration-2);
}
.signup-modal-close:hover { background: rgba(15, 22, 38, 0.12); }
.signup-modal-head { margin-bottom: 20px; }
.signup-modal-head h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--fg-1);
}
.signup-modal-head p {
  margin: 0;
  color: var(--fg-2);
  font-size: 14.5px;
  line-height: 1.5;
}
.signup-modal-form { min-height: 200px; }
.signup-modal-form .hs-form-field { margin-bottom: 14px; }
.signup-modal-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-1);
  margin-bottom: 6px;
}
.signup-modal-form input[type="text"],
.signup-modal-form input[type="email"],
.signup-modal-form input[type="tel"],
.signup-modal-form input[type="number"],
.signup-modal-form select,
.signup-modal-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-1);
  color: var(--fg-1);
  border-radius: 10px;
  padding: 11px 13px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--duration-2), box-shadow var(--duration-2);
}
.signup-modal-form input:focus,
.signup-modal-form select:focus,
.signup-modal-form textarea:focus {
  border-color: var(--qashier-blue);
  box-shadow: 0 0 0 3px rgba(71, 92, 174, 0.15);
}
.signup-modal-form .hs-button,
.signup-modal-form input[type="submit"] {
  background: var(--sunglow);
  color: #475CAE;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  transition: transform var(--duration-2), box-shadow var(--duration-2), background var(--duration-2);
  margin-top: 6px;
}
.signup-modal-form .hs-button:hover,
.signup-modal-form input[type="submit"]:hover {
  background: var(--sunglow-3, #ffd24a);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 199, 44, 0.35);
}
.signup-modal-form .hs-error-msgs { list-style: none; padding: 4px 0 0; margin: 0; color: #d9342b; font-size: 12.5px; }
.signup-modal-form .hs-form-required { color: #d9342b; margin-left: 2px; }
.signup-modal-form .hs-richtext { font-size: 12.5px; color: var(--fg-3); line-height: 1.5; margin-bottom: 10px; }
.signup-modal-form ul.inputs-list { list-style: none; padding: 0; margin: 0; }
.signup-modal-form .hs-form-booleancheckbox label,
.signup-modal-form .hs-form-checkbox label { display: flex; align-items: flex-start; gap: 8px; font-weight: 400; font-size: 13px; color: var(--fg-2); }
.signup-modal-form .hs-form-booleancheckbox input,
.signup-modal-form .hs-form-checkbox input { width: auto; margin-top: 3px; }
.signup-modal-form fieldset { border: 0; padding: 0; margin: 0; }
.signup-modal-form fieldset.form-columns-2 .hs-form-field { width: 48%; float: left; margin-right: 4%; }
.signup-modal-form fieldset.form-columns-2 .hs-form-field:last-child { margin-right: 0; }
.signup-modal-form fieldset::after { content: ""; display: block; clear: both; }
@media (max-width: 560px) {
  .signup-modal { padding: 28px 22px 24px; border-radius: 16px; }
  .signup-modal-form fieldset.form-columns-2 .hs-form-field { width: 100%; float: none; margin-right: 0; }
}

/* ---------- Final CTA (light) ---------- */
.final-cta-section {
  background: var(--bg-soft);
  padding: 120px 32px;
  margin-top: 40px;
}
.final-cta-light {
  position: relative;
  background: transparent;
  padding: 0;
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
}
.final-cta-light h2 {
  color: var(--qashier-blue);
  font-size: clamp(40px, 4.8vw, 64px);
  margin: 0 0 18px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.final-cta-light h2 .hl {
  background: linear-gradient(90deg, var(--qashier-blue), #6E7FC9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.final-cta-light p {
  color: var(--fg-2);
  font-size: 19px;
  max-width: 56ch;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.gp-badge-link {
  display: inline-flex;
  transition: transform var(--duration-2), filter var(--duration-2);
}
.gp-badge-link img {
  display: block;
  height: 64px;
  width: auto;
}
.gp-badge-link:hover { transform: translateY(-2px); filter: drop-shadow(0 12px 24px rgba(15,22,38,0.18)); }
@media (max-width: 720px) {
  .final-cta-section { padding: 80px 20px; }
  .final-cta-light p { font-size: 16px; }
  .gp-badge-link img { height: 54px; }
}

/* ---------- Final CTA (legacy dark, unused) ---------- */
.final-cta {
  position: relative;
  margin: 0 32px 80px;
  background: linear-gradient(135deg, #475CAE 0%, #2C3768 100%);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  color: white;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 300px at 110% 50%, rgba(255,199,44,0.22), transparent 60%),
    radial-gradient(400px 300px at 0% 0%, rgba(124,166,222,0.20), transparent 60%);
}
.final-cta > * { position: relative; }
.final-cta h2 {
  color: white;
  font-size: clamp(38px, 4.4vw, 56px);
  margin: 0 0 16px;
  line-height: 1.05;
}
.final-cta h2 em {
  color: var(--sunglow);
  font-style: normal;
}
.final-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  max-width: 50ch;
  margin: 0 0 28px;
  line-height: 1.5;
}
.final-cta .form-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.final-cta .form-card h4 {
  margin: 0 0 6px;
  color: white;
  font-size: 18px;
}
.final-cta .form-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.field {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color var(--duration-2);
}
.field:focus { border-color: var(--sunglow); }
.field::placeholder { color: rgba(255,255,255,0.45); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.row-2 .field { margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer {
  background: #3b4559;
  color: rgba(255,255,255,0.7);
  padding: 70px 24px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.4fr;
  gap: 36px;
}
.footer-brand img {
  height: 32px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  max-width: 32ch;
}
.footer h5 {
  color: white;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 16px;
  font-family: var(--font-display);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  text-decoration: none;
  transition: color var(--duration-2);
}
.footer a:hover { color: var(--sunglow); }
.footer-contact .line {
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact .line svg {
  color: rgba(255,199,44,0.7);
  flex-shrink: 0;
  margin-top: 2px;
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--duration-2);
}
.socials a:hover { background: var(--sunglow); color: #1B2235; border-color: var(--sunglow); }
.footer-bottom {
  max-width: 1280px;
  margin: 50px auto 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-bottom .legal a { font-size: 12px; }
.footer-bottom .region-pick { font-size: 12px; opacity: 0.7; cursor: pointer; padding: 6px 10px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; }

/* ---------- Footer v2 (clean 4-col layout) ---------- */
.footer-inner-v2 {
  grid-template-columns: 1fr 1.2fr 1fr 1.6fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h5 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 22px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col a {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
}
.footer-col .ext-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col .ext-link svg { opacity: 0.7; }
.country-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  max-width: 360px;
  transition: border-color var(--duration-2), background var(--duration-2);
}
.country-selector:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); }
.country-flag { font-size: 18px; line-height: 1; }
.country-name { flex: 1; }
.country-chev { opacity: 0.65; }
.footer-col .stay-connected { margin-top: 36px; margin-bottom: 12px; }
.stay-region {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 22px;
}
.footer-contact-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.footer-contact-v2 .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.footer-contact-v2 .contact-row svg {
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
  margin-top: 2px;
}
.socials-v2 {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.socials-v2 a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.footer-bottom-v2 {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  margin-top: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-logo-mini {
  height: 22px;
  width: auto;
  opacity: 0.85;
}
.footer-bottom-v2 .legal {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom-v2 .legal a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.legal-sep {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
}
@media (max-width: 1080px) {
  .footer-inner-v2 { grid-template-columns: 1fr 1fr; }
  .footer-col-wide { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-inner-v2 { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-v2 { flex-direction: column; align-items: flex-start; }
}

/* ---------- Footer trust strip ---------- */
.footer-trust {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
}
.footer-trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-badge {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--qashier-blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.trust-item strong {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.trust-item span:not(.trust-badge) {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ---------- Footer regulatory disclosure ---------- */
.footer-reg {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 28px 32px 0;
}
.footer-reg-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-reg p {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.42);
  margin: 0;
}
.footer-reg strong { color: rgba(255,255,255,0.7); font-weight: 700; }
.footer-contact .hours {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: inline-block;
}
@media (max-width: 1024px) {
  .footer-trust-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-reg-inner { grid-template-columns: 1fr; }
}

/* ---------- Industry illustrations (mini scenes) ---------- */
.scene-cafe, .scene-retail, .scene-beauty, .scene-bar, .scene-events, .scene-franchise {
  width: 90%;
  height: 60%;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.scene-cafe {
  background: linear-gradient(160deg, #B5C5A8, #6F8A65);
}
.scene-cafe::before {
  content: "";
  position: absolute;
  bottom: 12%; left: 12%; right: 12%; height: 35%;
  background: rgba(255,255,255,0.25);
  border-radius: 6px;
}
.scene-cafe::after {
  content: "☕";
  position: absolute;
  top: 18%; left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
}

/* ---------- Theme variants ---------- */
html[data-theme="navy"] .hero-mk {
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(255,199,44,0.18), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(124,166,222,0.12), transparent 60%),
    linear-gradient(135deg, #15171F 0%, #2C3341 60%, #3B4559 100%);
}
html[data-theme="light"] .hero-mk {
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(255,199,44,0.30), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(71,92,174,0.18), transparent 60%),
    linear-gradient(135deg, #F2F3F7 0%, #E5E9F4 100%);
  color: var(--fg-1);
}
html[data-theme="light"] .hero-mk h1 { color: var(--fg-1); }
html[data-theme="light"] .hero-mk .sub { color: var(--fg-2); }
html[data-theme="light"] .hero-eyebrow { background: rgba(71,92,174,0.10); border-color: rgba(71,92,174,0.20); color: var(--qashier-blue); }
html[data-theme="light"] .btn-ghost { background: white; color: var(--fg-1); border-color: var(--border-1); }
html[data-theme="light"] .hero-meta { color: var(--fg-3); }

html[data-motion="subtle"] .hw,
html[data-motion="subtle"] .super-device,
html[data-motion="subtle"] .super-chip,
html[data-motion="subtle"] .super-orbit,
html[data-motion="subtle"] .super-orbit-2,
html[data-motion="subtle"] .hero-eyebrow .dot { animation: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav-links { display: none; }
}
@media (max-width: 1080px) {
  .hero-mk-inner, .super-inner, .backed-inner, .stats-band .head-row, .final-cta {
    grid-template-columns: 1fr;
  }
  .want-grid, .ind-grid, .stories-grid, .stats-grid, .fourp-grid, .footer-inner, .logo-row {
    grid-template-columns: 1fr 1fr;
  }
  .ind-card.feat { grid-column: 1 / -1; grid-row: auto; min-height: 320px; }
  .hero-hw { min-height: 380px; }
  .hw-xl { width: 320px; right: 35%; }
  .hw-x2 { width: 200px; }
  .hw-xs { width: 130px; }
}
@media (max-width: 900px) {
  .hero-mk h1 { letter-spacing: 0.22em; font-size: clamp(28px, 6vw, 56px); line-height: 1.22; }
}
@media (max-width: 640px) {
  .hero-mk h1 { letter-spacing: 0.14em; font-size: clamp(24px, 7vw, 40px); line-height: 1.28; padding: 0 16px; }
}
@media (max-width: 640px) {
  .want-grid, .ind-grid, .stories-grid, .stats-grid, .fourp-grid, .footer-inner, .logo-row {
    grid-template-columns: 1fr;
  }
  .fourp-grid { grid-template-columns: 1fr 1fr; }
  .fourp-cell { border-right: 0; border-bottom: 1px solid var(--border-1); padding: 20px 16px; }
  .fourp-cell:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--border-1); }
  .fourp-cell:nth-child(even) { padding-right: 0; }
  .fourp-cell:nth-last-child(2) { border-bottom: 0; }
  .section { padding: 70px 20px; }
  .hero-mk { padding: 40px 20px 0; }
}

/* ---------- Role pills (hero) ---------- */
.role-pills {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.role-pills-label {
  font-size: 16px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-right: 4px;
}
.role-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  text-align: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all var(--duration-2) var(--ease-standard);
}
.role-pill:hover {
  background: var(--qashier-blue);
  color: #fff;
  border-color: var(--qashier-blue);
  transform: translateY(-1px);
}

/* ---------- Product video frames ---------- */
.product-vid {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
  background: var(--bg-soft);
  display: block;
}
.sticky-frame .product-vid {
  max-width: 100%;
  max-height: 100%;
}

/* ---------- Hardware showcase ---------- */
.hardware {
  background: var(--bg-soft);
  padding: 160px 32px;
}
.hardware .section-head-ed.v-center { white-space: nowrap; }
.hardware .section-head-ed.v-center h2 { max-width: none; }
.hardware .section-head-ed.v-center .ed-lede { max-width: none; }
@media (max-width: 1100px) {
  .hardware .section-head-ed.v-center,
  .hardware .section-head-ed.v-center h2,
  .hardware .section-head-ed.v-center .ed-lede { white-space: normal; }
  .hardware .section-head-ed.v-center h2 { max-width: 22ch; }
  .hardware .section-head-ed.v-center .ed-lede { max-width: 60ch; }
}

/* Hardware tabs reuse industries .indt-tabs/.indt-tab — only override count + width */
.hw-product-tabs {
  position: relative;
  box-shadow: none;
  z-index: 1;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 40px auto -1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}
.hw-product-tabs .indt-tab-name .prod-slim { color: var(--fg-3); }
.hw-product-tabs .indt-tab.active .indt-tab-name .prod-slim { color: var(--qashier-blue); }
.hw-product-tabs .indt-tab-icon.hw-tab-img {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hw-product-tabs .indt-tab-icon.hw-tab-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0.35) opacity(0.75);
  transition: filter 0.25s var(--ease-standard);
}
.hw-product-tabs .indt-tab:nth-child(2) .indt-tab-icon.hw-tab-img {
  width: 54px;
  height: 50px;
}
.hw-product-tabs .indt-tab:nth-child(2) .indt-tab-icon.hw-tab-img img {
  transform: scale(1.05) translateY(-4px);
}
.hw-product-tabs .indt-tab.active .indt-tab-icon.hw-tab-img img,
.hw-product-tabs .indt-tab:hover .indt-tab-icon.hw-tab-img img {
  filter: grayscale(0) opacity(1);
}

.prod-slim {
  font-weight: 400;
  font-size: 0.62em;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  vertical-align: 0.12em;
  margin-left: 0.18em;
  text-transform: uppercase;
}

.hw-stage {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 56px;
  align-items: center;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 24px;
  padding: 48px;
  animation: hwFade 0.5s var(--ease-standard);
}
.hw-stage:has(.hw-bundle) {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 64px;
  align-items: start;
}
@keyframes hwFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hw-visual {
  position: relative;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  min-height: 520px;
}
.hw-visual img {
  width: 80%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(15,22,38,0.18));
}
.hw-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(15,22,38,0.85);
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.hw-content { padding: 8px 24px 8px 0; }
.hw-tagline {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  margin-bottom: 10px;
}
.hw-name {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--fg-1);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hw-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 28px;
  max-width: 42ch;
}
.hw-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
  margin: 0 0 28px;
  padding: 24px 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.hw-spec { display: flex; flex-direction: column; gap: 6px; }
.hw-price-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 4px;
  font-weight: 700;
}
.hw-spec--wide { grid-column: 1 / -1; }
.hw-tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hw-tick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-1);
  line-height: 1.4;
}
.hw-tick-list--plain li::before { display: none; }
.hw-tick-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--qashier-blue, #475CAE) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}
.hw-spec-k {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  font-weight: 500;
}
.hw-spec-v {
  font-size: 15px;
  line-height: 1.3;
  color: var(--fg-1);
  font-weight: 600;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.hw-buy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hw-content--accent .hw-buy {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.hw-content--accent .hw-name,
.hw-content--accent .hw-name .prod-slim,
.hw-content--accent .hw-price {
  background: linear-gradient(90deg, var(--qashier-blue) 0%, var(--blue-9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hw-tnc {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #7c7e7f;
}
.hw-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hw-monthly {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 6px;
}
.hw-buy-actions { display: flex; gap: 10px; }
.btn-ghost-line {
  background: white;
  color: var(--fg-1);
  border: 1.5px solid var(--border-1);
}
.btn-ghost-line:hover { border-color: var(--qashier-blue); color: var(--qashier-blue); }

.hw-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.hw-extra {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 14px;
}
.hw-extra-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--qashier-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.hw-extra-icon svg { width: 20px; height: 20px; stroke: currentColor; }
.hw-extra strong { display: block; color: var(--fg-1); font-weight: 700; font-size: 14.5px; margin-bottom: 2px; }
.hw-extra span:not(.hw-extra-icon) { font-size: 13px; color: var(--fg-3); line-height: 1.5; }

@media (max-width: 1024px) {
  .hw-stage { grid-template-columns: 1fr; padding: 32px; }
  .hw-extras { grid-template-columns: 1fr; }
}

/* ---- QashierX2 Bundle layout ---- */
.hw-bundle {
  padding: 8px 24px 8px 0;
  max-width: 640px;
}
.hw-bundle-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  font-weight: 700;
  margin-bottom: 6px;
}
.hw-bundle-price {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 28px;
}
.hw-bundle-amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  color: var(--qashier-blue);
  letter-spacing: -0.02em;
}
.hw-bundle-unit {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: var(--fg-3);
  letter-spacing: -0.01em;
}
.hw-bundle-divider {
  height: 1px;
  background: var(--border-1);
  margin: 28px 0;
}
.hw-bundle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}
.hw-bf-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--qashier-blue);
}
.hw-bf-icon {
  width: 22px;
  height: 22px;
  color: var(--qashier-blue);
  flex-shrink: 0;
}
.hw-bf-list,
.hw-bundle-rows {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hw-bf-list li,
.hw-bundle-rows li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  color: var(--fg-1);
}
.hw-bf-tick {
  width: 22px;
  height: 22px;
  color: var(--qashier-blue);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hw-bf-tick svg { width: 100%; height: 100%; }
.hw-bundle-box {
  background: #F2F3F7;
  border-radius: 20px;
  padding: 28px 32px;
}
.hw-bundle-box-title,
.hw-bundle-sec-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--qashier-blue);
  margin-bottom: 18px;
}
.hw-bundle-rows li {
  justify-content: flex-start;
}
.hw-bundle-row-label {
  flex: 1;
}
.hw-bundle-row-tag {
  font-weight: 700;
  color: var(--qashier-blue);
  letter-spacing: 0.06em;
}
.hw-bundle-row-price {
  font-weight: 700;
  color: var(--qashier-blue);
  font-variant-numeric: tabular-nums;
}
.hw-bundle-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 32px;
  padding: 18px 32px;
  font-size: 17px;
}
.hw-bundle-disclaimer {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 18px 0 0;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--bg-soft);
  padding: 160px 32px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--duration-3) var(--ease-emphasis);
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
  border-color: rgba(71,92,174,0.20);
}
.price-card.featured {
  background: linear-gradient(160deg, #1F243C 0%, #2C3768 60%, #475CAE 100%);
  color: white;
  border: 0;
  box-shadow: 0 30px 60px rgba(31,36,60,0.25);
}
.price-card.featured::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(400px 200px at 100% 0%, rgba(255,199,44,0.20), transparent 60%);
  pointer-events: none;
}
.price-tag, .price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price-tag { color: var(--qashier-blue); }
.price-badge {
  background: var(--sunglow);
  color: #1B2235;
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.price-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.price-card.featured .price-name { color: white; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.price-amount .cur {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-3);
}
.price-amount .amt {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--fg-1);
}
.price-amount .amt-custom {
  font-size: 44px;
  font-weight: 800;
  color: var(--fg-1);
}
.price-amount .per {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 600;
  margin-left: 4px;
}
.price-card.featured .price-amount .cur,
.price-card.featured .price-amount .per { color: rgba(255,255,255,0.65); }
.price-card.featured .price-amount .amt,
.price-card.featured .price-amount .amt-custom { color: white; }
.price-blurb {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.015em;
  color: var(--fg-2);
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.price-card.featured .price-blurb { color: rgba(255,255,255,0.78); }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--fg-1);
  font-weight: 600;
  border-top: 1px solid var(--border-1);
}
.price-card.featured .price-list li {
  color: rgba(255,255,255,0.92);
  border-top-color: rgba(255,255,255,0.10);
}
.price-list li:first-child { border-top: 0; }
.li-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(71,92,174,0.10);
  color: var(--qashier-blue);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.li-check svg { width: 12px; height: 12px; }
.price-card.featured .li-check {
  background: rgba(255,199,44,0.20);
  color: var(--sunglow);
}
.price-cta {
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.btn-ghost-dark {
  background: var(--river-bed);
  color: white;
}
.btn-ghost-dark:hover {
  background: var(--blue-11);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31,36,60,0.25);
}
.price-foot {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 600;
}

/* ---------- Sticky CTA rail ---------- */
.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 14px;
  background: var(--river-bed);
  color: white;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(15,22,38,0.30), 0 8px 16px rgba(15,22,38,0.18);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--duration-3) var(--ease-emphasis);
}
.sticky-cta.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.sticky-cta:hover {
  background: var(--blue-11);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(15,22,38,0.40);
}
.sc-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sunglow);
  box-shadow: 0 0 0 0 rgba(255,199,44,0.6);
  animation: pulseDot 1.8s ease-out infinite;
  flex-shrink: 0;
}
.sc-label {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sc-label strong {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.sc-label span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.sc-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sunglow);
  color: #1B2235;
  display: grid; place-items: center;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .price-grid { grid-template-columns: 1fr; }
  .role-pills { width: 100%; }
}
@media (max-width: 640px) {
  .sticky-cta { right: 12px; bottom: 12px; padding: 10px 14px 10px 12px; }
  .sc-label span { display: none; }
}


/* --------------------------------------------------------------------------
   3. MODERN COMPONENTS — ticker, bento, stories, pricing tweaks
   -------------------------------------------------------------------------- */
/* === Modern fintech editorial upgrades === */

/* Tabular figures for trust/numbers */
.num, .stat-c .num, .ticker-amt, .super-feat .name, [data-num] { font-variant-numeric: tabular-nums; }

/* ---------- Live transaction ticker ---------- */
.ticker-band {
  background: var(--river-bed);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}
.ticker-band::before, .ticker-band::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 120px;
  z-index: 2; pointer-events: none;
}
.ticker-band::before { left: 0; background: linear-gradient(90deg, var(--river-bed), transparent); }
.ticker-band::after  { right: 0; background: linear-gradient(-90deg, var(--river-bed), transparent); }
.ticker-row {
  display: flex;
  gap: 0;
  padding: 32px 0;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  width: max-content;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.ticker-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34A853;
  box-shadow: 0 0 8px rgba(52,168,83,0.6);
  flex-shrink: 0;
}
.ticker-item .pm { color: var(--sunglow); font-weight: 700; }
.ticker-item .amt { color: white; font-weight: 700; font-variant-numeric: tabular-nums; }
.ticker-item .biz { color: rgba(255,255,255,0.6); }
.ticker-item .when { color: rgba(255,255,255,0.4); font-size: 11px; }
.ticker-sep {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: rgba(255,255,255,0.18);
  font-size: 8px;
}
.ticker-label {
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  background: var(--sunglow);
  color: var(--river-bed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.ticker-label .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
  animation: pulseDotGreen 1.6s ease-out infinite;
}
@keyframes pulseDotGreen {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ---------- Editorial section head (replaces centered) ---------- */
.section-head-ed {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 88px;
  position: relative;
}
.section-head-ed::before {
  content: none;
}
.section-head-ed .ed-eyebrow {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--qashier-blue);
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  gap: 12px;
  align-items: center;
}
.section-head-ed .ed-eyebrow .num {
  color: var(--fg-3);
  font-weight: 600;
}
.section-head-ed h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  color: var(--fg-1);
  text-wrap: balance;
}
.section-head-ed h2 .accent {
  background: linear-gradient(90deg, #2c3a78 0%, #475cae 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.section-head-ed .ed-lede {
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.012em;
  color: var(--fg-2);
  margin: 0 0 8px;
  max-width: 56ch;
}
.section-head-ed.no-rule { border-top: 0; padding-top: 0; }
.section-head-ed.no-rule::before { display: none; }
.section-head-ed.dark { border-top-color: rgba(255,255,255,0.12); }
.section-head-ed.dark::before { background: var(--sunglow); }
.section-head-ed.dark h2 { color: white; }
.section-head-ed.dark h2 .accent { color: var(--sunglow); -webkit-text-fill-color: var(--sunglow); }
.section-head-ed.dark .ed-lede { color: rgba(255,255,255,0.72); }
.section-head-ed.dark .ed-eyebrow { color: var(--sunglow); }
.section-head-ed.dark .ed-eyebrow .num { color: rgba(255,255,255,0.4); }

/* Variant: center - full-bleed centered headline */
.section-head-ed.v-center {
  grid-template-columns: 1fr;
  text-align: center;
  align-items: center;
  justify-items: center;
  gap: 24px;
}
.section-head-ed.v-center::before { left: 50%; transform: translateX(-50%); width: 64px; }
.section-head-ed.v-center .ed-eyebrow { justify-content: center; }
.section-head-ed.v-center h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.section-head-ed.v-center .ed-lede { max-width: 60ch; margin: 0 auto; }

/* 4Ps section: keep h2 + lede on one line each (desktop) */
.timeline-4p .section-head-ed h2 { max-width: none; white-space: nowrap; }
.timeline-4p .section-head-ed .ed-lede { max-width: none; white-space: nowrap; }
@media (max-width: 900px) {
  .timeline-4p .section-head-ed h2,
  .timeline-4p .section-head-ed .ed-lede {
    white-space: normal;
    max-width: 22ch;
  }
  .timeline-4p .section-head-ed .ed-lede { max-width: 60ch; }
}

/* Variant: stack - left-aligned, single col, intimate */
.section-head-ed.v-stack {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 720px;
}
.section-head-ed.v-stack h2 { max-width: 18ch; }
.section-head-ed.v-stack .ed-lede { max-width: 56ch; }

@media (max-width: 900px) {
  .section-head-ed { grid-template-columns: 1fr !important; gap: 24px; }
}

/* ---------- Sticky scroll narrative ---------- */
.sticky-narrative {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.sticky-copy {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 60px 0;
}
.sticky-step {
  opacity: 0.25;
  transition: opacity 0.5s ease;
  padding: 38px 0;
  border-top: 1px solid var(--border-1);
  cursor: pointer;
}
.sticky-step:first-child { border-top: 0; }
.sticky-step.active { opacity: 1; }
.sticky-step .num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--qashier-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-step .num::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--qashier-blue);
}
.sticky-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--fg-1);
}
.sticky-step h3 em { color: var(--qashier-blue); font-style: normal; font-weight: 700; }
.sticky-step p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 50ch;
}
.sticky-stage {
  position: sticky;
  top: 120px;
  height: calc(100vh - 200px);
  min-height: 560px;
  max-height: 720px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #F2F4FB 0%, #E5E9F4 100%);
  overflow: hidden;
  border: 1px solid var(--border-1);
}
.sticky-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(16px);
  padding: 40px;
}
.sticky-frame.active { opacity: 1; transform: translateY(0); }

/* ---------- Monumental Stats band ---------- */
.megastats {
  background: linear-gradient(180deg, white 0%, var(--bg-soft) 100%);
  padding: 160px 32px;
  position: relative;
}
.megastats-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.megastats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.megastat {
  padding: 60px 28px;
  border-right: 1px solid var(--border-1);
  position: relative;
}
.megastat:last-child { border-right: 0; }
.megastat .ms-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: var(--qashier-blue);
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
}
.megastat .ms-num .unit {
  font-size: 0.4em;
  letter-spacing: -0.02em;
  margin-left: 4px;
  color: var(--qashier-blue);
  font-weight: 700;
}
.megastat .ms-lbl {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 700;
  font-family: var(--font-display);
}
.megastat .ms-sub {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  margin-top: 8px;
  max-width: 22ch;
}
.megastats-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 18px;
}
.megastats-foot .awards-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.megastats-foot .award-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.megastats-foot .award-mini::before {
  content: "★";
  color: var(--sunglow);
  font-size: 14px;
}

/* ---------- Horizontal 4P timeline ---------- */
.timeline-4p {
  background: var(--bg-soft);
  padding: 160px 32px;
}
.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
}
.timeline-row::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--blue-11) 0%, var(--qashier-blue) 100%);
  transform-origin: left;
  animation: rulerGrow 2s ease-out;
}
.timeline-row::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #475cae;
  box-shadow: 0 0 6px rgba(71, 92, 174, 0.7), 0 0 12px rgba(71, 92, 174, 0.35);
  pointer-events: none;
  animation: timelineGlow 5.5s ease-in-out 2.2s infinite;
  opacity: 0;
}
@keyframes rulerGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes timelineGlow {
  0%   { left: 0; opacity: 0; }
  6%   { opacity: 1; }
  60%  { left: calc(100% - 8px); opacity: 1; }
  72%  { left: calc(100% - 8px); opacity: 0; }
  100% { left: 0; opacity: 0; }
}
[data-motion="off"] .timeline-row::after,
[data-motion="subtle"] .timeline-row::after { display: none; }
@media (prefers-reduced-motion: reduce) {
  .timeline-row::after { display: none; }
}
.timeline-cell {
  padding: 36px 24px 0;
  border-right: 1px solid var(--border-1);
  position: relative;
}
.timeline-cell:last-child { border-right: 0; }
.timeline-cell .tl-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--qashier-blue);
  margin-bottom: 8px;
}
.timeline-cell .tl-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 22px;
}
.timeline-cell .tl-icon img {
  width: clamp(60px, 5.6vw, 84px);
  height: clamp(60px, 5.6vw, 84px);
  object-fit: contain;
  display: block;
  transform-origin: center;
  animation: tlIconFloat 5.5s ease-in-out infinite;
}
.timeline-cell:nth-child(1) .tl-icon img { animation-delay: 0s; }
.timeline-cell:nth-child(2) .tl-icon img { animation-delay: 0.6s; }
.timeline-cell:nth-child(3) .tl-icon img { animation-delay: 1.2s; }
.timeline-cell:nth-child(4) .tl-icon img { animation-delay: 1.8s; }
.timeline-cell .tl-icon small {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--qashier-blue);
}
@keyframes tlIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25%      { transform: translateY(-6px) rotate(-2deg) scale(1.02); }
  50%      { transform: translateY(0) rotate(0deg) scale(1); }
  75%      { transform: translateY(-3px) rotate(2deg) scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-cell .tl-icon img { animation: none; }
}
[data-motion="off"] .timeline-cell .tl-icon img { animation: none; }
.timeline-cell .tl-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin: 0 0 10px;
}
.timeline-cell .tl-c {
  font-size: 14.5px;
  line-height: 1.55;
  letter-spacing: 0.015em;
  color: var(--fg-2);
  margin: 0;
}

/* ---------- Bento Industries (refresh) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.bento {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border-1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: all 0.4s var(--ease-emphasis);
}
.bento:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); border-color: rgba(71,92,174,0.25); }
.bento .bento-arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--qashier-blue);
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
}
.bento .bento-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--qashier-blue);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.bento h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--fg-1);
}
.bento p {
  font-size: 13px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.5;
}
.bento.b-feat { grid-column: span 3; grid-row: span 2; padding: 36px; }
.bento.b-feat h3 { font-size: 36px; line-height: 1.0; margin-bottom: 12px; }
.bento.b-feat p { font-size: 15px; max-width: 38ch; }
.bento.b-feat { background: linear-gradient(160deg, var(--blue-9) 0%, var(--blue-11) 100%); border: 0; }
.bento.b-feat .bento-tag { color: var(--sunglow); }
.bento.b-feat h3 { color: white; }
.bento.b-feat p { color: rgba(255,255,255,0.78); }
.bento.b-feat .bento-arrow { background: var(--sunglow); color: var(--river-bed); }
.bento.b-tall { grid-column: span 3; grid-row: span 1; }
.bento.b-wide { grid-column: span 3; grid-row: span 1; }
.bento.b-sq { grid-column: span 2; grid-row: span 1; }
.bento.b-3 { grid-column: span 2; grid-row: span 1; }
.bento.b-acc {
  background: linear-gradient(160deg, #FFE9A1 0%, #FFC72C 100%);
  border: 0;
}
.bento.b-acc .bento-tag, .bento.b-acc h3 { color: var(--river-bed); }
.bento.b-acc p { color: rgba(59,69,89,0.75); }
.bento.b-acc .bento-arrow { background: var(--river-bed); color: var(--sunglow); }
.bento .bento-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}
.bento > * { position: relative; z-index: 1; }

/* mini ui chips inside bento */
.bento-ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  opacity: 0.95;
  z-index: 0;
}
.bento-ui .chip {
  position: absolute;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: 10px;
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 700;
  color: var(--fg-1);
  box-shadow: 0 6px 14px rgba(15,22,38,0.10);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ---------- Dark interlude ---------- */
.interlude {
  background: var(--river-bed);
  color: white;
  padding: 160px 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.interlude::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 500px at 80% 20%, rgba(255,199,44,0.10), transparent 60%);
  pointer-events: none;
}
.interlude-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.interlude-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin: 0;
  text-wrap: balance;
}
.interlude-quote .hl { color: var(--sunglow); font-style: normal; font-weight: 700; }
.interlude-attr {
  margin-top: 36px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  font-family: var(--font-display);
}
.interlude-attr strong { color: white; display: block; margin-bottom: 4px; font-size: 15px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.interlude-figure {
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 60px;
}
.interlude-figure .big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--sunglow);
  font-variant-numeric: tabular-nums;
}
.interlude-figure .lab {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- Hardware product page ---------- */
.hw-section {
  background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
  padding: 160px 32px;
  overflow: hidden;
}
.hw-stage {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 0;
  position: relative;
}
.hw-stage .hw-device {
  position: relative;
  display: grid;
  place-items: center;
}
.hw-stage .hw-device img {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 40px 60px rgba(15,22,38,0.18));
  animation: hwSpin 14s ease-in-out infinite;
}
@keyframes hwSpin {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50% { transform: rotate(1.5deg) translateY(-10px); }
}
.hw-spec {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hw-spec.r { text-align: right; align-items: flex-end; }
.spec-line {
  position: relative;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--qashier-blue);
}
.hw-spec.r .spec-line {
  padding: 0 18px 0 0;
  border-left: 0;
  border-right: 2px solid var(--qashier-blue);
}
.spec-line .k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--qashier-blue);
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.spec-line .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  color: var(--fg-1);
  letter-spacing: -0.01em;
}
.spec-line .desc {
  font-size: 13.5px;
  color: var(--fg-2);
  margin-top: 4px;
  line-height: 1.45;
  max-width: 28ch;
}
.hw-cta {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

/* ---------- Dense regulatory footer ---------- */
.reg-strip {
  background: var(--riverbed-11);
  color: rgba(255,255,255,0.55);
  padding: 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.reg-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  font-size: 12px;
}
.reg-shield {
  display: flex; align-items: center; gap: 10px;
  color: var(--sunglow);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}
.reg-text {
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}
.reg-text strong { color: rgba(255,255,255,0.85); font-weight: 700; }
.reg-meta {
  display: flex; gap: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* responsive overrides */
@media (max-width: 1080px) {
  .sticky-narrative { grid-template-columns: 1fr; }
  .sticky-copy, .sticky-stage { position: static; }
  .sticky-stage { height: 480px; min-height: 0; }
  .megastats-grid, .timeline-row { grid-template-columns: 1fr 1fr; }
  .megastat, .timeline-cell { border-right: 0; border-bottom: 1px solid var(--border-1); }
  .interlude-inner { grid-template-columns: 1fr; }
  .interlude-figure { border-left: 0; border-top: 1px solid rgba(255,255,255,0.14); padding: 40px 0 0; }
  .hw-stage { grid-template-columns: 1fr; }
  .hw-spec, .hw-spec.r { text-align: left; align-items: flex-start; }
  .hw-spec.r .spec-line { padding: 0 0 0 18px; border-right: 0; border-left: 2px solid var(--qashier-blue); }
  .section-head-ed { grid-template-columns: 1fr; gap: 28px; }
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento.b-feat { grid-column: span 3; }
  .bento.b-tall, .bento.b-wide { grid-column: span 3; }
  .bento.b-sq, .bento.b-3 { grid-column: span 3; }
}


/* --------------------------------------------------------------------------
   4. RESPONSIVE — mobile + tablet overrides
   -------------------------------------------------------------------------- */
/* Mobile (in-frame) styles — adapted from desktop design system */

html, body { margin: 0; padding: 0; }
.stage {
  min-height: 100vh;
  background: linear-gradient(180deg, #EDF0F7 0%, #DCE3F0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px 60px;
  box-sizing: border-box;
  font-family: var(--font-body);
}

/* ────────── Page shell ────────── */
.m-page {
  width: 100%;
  background: #fff;
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ────────── Top nav ────────── */
.m-nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border-1);
}
.m-nav-logo { height: 22px; width: auto; }
.m-nav-actions { display: flex; align-items: center; gap: 8px; }
.m-nav-cta {
  background: var(--qashier-blue); color: #fff; border: 0; border-radius: 999px;
  padding: 9px 16px; font-family: var(--font-display); font-weight: 700;
  font-size: 13px; cursor: pointer;
}
.m-hamburger {
  width: 36px; height: 36px; border: 0; background: transparent;
  display: grid; place-items: center; cursor: pointer; color: var(--fg-1);
}
.m-hamburger svg { width: 22px; height: 22px; }

/* ────────── Slide-in menu ────────── */
.m-menu-backdrop {
  position: fixed; inset: 0; background: rgba(15,22,38,0.5);
  z-index: 50; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.m-menu-backdrop.open { opacity: 1; pointer-events: auto; }
.m-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86%, 340px);
  background: #fff; z-index: 60;
  padding: 18px 20px 20px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.m-menu.open { transform: translateX(0); }
.m-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.m-menu-close {
  width: 36px; height: 36px; border: 0; background: rgba(15,22,38,0.06);
  border-radius: 50%; cursor: pointer; display: grid; place-items: center; color: var(--fg-1);
}
.m-menu-close svg { width: 18px; height: 18px; }
.m-menu-list { flex: 1; }
.m-menu-section { border-bottom: 1px solid var(--border-1); }
.m-menu-row {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--fg-1);
}
.m-menu-chev { display: inline-flex; transition: transform 0.2s; color: var(--fg-3); }
.m-menu-section.expanded .m-menu-chev { transform: rotate(180deg); }
.m-menu-children { padding: 0 4px 14px; display: flex; flex-direction: column; gap: 10px; }
.m-menu-children a { color: var(--fg-2); font-size: 14px; text-decoration: none; padding: 4px 0; }
.m-menu-foot {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 18px; margin-top: auto;
}
.m-menu-foot .btn {
  padding: 13px 20px; border-radius: 999px; text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  border: 0; cursor: pointer; text-decoration: none;
}
.m-menu-foot .btn-blue { background: var(--qashier-blue); color: #fff; }
.m-menu-foot .btn-ghost { background: transparent; color: var(--qashier-blue); border: 1.5px solid var(--qashier-blue); }

/* ────────── Hero ────────── */
.m-hero {
  position: relative; min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 22px 44px;
  overflow: hidden; color: #fff;
}
.m-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.m-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,22,38,0.25) 0%, rgba(15,22,38,0.65) 100%);
  z-index: 1;
}
.m-hero-inner { position: relative; z-index: 2; }
.m-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px; line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 0 14px; color: #fff;
}
.m-hero h1 .hl { color: var(--sunglow); }
.m-hero .sub {
  font-size: 15.5px; line-height: 1.5;
  color: rgba(255,255,255,0.86);
  margin: 0 0 24px;
}
.m-cta-row { display: flex; flex-direction: column; gap: 10px; }
.m-btn {
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; border: 0; cursor: pointer;
  text-align: center; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.m-btn-primary { background: var(--sunglow); color: var(--qashier-blue); }
.m-btn-blue { background: var(--qashier-blue); color: #fff; }
.m-btn-ghost { background: rgba(255,255,255,0.10); color: #fff; border: 1px solid rgba(255,255,255,0.24); }

/* ────────── Ticker ────────── */
.m-ticker {
  background: var(--riverbed-10); color: #fff;
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.m-ticker-label {
  display: flex; align-items: center; gap: 8px;
  padding: 0 18px 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.m-ticker-label .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
.m-ticker-track {
  display: flex; gap: 22px;
  white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,0.78);
}
.m-ticker-track .tick { display: inline-flex; align-items: center; gap: 8px; }
.m-ticker-track .pm { color: var(--sunglow); font-weight: 700; }
.m-ticker-track .amt { color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }
.m-ticker-track .biz { color: rgba(255,255,255,0.6); }
.m-ticker-track .sep { color: rgba(255,255,255,0.2); font-size: 6px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ────────── Section base ────────── */
.m-section { padding: 56px 22px; }
.m-section-soft { background: var(--bg-soft); }

.m-edhead { margin-bottom: 28px; }
.m-edhead .ed-eyebrow {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--qashier-blue);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(71,92,174,0.25);
}
.m-edhead h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; line-height: 1.06; letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.m-edhead h2 .accent {
  background: linear-gradient(90deg, var(--qashier-blue), var(--blue-9));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.m-edhead .ed-lede {
  font-size: 15px; line-height: 1.55;
  color: var(--fg-2); margin: 0;
}

/* ────────── Want cards ────────── */
.m-want-grid { display: flex; flex-direction: column; gap: 14px; }
.m-want-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.m-want-card.dark { background: var(--qashier-blue); color: #fff; border-color: transparent; }
.m-want-visual {
  height: 200px;
  background: var(--bg-soft);
  overflow: hidden; position: relative;
}
.m-want-card.dark .m-want-visual { background: var(--blue-10); }
.m-want-visual video { width: 100%; height: 100%; object-fit: cover; display: block; }
.m-want-body { padding: 20px 22px 24px; }
.m-want-body .tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--qashier-blue);
  margin-bottom: 10px;
}
.m-want-card.dark .m-want-body .tag { color: var(--sunglow); }
.m-want-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.m-want-card.dark .m-want-body h3 { color: #fff; }
.m-want-body p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; }
.m-want-card.dark .m-want-body p { color: rgba(255,255,255,0.78); }

/* ────────── 4Ps ────────── */
.m-4p-grid { display: flex; flex-direction: column; gap: 14px; }
.m-4p-cell {
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 18px; padding: 22px 20px;
  display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: start;
}
.m-4p-icon { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.m-4p-icon img { width: 56px; height: 56px; object-fit: contain; }
.m-4p-icon small {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--qashier-blue);
}
.m-4p-cell h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; line-height: 1.2; margin: 0 0 6px;
}
.m-4p-cell p { font-size: 13.5px; color: var(--fg-2); margin: 0; line-height: 1.45; }

/* ────────── Industries ────────── */
.m-ind-tabs {
  display: flex; gap: 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 -22px 18px; padding: 4px 22px 14px;
}
.m-ind-tabs::-webkit-scrollbar { display: none; }
.m-ind-tab {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border-1);
  cursor: pointer; transition: all 0.2s;
  text-align: left;
}
.m-ind-tab .tab-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--fg-1);
}
.m-ind-tab .tab-sub {
  font-size: 11px; color: var(--fg-3);
}
.m-ind-tab.active {
  background: var(--qashier-blue); border-color: var(--qashier-blue);
}
.m-ind-tab.active .tab-name { color: #fff; }
.m-ind-tab.active .tab-sub { color: rgba(255,255,255,0.7); }

.m-ind-panel {
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 22px; padding: 24px 22px;
}
.m-ind-panel h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0 0 12px; color: var(--qashier-blue);
  text-wrap: pretty;
}
.m-ind-panel > p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--fg-2); margin: 0 0 18px;
}
.m-ind-bullets { list-style: none; padding: 0; margin: 0 0 22px; }
.m-ind-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--fg-2);
  margin-bottom: 10px;
}
.b-check {
  flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--qashier-blue); color: #fff;
  display: grid; place-items: center;
  margin-top: 1px;
}
.b-check svg { width: 11px; height: 11px; }

/* ────────── Hardware ────────── */
.m-hw-tabs {
  display: flex; gap: 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 -22px 18px; padding: 4px 22px 14px;
}
.m-hw-tabs::-webkit-scrollbar { display: none; }
.m-hw-tab {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 12px 16px; border-radius: 14px;
  background: #fff; border: 1px solid var(--border-1);
  cursor: pointer; text-align: left;
}
.m-hw-tab .tab-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--fg-1);
}
.m-hw-tab .tab-sub { font-size: 11px; color: var(--fg-3); }
.m-hw-tab.active { background: var(--qashier-blue); border-color: var(--qashier-blue); }
.m-hw-tab.active .tab-name { color: #fff; }
.m-hw-tab.active .tab-sub { color: rgba(255,255,255,0.7); }

.m-hw-stage {
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 22px; padding: 0 0 24px;
  margin-bottom: 18px;
}
.m-hw-visual {
  height: 260px; background: var(--bg-soft);
  border-radius: 22px 22px 0 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.m-hw-visual img { max-height: 220px; max-width: 80%; object-fit: contain; }
.m-hw-content { padding: 24px 22px 0; }
.m-hw-tagline {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--qashier-blue); margin-bottom: 8px;
}
.m-hw-content h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; line-height: 1.1; letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.m-hw-desc { font-size: 14px; color: var(--fg-2); margin: 0 0 22px; line-height: 1.5; }

.m-hw-specs { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.m-hw-specs .spec {
  display: flex; flex-direction: column; gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-1);
}
.m-hw-specs .spec:last-child { border-bottom: 0; padding-bottom: 0; }
.m-hw-specs .k {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3);
}
.m-hw-specs .v { font-size: 13.5px; color: var(--fg-1); }
.m-hw-specs .v-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.m-hw-specs .v-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--fg-1);
}

.m-hw-buy {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--border-1);
  gap: 14px;
}
.m-hw-buy .price-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-3);
}
.m-hw-buy .price {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; color: var(--qashier-blue);
}
.m-hw-buy .m-btn { padding: 12px 16px; font-size: 13px; }
.m-hw-tnc {
  font-size: 11px; color: var(--fg-3); margin: 0; padding-top: 8px;
}

.m-hw-extras { display: flex; flex-direction: column; gap: 12px; }
.m-hw-extras .extra {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; background: #fff;
  border: 1px solid var(--border-1); border-radius: 14px;
}
.m-hw-extras .i {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(71,92,174,0.10); color: var(--qashier-blue);
  border-radius: 50%; display: grid; place-items: center;
}
.m-hw-extras strong {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; margin-bottom: 2px;
}
.m-hw-extras span { font-size: 12.5px; color: var(--fg-3); line-height: 1.4; }

/* ────────── Credentials ────────── */
.m-cred-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 36px;
  padding: 22px 18px;
  background: linear-gradient(180deg, var(--riverbed-9), var(--riverbed-11));
  border-radius: 22px; color: #fff;
}
.m-cred-stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1;
  color: var(--sunglow);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
  word-break: break-word;
}
.m-cred-stat .lbl {
  font-size: 11.5px; color: rgba(255,255,255,0.72);
  line-height: 1.35;
}

.m-cred-stories-head { margin-bottom: 18px; }
.m-cred-stories-head h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.m-cred-stories-head .accent {
  background: linear-gradient(90deg, var(--qashier-blue), var(--blue-9));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.m-cred-stories-head p { font-size: 14px; color: var(--fg-2); margin: 0; }

.m-cred-stories { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.m-cred-story {
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 20px; overflow: hidden; cursor: pointer;
  text-align: left; padding: 0; font-family: inherit;
  width: 100%;
}
.m-cred-story .media {
  height: 180px; position: relative;
  background: var(--bg-soft); overflow: hidden;
}
.m-cred-story .media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.m-cred-story .play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.m-cred-story .play::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,22,38,0.4) 100%);
}
.m-cred-story .play svg {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.95);
  border-radius: 50%; padding: 14px;
  color: var(--qashier-blue); width: 50px; height: 50px;
}
.m-cred-story .body { padding: 20px; }
.m-cred-story .quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 15px; line-height: 1.5;
  color: var(--fg-1); margin: 0 0 14px;
}
.m-cred-story .attrib { font-size: 12.5px; color: var(--fg-3); }
.m-cred-story .attrib strong { color: var(--fg-1); font-weight: 700; }

/* trust blocks */
.m-trust { display: flex; flex-direction: column; gap: 18px; }
.m-trust-mpi {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 18px; border-radius: 18px;
  background: var(--qashier-blue); color: #fff;
}
.m-trust-mpi .shield {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,0.16); border-radius: 50%;
  display: grid; place-items: center; color: var(--sunglow);
}
.m-trust-mpi p { font-size: 13.5px; margin: 0; line-height: 1.45; color: rgba(255,255,255,0.92); }
.m-trust-mpi strong { color: #fff; font-weight: 700; }

.m-trust-block {
  padding: 22px 20px;
  background: #fff; border: 1px solid var(--border-1);
  border-radius: 18px;
}
.m-trust-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.m-trust-label::before, .m-trust-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border-1);
}
.m-trust-label span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3);
}
.m-trust-awards {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
}
.m-trust-awards .award {
  background: var(--bg-soft); border-radius: 10px;
  padding: 10px; display: grid; place-items: center;
  aspect-ratio: 1;
}
.m-trust-awards .award img { max-width: 100%; max-height: 100%; object-fit: contain; }
.m-trust-img { width: 100%; height: auto; display: block; }

/* video modal */
.m-video-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 100; display: grid; place-items: center;
  padding: 20px;
}
.m-video-modal-inner {
  width: 100%; max-width: 360px;
  background: #000; border-radius: 18px; overflow: hidden;
  position: relative;
}
.m-video-modal-close {
  position: absolute; top: 8px; right: 8px; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.18); color: #fff;
  border: 0; font-size: 22px; cursor: pointer;
}
.m-video-modal-frame { aspect-ratio: 16/9; background: #000; }
.m-video-modal-frame iframe { width: 100%; height: 100%; border: 0; }
.m-video-modal-cap {
  padding: 12px 16px; color: #fff; font-size: 12.5px;
}
.m-video-modal-cap strong { font-family: var(--font-display); }

/* ────────── Final CTA ────────── */
.m-final-cta {
  background: var(--bg-soft);
  padding: 56px 22px; text-align: center;
}
.m-final-cta h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; line-height: 1.06; letter-spacing: -0.02em;
  margin: 0 0 14px; color: var(--qashier-blue);
}
.m-final-cta h2 .hl {
  background: linear-gradient(90deg, var(--qashier-blue), var(--blue-9));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.m-final-cta p {
  font-size: 14.5px; color: var(--fg-2); margin: 0 auto 22px; max-width: 38ch;
}
.m-gp { display: inline-block; }
.m-gp img { height: 52px; width: auto; display: block; }

/* ────────── Footer ────────── */
.m-footer {
  background: var(--riverbed-7); color: rgba(255,255,255,0.72);
  padding: 40px 22px 24px;
}
.m-footer-cols {
  display: flex; flex-direction: column; gap: 26px; margin-bottom: 28px;
}
.m-footer-col h5 {
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 15px; margin: 0 0 12px;
}
.m-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.m-footer-col a { color: rgba(255,255,255,0.72); font-size: 14px; text-decoration: none; }
.m-footer-col a.ext { display: inline-flex; align-items: center; gap: 4px; }

.m-footer-country-block { margin-bottom: 28px; }
.m-footer-country-block h5 {
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: 15px; margin: 0 0 12px;
}
.m-footer-country-block h5.stay { margin-top: 22px; }
.m-footer-country {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 14px;
}
.m-footer-country .flag { font-size: 16px; }
.m-footer-country .chev { margin-left: auto; opacity: 0.6; }
.stay-region { font-size: 13px; margin-bottom: 14px; color: rgba(255,255,255,0.65); }
.m-footer-contact {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px;
}
.m-footer-contact .row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.45;
}
.m-footer-contact .row svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.5); }

.m-socials { display: flex; gap: 8px; }
.m-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.8);
}
.m-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 18px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.55);
}
.m-footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.m-footer-bottom .legal a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 12px; }
.m-footer-bottom .legal .sep { color: rgba(255,255,255,0.25); }
.m-footer-logo { height: 20px; opacity: 0.85; }

/* ────────── Sticky bottom CTA ────────── */
.m-sticky-cta {
  position: sticky; bottom: 0; z-index: 25;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--qashier-blue); color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.m-sticky-cta .sc-pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--sunglow);
  box-shadow: 0 0 0 0 rgba(255,199,44,0.6);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.m-sticky-cta .sc-label { flex: 1; min-width: 0; }
.m-sticky-cta .sc-label strong {
  display: block; font-family: var(--font-display);
  font-size: 13.5px; font-weight: 700; color: #fff;
}
.m-sticky-cta .sc-label span { font-size: 11px; color: rgba(255,255,255,0.72); }
.m-sticky-cta .sc-btn {
  background: var(--sunglow); color: var(--qashier-blue);
  padding: 10px 16px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
