:root {
  color-scheme: light;
  --navy: #0b1628;
  --navy-2: #12233a;
  --teal: #0d9488;
  --teal-2: #14b8a6;
  --gold: #e8a94d;
  --blue: #2563eb;
  --red: #ef4444;
  --ink: #0f172a;
  --muted: #5b6b7c;
  --line: #dfe7ef;
  --surface: #f3f6fa;
  --card: #ffffff;
  --soft-teal: #e7f7f5;
  --soft-gold: #fff4dc;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--surface);
  color: var(--ink);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

a,
button,
summary {
  touch-action: manipulation;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 50;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

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

.side-panel {
  position: fixed;
  inset: 0 auto 0 0;
  width: 400px;
  background:
    radial-gradient(ellipse at top left, rgba(37, 99, 235, 0.22), transparent 42%),
    linear-gradient(180deg, var(--navy), #081523);
  color: #ffffff;
  overflow: hidden;
  z-index: 10;
}

.side-panel::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(232, 169, 77, 0.9), transparent);
}

.side-panel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
  padding: 38px 40px 26px;
}

.brand-block {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-block__mascot {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.brand-block__copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-lockup__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b3444, #090f1d);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 800;
}

.brand-lockup strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.05;
}

.brand-lockup span:not(.brand-lockup__mark) {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.powered {
  display: flex;
  align-items: center;
  gap: 8px;
}

.powered span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.powered img {
  width: 96px;
  height: auto;
  border-radius: 4px;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(20, 184, 166, 0.34);
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: #5eead4;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
}

.integration-badge__dot,
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-2);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.integration-badge img {
  width: 58px;
  height: auto;
}

.side-nav {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.side-nav a {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  padding: 12px 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.side-nav a:hover,
.side-nav a:focus-visible,
.side-nav a[aria-current] {
  border-color: rgba(20, 184, 166, 0.5);
  background: rgba(20, 184, 166, 0.1);
  color: #ffffff;
  outline: none;
}

.support-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  border: 1px solid rgba(20, 184, 166, 0.32);
  border-radius: var(--radius);
  background: rgba(20, 184, 166, 0.08);
  padding: 14px;
}

.support-box span {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.support-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(20, 184, 166, 0.52);
  border-radius: var(--radius);
  background: rgba(20, 184, 166, 0.14);
  color: #5eead4;
  text-decoration: none;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--teal);
  color: #ffffff;
  outline: none;
}

.side-foot {
  margin: 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
}

.site-main {
  min-height: 100vh;
  margin-left: 400px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)),
    var(--surface);
}

.topbar {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-2), rgba(20, 184, 166, 0));
}

.hero-section,
.section {
  width: calc(100% - 80px);
  max-width: var(--content);
  margin-inline: auto;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
  align-items: center;
  gap: 34px;
  min-height: auto;
  padding: 46px 0 52px;
}

.hero-section__copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 900;
}

.hero-section__copy > p,
.section-heading p,
.local-panel p,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.button,
.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button svg,
.download-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button:hover,
.download-link:hover,
.button:focus-visible,
.download-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--primary {
  background: var(--gold);
  color: #1f2937;
  box-shadow: 0 10px 20px rgba(232, 169, 77, 0.26);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 14px 28px rgba(232, 169, 77, 0.34);
}

.button--ghost {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--teal);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: var(--shadow-soft);
}

.button--secondary {
  border: 1px solid rgba(13, 148, 136, 0.22);
  background: var(--soft-teal);
  color: var(--teal);
}

.button--whatsapp {
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: #22c55e;
  color: #052e16;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.22);
  text-align: center;
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.3);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.hero-metrics div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-section__media {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.screen-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen-card__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.screen-card__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.screen-card__bar span:first-child {
  background: var(--red);
}

.screen-card__bar span:nth-child(2) {
  background: var(--gold);
}

.screen-card__bar span:nth-child(3) {
  background: var(--teal-2);
}

.screen-card__bar strong {
  margin-left: 6px;
  color: var(--muted);
  font-size: 13px;
}

.screen-card img {
  width: 100%;
  height: min(58vh, 620px);
  min-height: 360px;
  object-fit: cover;
  object-position: top left;
}

.status-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  padding: 13px 15px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 72px 0;
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.hero-section {
  content-visibility: visible;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr;
  gap: 14px;
}

.feature-card,
.download-card,
.contact-card,
.local-panel,
.uniplus-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
}

.feature-card--wide {
  grid-row: span 2;
  min-height: 454px;
  background:
    linear-gradient(140deg, #ffffff, #ffffff 58%, rgba(20, 184, 166, 0.1)),
    #ffffff;
}

.feature-card--dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #ffffff;
}

.feature-card--dark h3,
.feature-card--dark p {
  color: #ffffff;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.card-kicker,
.download-card__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-icon--teal {
  background: var(--soft-teal);
  color: var(--teal);
}

.card-icon--gold {
  background: var(--soft-gold);
  color: #b36b00;
}

.price-widget {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(360px, 100%);
  margin: 48px auto 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: #ffffff;
  padding: 22px;
  box-shadow: 0 24px 42px rgba(11, 22, 40, 0.22);
  transform: rotate(-2deg);
}

.price-widget span,
.price-widget small {
  color: #5eead4;
  font-weight: 900;
}

.price-widget b {
  color: #ffffff;
  font-size: 34px;
}

.price-board-section {
  padding-top: 42px;
}

.price-board-showcase {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.price-board-copy,
.price-board-demo {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.price-board-copy {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.14), transparent 38%),
    #ffffff;
}

.price-board-copy h3 {
  margin-top: 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}

.price-board-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.price-board-benefits {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.price-board-benefits li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  font-weight: 800;
  line-height: 1.38;
}

.price-board-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal-2);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.14);
}

.price-board-demo {
  display: grid;
  gap: 14px;
  padding: 16px;
  background:
    radial-gradient(circle at 78% 24%, rgba(37, 99, 235, 0.26), transparent 28%),
    linear-gradient(135deg, #0b1628 0%, #111827 100%);
  overflow: hidden;
}

.promo-screen,
.category-screen {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #e90000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.promo-screen {
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1fr);
  gap: 14px;
  min-height: 318px;
  padding: 14px;
}

.promo-screen__offer {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #e60000 0 18%, #ffd319 18% 100%);
  padding: 16px 14px;
  text-align: center;
  color: #111827;
}

.promo-screen__offer span {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 3.4rem);
  font-weight: 900;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}

.promo-screen__offer strong {
  margin-top: 10px;
  color: #a31313;
  font-size: clamp(1.55rem, 3vw, 2.85rem);
  font-weight: 900;
  text-transform: uppercase;
}

.promo-screen__offer b {
  font-size: clamp(1.25rem, 2.3vw, 2.2rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.promo-screen__offer small {
  color: #a31313;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900;
}

.promo-screen__offer em {
  font-style: normal;
  font-size: clamp(3.9rem, 7vw, 7rem);
  line-height: 0.82;
}

.promo-screen__list,
.category-screen__table {
  display: grid;
  align-content: start;
  color: #ffffff;
  font-weight: 900;
}

.promo-screen__list header,
.category-screen__table header {
  display: grid;
  grid-template-columns: 0.55fr 1.7fr 0.95fr;
  padding: 8px 10px;
  color: #ffffff;
  font-size: 0.84rem;
}

.promo-screen__list div,
.category-screen__table div {
  display: grid;
  grid-template-columns: 0.55fr 1.7fr 0.95fr;
  align-items: center;
  min-height: 45px;
  padding: 6px 10px;
  background: #0537ff;
  color: #ffffff;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.promo-screen__list div:nth-child(odd),
.category-screen__table div:nth-child(even) {
  background: #fff200;
  color: #000000;
}

.promo-screen__list strong,
.category-screen__table strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
}

.promo-screen__list b,
.category-screen__table b {
  text-align: right;
  white-space: nowrap;
}

.category-screen {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  min-height: 360px;
  padding: 20px;
}

.category-screen aside {
  display: grid;
  align-content: start;
  gap: 18px;
  color: #ffffff;
}

.category-screen aside > strong {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.category-screen aside > span {
  color: #64ffb6;
  font-weight: 900;
}

.category-screen aside > small {
  color: #80eaff;
  font-size: 1rem;
  font-weight: 900;
}

.ticket-box {
  display: grid;
  place-items: center;
  min-height: 130px;
  border-radius: var(--radius);
  background: #020617;
  color: #ffffff;
  text-align: center;
}

.ticket-box span {
  font-size: 1.3rem;
  text-transform: uppercase;
}

.ticket-box b {
  font-size: 5.2rem;
  line-height: 0.95;
}

.category-screen__table {
  align-self: start;
  background: rgba(255, 255, 255, 0.08);
}

.category-screen__table div {
  min-height: 55px;
  background: #ffffff;
  color: #000000;
  font-size: clamp(1.08rem, 2vw, 1.75rem);
}

.category-screen__table div:nth-child(even) {
  background: #fff200;
}

.bakery-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  border-radius: var(--radius);
  background: #0747ff;
  color: #ffffff;
  padding: 12px 14px;
  font-weight: 900;
}

.bakery-ticker span {
  grid-row: span 2;
  border-radius: 4px;
  background: #ef0000;
  padding: 9px 11px;
  text-transform: uppercase;
}

.bakery-ticker strong,
.bakery-ticker b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bakery-ticker b {
  color: #fff7b8;
}

.uniplus-section {
  padding-top: 42px;
}

.uniplus-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 28px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.09), rgba(232, 169, 77, 0.1)),
    #ffffff;
}

.uniplus-panel__copy p,
.uniplus-panel__grid p {
  color: var(--muted);
  line-height: 1.65;
}

.uniplus-panel__copy .button {
  margin-top: 22px;
}

.uniplus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.uniplus-tags span {
  border: 1px solid rgba(13, 148, 136, 0.24);
  border-radius: 999px;
  background: rgba(231, 247, 245, 0.82);
  color: #0f766e;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 900;
}

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

.uniplus-panel__grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 20px;
}

.uniplus-panel__grid .card-icon {
  margin-bottom: 18px;
}

.uniplus-panel__grid h3 {
  font-size: 18px;
}

.downloads-section {
  padding-top: 42px;
}

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

.download-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.download-card--primary {
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.13), rgba(232, 169, 77, 0.12)),
    #ffffff;
  border-color: rgba(13, 148, 136, 0.32);
}

.download-card p {
  color: var(--muted);
  line-height: 1.6;
}

.download-link {
  width: 100%;
  border: 1px solid rgba(13, 148, 136, 0.28);
  background: var(--teal);
  color: #ffffff;
}

.download-link:hover,
.download-link:focus-visible {
  background: #0f766e;
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.22);
}

.local-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 30px;
  padding: 28px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  padding: 10px 13px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(11, 22, 40, 0.96), rgba(18, 35, 58, 0.96)),
    var(--navy);
  color: #ffffff;
}

.contact-card h2,
.contact-card p {
  color: #ffffff;
}

.contact-card p {
  opacity: 0.78;
}

.contact-person {
  display: inline-grid;
  gap: 3px;
  margin-top: 18px;
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-radius: var(--radius);
  background: rgba(94, 234, 212, 0.08);
  padding: 11px 13px;
}

.contact-person strong {
  color: #ffffff;
}

.contact-person span {
  color: #a7f3d0;
  font-weight: 800;
}

.contact-actions {
  min-width: 270px;
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: calc(100% - 80px);
  max-width: var(--content);
  margin: 0 auto;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .side-panel {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .side-panel__inner {
    min-height: auto;
  }

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

  .site-main {
    margin-left: 0;
  }

  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .screen-card img {
    height: 520px;
  }
}

@media (max-width: 940px) {
  .hero-section,
  .section,
  .site-footer {
    width: calc(100% - 36px);
    max-width: var(--content);
  }

  .solution-grid,
  .download-grid,
  .price-board-showcase,
  .uniplus-panel,
  .uniplus-panel__grid,
  .local-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    min-height: 360px;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  body {
    background: #eef3f8;
  }

  .hero-section,
  .section,
  .site-footer {
    width: calc(100% - 28px);
    max-width: none;
    margin-left: 14px;
    margin-right: auto;
  }

  .side-panel__inner {
    gap: 14px;
    padding: 18px 14px 16px;
  }

  .brand-block {
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
  }

  .brand-block__mascot {
    width: 52px;
    height: 52px;
  }

  .brand-lockup__mark {
    width: 34px;
    height: 34px;
  }

  .brand-lockup strong {
    font-size: 16px;
  }

  .powered {
    gap: 5px;
  }

  .powered img {
    width: 76px;
  }

  .integration-badge {
    width: fit-content;
    max-width: 100%;
    padding: 8px 10px;
  }

  .side-nav {
    display: flex;
    gap: 8px;
    margin: 0 -14px;
    padding: 2px 14px 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .side-nav::-webkit-scrollbar {
    display: none;
  }

  .side-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 11px 13px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .support-box {
    align-items: flex-start;
    margin-top: 0;
    padding: 12px;
  }

  .hero-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(29px, 8.2vw, 34px);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  h3 {
    font-size: 20px;
    overflow-wrap: break-word;
  }

  .hero-section__copy > p,
  .section-heading p,
  .local-panel p,
  .contact-card p {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

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

  .hero-metrics div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 12px 8px;
  }

  .hero-metrics div:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .hero-metrics dt {
    font-size: 20px;
  }

  .hero-section__media {
    display: none;
  }

  .section {
    padding: 30px 0;
    contain-intrinsic-size: 660px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .feature-card,
  .download-card,
  .uniplus-panel,
  .local-panel,
  .contact-card,
  .network-panel,
  .cftv-panel,
  .price-board-copy,
  .fiscal-panel {
    padding: 18px;
  }

  .download-card {
    min-height: 0;
  }

  .price-board-demo {
    padding: 10px;
  }

  .promo-screen,
  .category-screen {
    grid-template-columns: 1fr;
  }

  .promo-screen__list header,
  .promo-screen__list div,
  .category-screen__table header,
  .category-screen__table div {
    grid-template-columns: 0.5fr 1.25fr 0.8fr;
    font-size: 0.92rem;
  }

  .category-screen {
    gap: 12px;
    padding: 12px;
  }

  .ticket-box {
    min-height: 92px;
  }

  .ticket-box b {
    font-size: 3.8rem;
  }

  .bakery-ticker {
    grid-template-columns: 1fr;
  }

  .bakery-ticker span {
    grid-row: auto;
    width: max-content;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 0 30px;
  }
}

.monitor-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #050d1c 0%, #0b1628 60%, #14304f 100%);
  color: #e2e8f0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.monitor-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(20, 184, 166, 0.18), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(239, 68, 68, 0.16), transparent 50%);
  pointer-events: none;
}

.monitor-panel__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
}

.monitor-panel__copy h2 {
  margin: 0;
  color: #ffffff;
  line-height: 1.2;
}

.monitor-panel__copy p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.65;
}

.monitor-panel__copy .eyebrow {
  color: #5eead4;
}
.monitor-panel__copy .eyebrow span {
  background: #5eead4;
}

.monitor-bullets {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.monitor-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color: #f1f5f9;
}

.monitor-bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5eead4;
  margin-top: 9px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.2);
}

.monitor-panel__demo {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.monitor-tile {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #0a1424;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  font-size: 0.78rem;
}

.monitor-tile header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.monitor-tile header strong {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.monitor-tile header .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-left: auto;
}

.monitor-tile header .dot--online {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.monitor-tile header .dot--offline {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.monitor-tile header span:not(.dot) {
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.monitor-tile__face {
  flex: 1;
  background: linear-gradient(180deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 14px 12px;
}

.monitor-tile__title {
  color: #fde047;
  font-weight: 800;
  font-size: 0.95rem;
}

.monitor-tile__face small {
  color: #cbd5e1;
  line-height: 1.4;
}

.monitor-tile__face--off {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: #94a3b8;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.monitor-tile__cam {
  flex: 1;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 4px),
    linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  position: relative;
}

.monitor-tile__cam::before {
  content: "";
  position: absolute;
  inset: 18% 30%;
  border: 1.5px dashed rgba(248, 113, 113, 0.5);
  border-radius: 6px;
}

.monitor-tile .live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: #ef4444;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.monitor-tile .live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
  animation: live-pulse 1.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.monitor-tile footer {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #94a3b8;
  font-size: 0.7rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  font-weight: 600;
}

@media (max-width: 900px) {
  .monitor-panel {
    grid-template-columns: 1fr;
  }
}

.selfcheckout-video {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 16px;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #071223 0%, #0b1628 70%, #0f766e 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.selfcheckout-video__media {
  min-width: 0;
  padding: 18px;
}

.selfcheckout-video__media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius) - 4px);
  background: #020617;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.selfcheckout-video__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 26px 24px 26px 0;
  color: #f8fafc;
}

.selfcheckout-video__copy .card-kicker {
  color: #5eead4;
}

.selfcheckout-video__copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.selfcheckout-video__copy p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.65;
}

.selfcheckout-video__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selfcheckout-video__steps span {
  border: 1px solid rgba(94, 234, 212, 0.34);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.32);
  color: #ecfeff;
  padding: 8px 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

.selfcheckout-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 16px;
  margin-bottom: 16px;
}

.selfcheckout-board,
.selfcheckout-command {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.selfcheckout-board {
  padding: 18px;
  background: linear-gradient(135deg, #071223 0%, #0b1628 72%, #123153 100%);
  color: #f8fafc;
  overflow: hidden;
}

.selfcheckout-board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.selfcheckout-board__header strong {
  display: block;
  color: #ffffff;
  font-size: 1.15rem;
}

.selfcheckout-board .card-kicker {
  margin-bottom: 5px;
  color: #5eead4;
}

.selfcheckout-board .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.selfcheckout-board .live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ffffff;
  animation: live-pulse 1.4s ease-in-out infinite;
}

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

.checkout-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

.checkout-card header,
.checkout-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
}

.checkout-card header {
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.checkout-card header strong {
  font-size: 0.9rem;
}

.checkout-card header span {
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 900;
}

.checkout-card--attention header span {
  background: #fef3c7;
  color: #b45309;
}

.checkout-card--offline header span {
  background: #fee2e2;
  color: #b91c1c;
}

.checkout-card__view {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 145px;
}

.checkout-card__screen,
.checkout-card__camera,
.checkout-card__placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}

.checkout-card__screen {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
}

.checkout-card__screen span,
.checkout-card__camera span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-card__screen b {
  max-width: 14ch;
  font-size: 1rem;
  line-height: 1.15;
}

.checkout-card__screen small,
.checkout-card__camera small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.checkout-card__camera {
  position: relative;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.08) 1px, transparent 1px, transparent 14px),
    linear-gradient(135deg, #111827 0%, #374151 100%);
  color: #ffffff;
}

.checkout-card__camera::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.22);
}

.checkout-card__placeholder {
  min-height: 145px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eef3f8;
  color: #94a3b8;
  font-weight: 900;
  text-align: center;
}

.checkout-card__placeholder svg {
  width: 34px;
  height: 34px;
  color: #cbd5e1;
}

.checkout-card footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-card footer b {
  color: var(--teal);
}

.checkout-card--attention {
  border-color: rgba(232, 169, 77, 0.76);
  box-shadow: 0 0 0 2px rgba(232, 169, 77, 0.12);
}

.checkout-card--attention footer b {
  color: #b45309;
}

.checkout-card--offline footer b {
  color: #b91c1c;
}

.selfcheckout-command {
  padding: 22px;
  background: #ffffff;
}

.selfcheckout-command h3 {
  margin-top: 14px;
}

.selfcheckout-command p {
  color: var(--muted);
  line-height: 1.65;
}

.event-feed {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.event-feed div {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 12px;
}

.event-feed span {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
}

.event-feed strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.event-feed small {
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 940px) {
  .selfcheckout-video {
    grid-template-columns: 1fr;
  }

  .selfcheckout-video__copy {
    padding: 0 18px 22px;
  }

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

@media (max-width: 680px) {
  .selfcheckout-video__media {
    padding: 12px;
  }

  .selfcheckout-video__copy {
    padding: 0 14px 18px;
  }

  .selfcheckout-board {
    padding: 14px;
  }

  .selfcheckout-grid,
  .checkout-card__view {
    grid-template-columns: 1fr;
  }

  .selfcheckout-board__header {
    align-items: flex-start;
    flex-direction: column;
  }
}

.network-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.network-panel__copy h2 {
  margin-top: 8px;
}

.network-panel__copy p {
  color: var(--muted);
  line-height: 1.6;
}

.network-pains {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #fef3c7;
  border: 1px solid #fcd34d;
  color: #78350f;
  font-weight: 700;
  list-style: none;
  display: grid;
  gap: 6px;
}

.network-pains li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.network-pains li::before {
  content: "!";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d97706;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

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

.network-grid article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.network-grid h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--ink);
}

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

@media (max-width: 900px) {
  .network-panel,
  .network-grid {
    grid-template-columns: 1fr;
  }
}

.unifi-section {
  padding-top: 42px;
}

.unifi-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 20%, rgba(37, 99, 235, 0.14), transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 30px;
}

.unifi-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.unifi-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.unifi-visual {
  min-height: 420px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, #ffffff 0%, #eef6ff 68%, #dbeafe 100%);
  background-size: 28px 28px, 28px 28px, cover;
  position: relative;
  overflow: hidden;
}

.unifi-orbit {
  position: absolute;
  inset: 22px;
}

.orbit {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 50%;
  animation: unifi-rotate 18s linear infinite;
}

.orbit--two {
  inset: 25% 10%;
  border-color: rgba(20, 184, 166, 0.28);
  animation-duration: 24s;
  animation-direction: reverse;
}

.orbit--three {
  inset: 9% 25%;
  border-color: rgba(232, 169, 77, 0.28);
  animation-duration: 30s;
}

.unifi-node {
  position: absolute;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}

.unifi-node span,
.unifi-node small {
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.unifi-node strong {
  color: var(--ink);
}

.unifi-node--core {
  left: 50%;
  top: 50%;
  min-width: 170px;
  min-height: 112px;
  place-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
  border-color: rgba(37, 99, 235, 0.32);
}

.unifi-node--core::before {
  content: "";
  width: 50px;
  height: 50px;
  margin: 0 auto 8px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 12%, transparent 13%),
    linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.09);
}

.unifi-node--branch {
  min-width: 132px;
}

.unifi-node--a {
  left: 4%;
  top: 13%;
}

.unifi-node--b {
  right: 4%;
  top: 18%;
}

.unifi-node--c {
  left: 11%;
  bottom: 8%;
}

.packet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #14b8a6;
  box-shadow: 0 0 0 7px rgba(20, 184, 166, 0.16), 0 0 26px rgba(20, 184, 166, 0.65);
  offset-path: path("M 240 210 C 110 60, 80 88, 56 62");
  animation: unifi-packet 4.5s ease-in-out infinite;
}

.packet--two {
  background: #2563eb;
  box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.14), 0 0 26px rgba(37, 99, 235, 0.65);
  offset-path: path("M 240 210 C 330 74, 362 82, 398 76");
  animation-delay: 1.2s;
}

.packet--three {
  background: #e8a94d;
  box-shadow: 0 0 0 7px rgba(232, 169, 77, 0.16), 0 0 26px rgba(232, 169, 77, 0.65);
  offset-path: path("M 240 210 C 145 288, 108 350, 78 330");
  animation-delay: 2.3s;
}

.wifi-rings {
  position: absolute;
  right: 10%;
  bottom: 11%;
  width: 132px;
  height: 132px;
}

.wifi-rings span {
  position: absolute;
  inset: 34%;
  border: 2px solid rgba(37, 99, 235, 0.28);
  border-radius: 50%;
  animation: wifi-ring 2.8s ease-out infinite;
}

.wifi-rings span:nth-child(2) {
  animation-delay: 0.8s;
}

.wifi-rings span:nth-child(3) {
  animation-delay: 1.6s;
}

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

.unifi-grid article,
.fiscal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.unifi-grid article {
  padding: 22px;
}

.unifi-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.fiscal-section {
  padding-top: 42px;
}

.fiscal-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(232, 169, 77, 0.12), rgba(20, 184, 166, 0.09)),
    #ffffff;
}

.fiscal-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.fiscal-panel .button {
  margin-top: 18px;
}

.fiscal-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.fiscal-flow article {
  position: relative;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 18px;
}

.fiscal-flow article::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -13px;
  width: 14px;
  height: 2px;
  background: var(--teal);
}

.fiscal-flow article:last-child::after {
  display: none;
}

.fiscal-flow span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
}

.fiscal-flow strong {
  color: var(--ink);
}

.fiscal-flow small {
  color: var(--muted);
  line-height: 1.45;
}

@keyframes unifi-rotate {
  to {
    transform: rotate(1turn);
  }
}

@keyframes unifi-packet {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  12%,
  88% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

@keyframes wifi-ring {
  0% {
    transform: scale(0.2);
    opacity: 0.85;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

@media (max-width: 940px) {
  .unifi-panel,
  .fiscal-panel {
    grid-template-columns: 1fr;
  }

  .unifi-grid,
  .fiscal-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .unifi-panel,
  .fiscal-panel {
    padding: 20px;
  }

  .unifi-actions,
  .unifi-grid,
  .fiscal-flow {
    grid-template-columns: 1fr;
  }

  .unifi-visual {
    min-height: 360px;
  }

  .unifi-node--branch {
    min-width: 112px;
  }

  .unifi-node--b {
    right: 0;
  }

  .unifi-node--c {
    left: 0;
  }

  .fiscal-flow article::after {
    display: none;
  }
}

.uniplus-versions {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.uniplus-versions__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  padding: 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft-teal);
}

.uniplus-versions__intro h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--ink);
}

.uniplus-versions__intro p {
  margin: 0;
  color: #134e4a;
  line-height: 1.6;
}

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

.version-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.version-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--teal);
}

.version-card--desktop::before {
  background: var(--gold);
}

.version-card h4 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--ink);
}

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

.version-card ul {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.version-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.version-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  margin-top: 8px;
  flex-shrink: 0;
}

.version-card--desktop li::before {
  background: var(--gold);
}

.version-card__source {
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

@media (max-width: 760px) {
  .uniplus-versions__grid {
    grid-template-columns: 1fr;
  }
}

.uniplus-features {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.uniplus-features__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.uniplus-features__head h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--ink);
}

.uniplus-features__head small {
  color: var(--muted);
  font-size: 0.88rem;
}

.uniplus-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 28px;
}

.uniplus-features__grid li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  border-bottom: 1px dashed var(--line);
}

.uniplus-features__grid li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #16a34a;
  flex-shrink: 0;
  background-image: 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.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.uniplus-features__grid ul {
  margin: 0;
  padding: 0;
}

@media (max-width: 900px) {
  .uniplus-features__grid {
    grid-template-columns: 1fr;
  }
}

.client-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 148, 136, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 62%, #fff7e8 100%);
  box-shadow: var(--shadow-soft);
}

.client-proof span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.client-proof strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 16px;
}

.client-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 292px;
  padding: 16px;
  border: 1px solid #cbd8e6;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 42%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0.9;
}

.client-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid #cbd8e6;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.client-card__logo img {
  max-height: 106px;
  max-width: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.03);
}

.client-card__logo--fallback {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  border-color: transparent;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.client-card:hover,
.client-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: 0 18px 36px rgba(13, 148, 136, 0.17);
}

.client-card strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.client-card span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.client-card small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .client-proof {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .client-card {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .hero-metrics div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .monitor-panel,
  .selfcheckout-board,
  .selfcheckout-command {
    padding: 16px;
  }

  .monitor-panel__demo,
  .selfcheckout-grid,
  .network-grid,
  .unifi-grid,
  .fiscal-flow,
  .uniplus-versions__grid {
    grid-template-columns: 1fr;
  }

  .monitor-tile {
    min-height: 132px;
  }

  .promo-screen,
  .category-screen {
    min-height: 0;
  }

  .promo-screen__offer {
    padding: 12px;
  }

  .promo-screen__list div,
  .category-screen__table div {
    min-height: 42px;
    padding: 6px 8px;
    font-size: 0.82rem;
  }

  .promo-screen__list header,
  .category-screen__table header {
    padding: 7px 8px;
    font-size: 0.74rem;
  }

  .bakery-ticker strong,
  .bakery-ticker b {
    white-space: normal;
  }

  .unifi-visual {
    min-height: 300px;
  }

  .orbit,
  .packet,
  .wifi-rings {
    display: none;
  }

  .unifi-node {
    padding: 10px;
  }

  .unifi-node--core {
    min-width: 150px;
  }

  .client-card {
    padding: 14px;
  }

  .client-card__logo {
    height: 118px;
    padding: 12px;
  }

  .client-card__logo img {
    max-height: 94px;
  }

  .uniplus-features {
    padding: 18px;
  }

  .faq-list summary {
    padding: 16px;
  }

  .faq-list p {
    padding: 0 16px 16px;
  }
}

.cftv-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0b1628 0%, #12233a 100%);
  color: #f1f5f9;
  box-shadow: var(--shadow);
}

.cftv-panel h2 {
  color: #ffffff;
}

.cftv-panel p {
  color: #cbd5e1;
}

.cftv-panel .eyebrow {
  color: #67e8f9;
}

.cftv-panel .eyebrow span {
  background: #67e8f9;
}

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

.cftv-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cftv-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal-2);
  margin-top: 8px;
  flex-shrink: 0;
}

.cftv-list strong {
  display: block;
  color: #ffffff;
}

.cftv-list small {
  color: #94a3b8;
  font-size: 0.85rem;
}

.cftv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.12);
  border: 1px solid rgba(103, 232, 249, 0.25);
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

@media (max-width: 900px) {
  .cftv-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cftv-panel {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
