@font-face {
  font-family: "PosShopSans";
  src: url("assets/fonts/proxima-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PosShopSans";
  src: url("assets/fonts/proxima-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111827;
  --muted: #647086;
  --soft: #f5f8fc;
  --panel: #ffffff;
  --line: #d9e3ef;
  --blue: #118ed0;
  --blue-dark: #0a4d8b;
  --cyan: #15c7d2;
  --pink: #e92e8c;
  --green: #1f9f6a;
  --amber: #f6b83f;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --soft-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, var(--soft) 34%, #ffffff 100%);
  color: var(--ink);
  font-family: "PosShopSans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 74%);
}

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

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

.brand-name {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 227, 239, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
  color: var(--ink);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(10, 77, 139, 0.16));
}

.brand span {
  font-size: 1.12rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue-dark);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.header-action {
  background: #eaf7fb;
  color: var(--blue-dark);
  box-shadow: 0 10px 28px rgba(17, 142, 208, 0.10);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), #0a72bb);
  color: #fff;
  box-shadow: 0 16px 34px rgba(17, 142, 208, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100svh - 62px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) clamp(22px, 6vw, 76px) clamp(96px, 10vw, 140px);
  background:
    linear-gradient(125deg, rgba(8, 16, 31, 0.98) 0%, rgba(10, 39, 67, 0.96) 52%, rgba(11, 95, 134, 0.88) 100%),
    #0d1625;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(21, 199, 210, 0.14), rgba(17, 142, 208, 0.06) 44%, rgba(233, 46, 140, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(245, 248, 252, 0.16));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(460px, 1.14fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  min-width: 0;
}

.hero-logo {
  width: clamp(108px, 13vw, 168px);
  height: auto;
  margin: 0 0 20px;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.36));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(4rem, 7vw, 7.6rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-title {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-title .brand-name {
  color: #ffffff;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 800;
  line-height: 1.42;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
}

.hero-proof div {
  padding: 14px 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-proof dt {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  align-self: start;
  min-height: 560px;
  padding-top: 18px;
  perspective: 1100px;
  display: grid;
  place-items: start center;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  width: min(100%, 840px);
  aspect-ratio: 1.42 / 1;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(10, 27, 47, 0.72);
  box-shadow:
    0 44px 110px rgba(3, 9, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: rotateX(3deg) rotateY(-7deg);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(21, 199, 210, 0.48), rgba(255, 255, 255, 0.06) 34%, rgba(17, 142, 208, 0.36));
  opacity: 0.72;
}

.hero-showcase::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 12%;
  bottom: -28px;
  height: 48px;
  border-radius: 50%;
  background: rgba(21, 199, 210, 0.28);
  filter: blur(28px);
}

.hero-dashboard-bg {
  position: absolute;
  inset: 28px -34px auto 68px;
  z-index: 1;
  width: 92%;
  height: 66%;
  object-fit: cover;
  object-position: top left;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  opacity: 0.88;
  filter: saturate(0.98) contrast(0.94);
  transform: rotate(1.4deg) translate3d(0, 0, 0);
  box-shadow: 0 24px 58px rgba(3, 9, 20, 0.32);
  animation: heroDashboardDrift 12s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.hero-promo-foreground {
  position: absolute;
  left: 4%;
  bottom: 8%;
  z-index: 3;
  width: 64%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 28px 64px rgba(3, 9, 20, 0.34);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(21, 199, 210, 0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.hero-orbit-one {
  width: min(92%, 780px);
  aspect-ratio: 1 / 0.48;
  top: 90px;
  right: 0;
}

.hero-orbit-two {
  width: min(72%, 610px);
  aspect-ratio: 1 / 0.42;
  bottom: 86px;
  left: 42px;
  opacity: 0.65;
}

.hero-chip {
  position: absolute;
  z-index: 4;
  min-width: 180px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 58px rgba(3, 9, 20, 0.22);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.hero-chip-sales {
  left: -1%;
  bottom: 42px;
}

.hero-chip-live {
  right: 0;
  top: 34px;
  min-width: 148px;
}

.hero-chip-live::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(31, 159, 106, 0.32);
  animation: activePulse 2.6s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.hero-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-chip strong {
  display: block;
  margin-top: 5px;
  color: var(--blue-dark);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

@keyframes heroDashboardDrift {
  0%,
  100% {
    object-position: top left;
    transform: rotate(1.4deg) translate3d(0, 0, 0);
  }

  50% {
    object-position: 58% 18%;
    transform: rotate(1.4deg) translate3d(-6px, -4px, 0);
  }
}

@keyframes activePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(31, 159, 106, 0.32);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(31, 159, 106, 0);
  }
}

.metric-band {
  width: min(calc(100% - 36px), var(--max));
  margin: -60px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--panel);
  border: 1px solid rgba(217, 227, 239, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric {
  position: relative;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metric::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 44px;
  height: 4px;
  background: var(--cyan);
}

.metric:nth-child(2)::before {
  background: var(--blue);
}

.metric:nth-child(3)::before {
  background: var(--pink);
}

.metric:nth-child(4)::before {
  background: var(--green);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 118px) 0;
}

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

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

.section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.dashboard-copy p,
.promo-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.business-visibility {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.visibility-copy {
  max-width: 610px;
}

.visibility-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.visibility-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.visibility-points span {
  padding: 9px 12px;
  border: 1px solid rgba(17, 142, 208, 0.14);
  border-radius: 999px;
  background: rgba(232, 248, 247, 0.78);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.visibility-board {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 239, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 243, 249, 0.88)),
    #fff;
  box-shadow: var(--shadow);
}

.visibility-board::before {
  content: "";
  position: absolute;
  inset: 12% 4% auto 16%;
  height: 56%;
  border-radius: 999px;
  background: rgba(21, 199, 210, 0.16);
  filter: blur(50px);
}

.visibility-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  box-shadow: 0 24px 62px rgba(15, 35, 58, 0.16);
}

.visibility-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visibility-shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 35, 58, 0.12);
}

.visibility-dashboard {
  top: 34px;
  right: 28px;
  width: 82%;
  aspect-ratio: 1938 / 1294;
}

.visibility-dashboard img {
  object-position: top left;
}

.visibility-report {
  left: 26px;
  bottom: 44px;
  width: 30%;
  aspect-ratio: 429 / 619;
}

.visibility-report img {
  object-position: top left;
}

.visibility-table {
  right: 36px;
  bottom: 32px;
  width: 68%;
  aspect-ratio: 1130 / 628;
}

.visibility-table img {
  object-position: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 18px;
}

.feature-card {
  min-height: 232px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:first-child {
  grid-row: span 2;
  min-height: 478px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), #ffffff 55%),
    url("assets/images/pos-terminal-receipt.png") center top -110px / 78% auto no-repeat,
    #ffffff;
}

.feature-card:nth-child(3) {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(180px, 1fr);
  gap: 22px;
  align-items: end;
}

.feature-card:nth-child(3)::after {
  content: "";
  min-height: 180px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.18)),
    url("assets/images/sales-report-table.jpg") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(217, 227, 239, 0.85);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.12);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: #e8f8f7;
  color: var(--blue-dark);
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
  background: #eef7ed;
  color: var(--green);
}

.feature-card:nth-child(3) .feature-icon {
  background: #fff4df;
  color: #a96e08;
}

.feature-card:nth-child(4) .feature-icon {
  background: #fdebf5;
  color: var(--pink);
}

.feature-card h3,
.workflow-steps h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.2;
}

.feature-card p,
.workflow-steps p,
.check-list {
  color: var(--muted);
}

.stories {
  padding-top: clamp(70px, 8vw, 104px);
}

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

.story-card {
  display: grid;
  gap: 24px;
  min-height: 620px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(217, 227, 239, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 247, 251, 0.9)),
    #fff;
  box-shadow: var(--soft-shadow);
}

.story-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  min-height: 540px;
}

.story-card-reverse {
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
}

.story-card-reverse .story-copy {
  order: 2;
}

.story-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.story-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(17, 142, 208, 0.18);
  border-radius: 999px;
  background: rgba(232, 248, 247, 0.86);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.story-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.story-copy .check-list {
  margin-top: 20px;
}

.story-media {
  position: relative;
  min-height: 360px;
}

.story-media::before {
  content: "";
  position: absolute;
  inset: 12% 6%;
  border-radius: 999px;
  background: rgba(21, 199, 210, 0.16);
  filter: blur(42px);
  pointer-events: none;
}

.story-shot {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  box-shadow: 0 22px 58px rgba(15, 35, 58, 0.14);
}

.story-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 35, 58, 0.12);
}

.story-media-pair {
  min-height: 430px;
}

.story-media-pair .story-shot-backoffice {
  width: 82%;
  aspect-ratio: 2288 / 924;
}

.story-media-pair .story-shot-pos {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 16 / 10;
}

.story-media-dashboard .story-shot-backoffice {
  aspect-ratio: 2304 / 1162;
}

.story-media-dashboard .story-shot-pos {
  width: 56%;
}

.story-media-stack {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(150px, 0.58fr);
  gap: 16px;
  align-items: end;
}

.story-media-stack .story-shot:first-child {
  aspect-ratio: 317 / 386;
  transform: translateY(-18px);
}

.story-media-stack .story-shot:last-child {
  aspect-ratio: 458 / 622;
}

.story-media-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(138px, auto);
  gap: 14px;
}

.story-media-mosaic .story-shot {
  aspect-ratio: 16 / 10;
}

.story-media-mosaic .story-shot-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.story-media-receipts {
  min-height: 450px;
}

.story-media-receipts .story-shot-receipt-main {
  width: 60%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: clamp(30px, 6vw, 64px);
  background: #ffffff;
}

.story-media-receipts .story-shot-receipt-main img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  object-position: center;
}

.story-media-receipts .story-shot-receipt-doc {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 924 / 1332;
}

.story-media-receipts .story-shot-receipt-doc img {
  object-position: top center;
}

.stock-control {
  display: grid;
  grid-template-columns: minmax(320px, 1.14fr) minmax(300px, 0.86fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding-top: 44px;
}

.stock-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.52fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(217, 227, 239, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 249, 0.9)),
    #fff;
  box-shadow: var(--shadow);
}

.stock-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 239, 0.92);
  border-radius: calc(var(--radius) - 8px);
  background: #fff;
  box-shadow: 0 20px 50px rgba(22, 47, 76, 0.12);
}

.stock-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.stock-shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(15, 35, 58, 0.12);
}

.stock-shot-app {
  aspect-ratio: 16 / 10;
}

.stock-shot-app img {
  object-position: center;
}

.stock-shot-admin {
  aspect-ratio: 452 / 622;
  transform: translateY(18px);
}

.stock-shot-admin img {
  object-position: top center;
}

.stock-copy {
  max-width: 560px;
}

.stock-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.shopping-composition {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding-top: 52px;
}

.shopping-copy {
  max-width: 560px;
}

.shopping-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(233, 247, 251, 0.9)),
    url("assets/images/equipment-promo.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.shopping-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(17, 142, 208, 0.1);
  border-radius: calc(var(--radius) + 4px);
  pointer-events: none;
}

.shopping-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.38)),
    linear-gradient(180deg, rgba(17, 142, 208, 0.04), rgba(233, 46, 140, 0.08));
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(88%, 650px);
  padding: 13px 14px;
  border-radius: 30px;
  background: #101827;
  box-shadow:
    0 36px 82px rgba(15, 23, 42, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: rotate(-4deg);
}

.phone-camera {
  position: absolute;
  left: 7px;
  top: 50%;
  width: 7px;
  height: 54px;
  border-radius: 999px;
  background: #273246;
  transform: translateY(-50%);
}

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

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basket-card span,
.payment-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.basket-card,
.payment-card {
  position: absolute;
  z-index: 2;
  min-width: 164px;
  padding: 16px 18px;
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.basket-card {
  left: 8%;
  top: 18%;
}

.payment-card {
  right: 7%;
  bottom: 17%;
}

.basket-card strong,
.payment-card strong {
  display: block;
  margin-top: 4px;
  color: var(--blue-dark);
  font-size: 1.35rem;
  line-height: 1.1;
}

.payment-methods {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  padding-top: 44px;
}

.payment-copy {
  max-width: 590px;
}

.payment-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.payment-gallery {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 14px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 239, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 244, 249, 0.88)),
    #fff;
  box-shadow: var(--shadow);
}

.payment-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(21, 199, 210, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(17, 142, 208, 0.08), transparent 46%);
  pointer-events: none;
}

.payment-shot {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.payment-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.payment-shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(217, 227, 239, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.payment-shot-main {
  grid-column: 1 / 9;
  grid-row: 1 / 7;
}

.payment-shot-fiado {
  grid-column: 5 / 13;
  grid-row: 5 / 11;
}

.payment-shot-client {
  grid-column: 1 / 6;
  grid-row: 7 / 13;
}

.payment-shot-split {
  grid-column: 8 / 13;
  grid-row: 1 / 5;
}

@keyframes dashboardBar {
  0%,
  24% {
    transform: scaleX(0.52);
  }

  54%,
  100% {
    transform: scaleX(1);
  }
}

.workflow {
  padding-top: 52px;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.device-shot {
  margin: 0;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, #ffffff, #eaf4f9),
    linear-gradient(135deg, rgba(21, 199, 210, 0.14), rgba(233, 46, 140, 0.08));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.device-shot img {
  max-height: 830px;
  width: auto;
  object-fit: contain;
}

.workflow-steps {
  display: grid;
  gap: 14px;
}

.workflow-steps article {
  position: relative;
  padding: 26px 26px 26px 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.workflow-steps article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: var(--cyan);
  border-radius: 0 4px 4px 0;
}

.workflow-steps span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: 42px;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.dashboard-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.dashboard-frame {
  position: relative;
  width: min(100%, 860px);
  padding: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 251, 0.88)),
    #fff;
  border: 1px solid rgba(217, 227, 239, 0.9);
  box-shadow: var(--shadow);
  transform: rotate(1.6deg);
}

.dashboard-frame img {
  width: 100%;
  aspect-ratio: 1938 / 1294;
  object-fit: cover;
  object-position: top left;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(217, 227, 239, 0.82);
}

.dash-kpi,
.dash-activity {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(217, 227, 239, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.dash-kpi {
  min-width: 172px;
  padding: 16px 18px;
}

.dash-kpi-blue {
  left: -8px;
  top: 44px;
}

.dash-kpi-green {
  right: 10px;
  bottom: 54px;
}

.dash-kpi span,
.dash-activity strong {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dash-kpi strong {
  display: block;
  margin-top: 5px;
  color: var(--blue-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.dash-kpi-green strong {
  color: var(--green);
}

.dash-activity {
  left: 28px;
  bottom: 28px;
  width: 210px;
  padding: 16px;
  display: grid;
  gap: 9px;
}

.dash-activity span {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), #f59f22);
  transform-origin: left;
  animation: dashboardBar 4.8s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.dash-activity span:nth-child(2) {
  width: 82%;
  animation-delay: 0.22s;
}

.dash-activity span:nth-child(3) {
  width: 68%;
  animation-delay: 0.44s;
}

.dash-activity strong {
  margin-top: 2px;
}

.volume-pricing {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding-top: 44px;
}

.volume-copy {
  max-width: 570px;
}

.volume-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.volume-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 239, 0.92);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.volume-visual img {
  width: 100%;
  aspect-ratio: 1938 / 1000;
  object-fit: cover;
  object-position: top left;
}

.video-section {
  padding-top: 44px;
}

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

.video-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.13);
}

.video-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #0f1725;
  overflow: hidden;
}

.video-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 24, 39, 0.04), rgba(16, 24, 39, 0.34));
}

.video-frame:hover img,
.video-frame:focus-visible img {
  transform: scale(1.03);
}

.video-frame:focus-visible {
  outline: 3px solid rgba(21, 199, 210, 0.45);
  outline-offset: -3px;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(16, 24, 39, 0.28);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 20px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--blue);
}

.video-copy {
  padding: 22px;
}

.video-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-copy h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.2;
}

.video-copy p {
  margin: 0;
  color: var(--muted);
}

.testimonials {
  padding-top: 44px;
}

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

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid rgba(217, 227, 239, 0.92);
  border-top: 4px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.testimonial-card:nth-child(2) {
  border-top-color: var(--green);
}

.testimonial-card:nth-child(3) {
  border-top-color: var(--pink);
}

.testimonial-card p {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.45;
}

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

.testimonial-card strong {
  font-size: 1rem;
  font-weight: 900;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.promo {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding-top: 48px;
}

.promo-copy {
  display: grid;
  justify-items: start;
}

.promo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(135deg, #101827 0%, #0a4d8b 72%, #118ed0 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-download h2 {
  max-width: 720px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.store-badge {
  display: block;
  flex: 0 0 auto;
  width: min(220px, 46vw);
}

.store-badge img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 280 / 82;
  object-fit: contain;
}

.portal-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(21, 199, 210, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(21, 199, 210, 0.32), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f3fbfd 42%, #eaf7fb 100%);
  box-shadow: var(--soft-shadow);
}

.portal-banner::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) - 2px);
}

.portal-banner-copy {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.portal-banner-copy h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.portal-title-link {
  color: inherit;
  text-decoration: none;
}

.portal-title-link:hover,
.portal-title-link:focus-visible {
  color: var(--blue-dark);
}

.portal-banner-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.portal-banner-action {
  position: relative;
  min-width: 230px;
  min-height: 64px;
  justify-content: center;
  gap: 12px;
  padding: 18px 26px;
  border: 1px solid rgba(17, 142, 208, 0.28);
  background:
    linear-gradient(135deg, #118ed0 0%, #0a67a8 58%, #0a4d8b 100%);
  color: #ffffff;
  font-size: 1.06rem;
  box-shadow: 0 18px 42px rgba(10, 77, 139, 0.24);
  white-space: nowrap;
}

.portal-banner-action:hover,
.portal-banner-action:focus-visible {
  color: #ffffff;
  box-shadow: 0 24px 54px rgba(10, 77, 139, 0.32);
}

.portal-action-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  line-height: 1;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.portal-banner-action:hover .portal-action-icon,
.portal-banner-action:focus-visible .portal-action-icon {
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(3px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--pink);
  background: #fff;
  border-radius: var(--radius);
  color: var(--muted);
  box-shadow: var(--soft-shadow);
}

.contact-note strong {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(217, 227, 239, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-group {
  display: grid;
  gap: 7px;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #cbd6e4;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status-success {
  color: var(--green);
}

.form-status-error {
  color: #b42318;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(21, 199, 210, 0.26);
  border-color: var(--blue);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: #c8d4e5;
  background:
    linear-gradient(135deg, #101827, #0b2b4d);
}

.footer-brand {
  color: #fff;
}

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

.site-footer p {
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(21, 199, 210, 0.48);
  background: rgba(21, 199, 210, 0.18);
  transform: translateY(-2px);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-icon-youtube path:last-child {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(8, 16, 31, 0.98) 0%, rgba(10, 39, 67, 0.94) 58%, rgba(11, 95, 134, 0.86) 100%),
      #101827;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-copy {
    width: min(680px, 100%);
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 520px;
    width: min(720px, 100%);
    margin: 0 auto;
    padding-top: 0;
    place-items: center;
  }

  .hero-showcase {
    width: min(100%, 640px);
    aspect-ratio: 1.42 / 1;
    padding: 12px;
    transform: none;
  }

  .hero-dashboard-bg {
    inset: 22px -20px auto 54px;
    width: 92%;
    height: 66%;
  }

  .hero-promo-foreground {
    left: 4%;
    bottom: 9%;
    width: 66%;
  }

  .hero-orbit-one {
    top: 58px;
    right: 2%;
  }

  .hero-orbit-two {
    bottom: 52px;
    left: 0;
  }

  .hero-chip-sales {
    left: 3%;
    bottom: 42px;
  }

  .hero-chip-live {
    right: 3%;
    top: 34px;
  }

  .metric-band,
  .business-visibility,
  .feature-grid,
  .story-card-wide,
  .story-card-reverse,
  .stock-control,
  .shopping-composition,
  .payment-methods,
  .workflow-layout,
  .dashboard,
  .volume-pricing,
  .video-grid,
  .testimonial-grid,
  .promo,
  .portal-banner,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .metric:nth-child(2) {
    border-right: 0;
  }

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

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

  .feature-card:first-child,
  .feature-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .feature-card:nth-child(3) {
    grid-template-columns: 1fr;
  }

  .feature-card:nth-child(3)::after {
    min-height: 150px;
  }

  .visibility-board {
    min-height: 560px;
  }

  .story-card-wide,
  .story-card-reverse {
    grid-template-columns: 1fr;
  }

  .story-card-reverse .story-copy {
    order: 0;
  }

  .story-card {
    min-height: auto;
  }

  .story-media-pair {
    min-height: 380px;
  }

  .shopping-visual {
    min-height: 580px;
  }

  .payment-gallery {
    min-height: 620px;
  }

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

  .device-shot {
    min-height: 560px;
  }

  .dashboard-visual {
    min-height: auto;
  }

  .side-panel {
    position: relative;
    width: min(78%, 320px);
    margin: -48px 0 0 auto;
  }
}

@media (min-width: 760px) and (max-width: 980px) {
  .hero {
    padding: 58px 28px 92px;
  }

  .hero-inner {
    grid-template-columns: minmax(300px, 0.88fr) minmax(340px, 1.12fr);
    gap: 28px;
    align-items: center;
  }

  .hero-logo {
    width: 104px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.6rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

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

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-proof div {
    padding: 12px;
  }

  .hero-proof dt {
    font-size: 0.98rem;
  }

  .hero-proof dd {
    font-size: 0.76rem;
  }

  .hero-visual {
    min-height: 390px;
    width: 100%;
    padding-top: 0;
  }

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

  .hero-chip {
    min-width: 138px;
    padding: 13px 14px;
  }

  .hero-chip strong {
    font-size: 1.35rem;
  }

  .hero-chip-sales {
    left: -2%;
    bottom: 28px;
  }

  .hero-chip-live {
    right: -2%;
    top: 22px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 1rem;
  }

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

  .header-action {
    display: none;
  }

  .hero {
    padding: 76px 18px 96px;
    background:
      linear-gradient(180deg, rgba(8, 16, 31, 0.98) 0%, rgba(10, 39, 67, 0.94) 58%, rgba(11, 95, 134, 0.86) 100%),
      #101827;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 13vw, 4.2rem);
  }

  .hero-copy,
  .hero-subtitle {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero-subtitle {
    font-size: 1.06rem;
    max-width: min(100%, 330px);
    overflow-wrap: break-word;
  }

  .hero-actions {
    max-width: min(100%, 330px);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    max-width: min(100%, 330px);
  }

  .hero-visual {
    min-height: auto;
    aspect-ratio: 1.42 / 1;
    width: 100%;
    max-width: 330px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(3, 9, 20, 0.24);
  }

  .hero-showcase {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    padding: 6px;
    border-radius: 14px;
    transform: none;
  }

  .hero-dashboard-bg {
    inset: 12px -8px auto 28px;
    width: 95%;
    height: 65%;
    border-radius: 10px;
  }

  .hero-promo-foreground {
    left: 4%;
    bottom: 8%;
    width: 70%;
    border-radius: 9px;
  }

  .hero-showcase::before {
    opacity: 0.58;
  }

  .hero-showcase::after,
  .hero-orbit,
  .hero-chip {
    display: none;
  }

  .hero-dashboard-bg,
  .hero-promo-foreground {
    box-shadow: 0 14px 34px rgba(3, 9, 20, 0.22);
  }

  .hero-actions,
  .app-download,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .portal-banner {
    align-items: stretch;
  }

  .portal-banner-action {
    width: 100%;
  }

  .button,
  .header-action {
    text-align: center;
  }

  .metric-band {
    grid-template-columns: 1fr;
  }

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

  .metric:last-child {
    border-bottom: 0;
  }

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

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

  .video-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .visibility-board {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 14px;
  }

  .visibility-shot,
  .visibility-dashboard,
  .visibility-report,
  .visibility-table {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .visibility-dashboard,
  .visibility-table {
    aspect-ratio: 16 / 10;
  }

  .visibility-report {
    aspect-ratio: 16 / 10;
  }

  .story-card {
    padding: 18px;
  }

  .story-copy h3 {
    font-size: 1.65rem;
  }

  .story-media {
    min-height: auto;
  }

  .story-media-pair,
  .story-media-stack,
  .story-media-mosaic,
  .story-media-receipts {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-media-pair .story-shot-backoffice,
  .story-media-pair .story-shot-pos,
  .story-media-dashboard .story-shot-pos,
  .story-media-receipts .story-shot-receipt-main,
  .story-media-receipts .story-shot-receipt-doc {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .story-media-stack .story-shot:first-child {
    transform: none;
  }

  .story-media-mosaic .story-shot-main {
    grid-column: auto;
  }

  .shopping-visual {
    min-height: 520px;
    padding: 28px 0;
  }

  .payment-gallery {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding: 12px;
  }

  .payment-shot,
  .payment-shot-main,
  .payment-shot-fiado,
  .payment-shot-client,
  .payment-shot-split {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .volume-visual img {
    aspect-ratio: 16 / 10;
  }

  .stock-visual {
    grid-template-columns: 1fr;
  }

  .stock-shot-admin {
    aspect-ratio: 16 / 10;
    transform: none;
  }

  .shopping-visual::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
      linear-gradient(180deg, rgba(17, 142, 208, 0.04), rgba(233, 46, 140, 0.08));
  }

  .phone-shell {
    width: min(92%, 520px);
    transform: none;
  }

  .phone-camera {
    height: 42px;
  }

  .basket-card,
  .payment-card {
    display: none;
  }

  .device-shot {
    min-height: 440px;
  }

  .device-shot img {
    max-height: 600px;
  }

  .contact-form,
  .portal-banner,
  .app-download {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
