:root {
  --navy: #08263a;
  --navy-deep: #03151f;
  --teal: #08a99b;
  --teal-deep: #067e76;
  --yellow: #d8a21b;
  --ink: #0f1f2e;
  --muted: #59697a;
  --line: #cfd9e3;
  --line-strong: #aebdca;
  --surface: #ffffff;
  --soft: #eef3f7;
  --soft-teal: #e6fbf8;
  --soft-yellow: #f7efd9;
  --shadow: 0 14px 34px rgba(7, 26, 44, 0.08);
}

/* Landing rework 2026-05-27 */
.lpPage {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #ffffff 0, #f6f8fb 360px, #eef3f7 100%);
  color: #071a2c;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

.lpHeader {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(190, 202, 214, 0.72);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.lpBrand,
.lpFooterBrand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #071a2c;
}

.lpBrandMark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #071a2c;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.lpBrand strong,
.lpFooterBrand strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
}

.lpBrand small,
.lpFooterBrand small {
  display: block;
  margin-top: 3px;
  color: #607084;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lpNav {
  display: flex;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.lpNav a {
  padding: 9px 10px;
  border-radius: 6px;
  color: #42546a;
  font-size: 0.93rem;
  font-weight: 800;
  white-space: nowrap;
}

.lpNav a:hover {
  background: #edf2f7;
  color: #071a2c;
}

.lpHeaderActions,
.lpHeroActions,
.lpPlanActions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lpSolidButton,
.lpGhostButton,
.lpPlanButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.lpSolidButton {
  background: #08a99b;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 169, 155, 0.16);
}

.lpSolidButton:hover {
  background: #067e76;
}

.lpGhostButton {
  border-color: #c9d4df;
  background: #ffffff;
  color: #071a2c;
}

.lpGhostButton:hover {
  border-color: #aebdca;
  background: #f4f7fa;
}

.lpLargeButton {
  min-height: 50px;
  padding-inline: 22px;
}

.lpHero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 86px) 0 44px;
}

.lpHeroCopy h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  color: #071a2c;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lpKicker {
  margin: 0;
  color: #08a99b;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lpLead {
  max-width: 680px;
  margin: 0;
  color: #4b5f75;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.lpHeroActions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.lpHeroStats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 34px 0 0;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  overflow: hidden;
  background: #d7e0ea;
}

.lpHeroStats div {
  min-width: 0;
  padding: 16px;
  background: #ffffff;
}

.lpHeroStats dt {
  color: #071a2c;
  font-weight: 900;
}

.lpHeroStats dd {
  margin: 5px 0 0;
  color: #607084;
  font-size: 0.9rem;
  line-height: 1.35;
}

.lpSystemPanel {
  border: 1px solid #cbd7e2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 26, 44, 0.1);
  overflow: hidden;
}

.lpPanelTop,
.lpReceiptLine,
.lpSaleHeader,
.lpSaleRows p,
.lpSaleTotal,
.lpSignalBox p,
.lpPlanTop,
.lpPriceRows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lpPanelTop {
  padding: 16px 18px;
  border-bottom: 1px solid #d8e1ea;
  background: #071a2c;
  color: #ffffff;
}

.lpPanelTop span,
.lpSaleHeader span,
.lpReceiptLine span,
.lpSignalBox span,
.lpPlanTop span,
.lpPriceRows span {
  color: #6a7b8e;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lpPanelTop span {
  color: #b9c7d6;
}

.lpPanelGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(170px, 0.85fr);
  gap: 12px;
  padding: 14px;
  background: #f3f6f9;
}

.lpSaleBox,
.lpSignalBox {
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  background: #ffffff;
}

.lpSaleHeader {
  padding: 14px;
  border-bottom: 1px solid #e1e8ef;
}

.lpSaleHeader b {
  color: #071a2c;
  font-size: 0.88rem;
}

.lpSaleRows {
  display: grid;
  gap: 0;
}

.lpSaleRows p {
  margin: 0;
  padding: 13px 14px;
  border-bottom: 1px solid #edf1f5;
  color: #203247;
}

.lpSaleRows p span {
  min-width: 0;
}

.lpSaleRows p b {
  white-space: nowrap;
}

.lpSaleTotal {
  padding: 16px 14px;
}

.lpSaleTotal span {
  color: #4b5f75;
  font-weight: 900;
}

.lpSaleTotal strong {
  color: #0f766e;
  font-size: 1.8rem;
}

.lpSignalBox {
  display: grid;
  align-content: start;
  gap: 1px;
  overflow: hidden;
  background: #dce5ee;
}

.lpSignalBox p {
  min-height: 80px;
  margin: 0;
  padding: 12px;
  background: #ffffff;
  align-items: flex-start;
  flex-direction: column;
}

.lpSignalBox strong {
  color: #071a2c;
  font-size: 1rem;
  line-height: 1.25;
}

.lpReceiptLine {
  padding: 14px 18px;
  border-top: 1px solid #d8e1ea;
  background: #fffdf7;
}

.lpReceiptLine b {
  color: #0f766e;
}

.lpStrip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  overflow: hidden;
  background: #d7e0ea;
}

.lpStrip span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 18px;
  background: #ffffff;
  color: #607084;
  line-height: 1.35;
}

.lpStrip b {
  color: #071a2c;
  font-size: 0.94rem;
}

.lpSection,
.lpGuideBanner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.lpSection {
  padding: clamp(66px, 8vw, 104px) 0 0;
}

.lpSectionHead {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 28px;
}

.lpSectionHead h2,
.lpGuideBanner h2 {
  margin: 0;
  color: #071a2c;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}

.lpSectionHead p:not(.lpKicker),
.lpGuideBanner p:not(.lpKicker) {
  margin: 0;
  color: #5c6f84;
  font-size: 1.05rem;
  line-height: 1.6;
}

.lpModuleGrid,
.lpFlowGrid,
.lpFaqGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lpModule,
.lpFlowGrid article,
.lpFaqGrid article {
  min-width: 0;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  background: #ffffff;
  padding: 22px;
}

.lpModule span,
.lpFlowGrid b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #edf7f5;
  color: #0f766e;
  font-weight: 900;
}

.lpModule h3,
.lpFlowGrid h3,
.lpFaqGrid h3,
.lpPlan h3 {
  margin: 18px 0 9px;
  color: #071a2c;
  font-size: 1.2rem;
  line-height: 1.22;
}

.lpModule p,
.lpFlowGrid p,
.lpFaqGrid p,
.lpPlan p {
  margin: 0;
  color: #5c6f84;
  line-height: 1.58;
}

.lpOperation {
  padding-top: clamp(56px, 7vw, 88px);
}

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

.lpPlansSection {
  padding-bottom: 0;
}

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

.lpPlanCompare {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 1.1fr 1fr;
  gap: 0;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid #cddce5;
  border-radius: 14px;
  overflow: hidden;
  background: #cddce5;
  box-shadow: 0 24px 70px rgba(7, 26, 44, 0.09);
}

.lpPlanColumn {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  background: #ffffff;
}

.lpPlanColumnFeatured {
  background:
    linear-gradient(180deg, rgba(236, 249, 246, 0.95), #ffffff 42%);
}

.lpPlanColumnHead {
  display: grid;
  gap: 10px;
  min-height: 214px;
}

.lpPlanColumnHead span {
  color: #607084;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lpPlanColumnHead b {
  width: fit-content;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf2f7;
  color: #071a2c;
  font-size: 0.82rem;
}

.lpPlanColumnFeatured .lpPlanColumnHead b {
  background: #dff5f1;
  color: #087368;
}

.lpPlanColumnHead h3 {
  margin: 0;
  color: #071a2c;
  font-size: clamp(1.35rem, 1.8vw, 1.86rem);
  line-height: 1.08;
}

.lpPlanColumnHead p {
  margin: 0;
  color: #53677c;
  font-size: 0.94rem;
  line-height: 1.48;
}

.lpPlanColumnPrice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.lpPlanColumnPrice div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #d8e4eb;
  border-radius: 8px;
  background: #f7fafc;
}

.lpPlanColumnPrice span {
  color: #607084;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lpPlanColumnPrice strong {
  color: #071a2c;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1;
  white-space: nowrap;
}

.lpPlanColumn .lpPlanCustom {
  margin: 0;
  padding: 12px;
}

.lpPlanColumn ul {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lpPlanColumn li {
  position: relative;
  padding-left: 20px;
  color: #34465a;
  font-size: 0.93rem;
  line-height: 1.35;
}

.lpPlanColumn li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0f766e;
}

.lpPlanColumn .lpPlanButton {
  min-height: 48px;
}

.lpPlanActions {
  display: grid;
  gap: 10px;
}

.lpPlanActions form {
  display: grid;
}

.lpPlanButtonSecondary {
  background: #ffffff;
  color: #071a2c;
  border: 1px solid #cddce5;
}

.lpPlanButtonSecondary:hover {
  background: #f4f8fa;
}

.paymentSuccessShell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 118, 110, 0.1), transparent 36%),
    #eef5f4;
}

.paymentSuccessCard {
  width: min(620px, 100%);
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid #cddce5;
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 24px 80px rgba(7, 26, 44, 0.12);
}

.paymentSuccessMark {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #dff5f1;
  color: #087368;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paymentSuccessCard h1 {
  margin: 0;
  color: #071a2c;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.04;
}

.paymentSuccessCard p,
.paymentSuccessCard small {
  max-width: 500px;
  margin: 0;
  color: #53677c;
  font-size: 1rem;
  line-height: 1.55;
}

.paymentLicenseBox {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #cddce5;
  border-radius: 10px;
  background: #f7fafc;
}

.paymentLicenseBox span,
.paymentLicenseMeta dt {
  color: #607084;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paymentLicenseBox strong {
  color: #071a2c;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(1rem, 3vw, 1.35rem);
  overflow-wrap: anywhere;
}

.paymentLicenseMeta {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.paymentLicenseMeta div {
  padding: 14px;
  border: 1px solid #d8e4eb;
  border-radius: 10px;
  background: #ffffff;
  text-align: left;
}

.paymentLicenseMeta dd {
  margin: 6px 0 0;
  color: #071a2c;
  font-weight: 800;
}

.paymentSuccessBack {
  width: min(320px, 100%);
}

.lpPlan {
  min-width: 0;
  border: 1px solid #cfd9e3;
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(22px, 3vw, 32px);
}

.lpPlanFeatured {
  border-color: #0f766e;
  box-shadow: 0 20px 46px rgba(15, 118, 110, 0.12);
}

.lpPlanTop {
  margin-bottom: 18px;
}

.lpPlanTop b {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf2f7;
  color: #071a2c;
  font-size: 0.82rem;
}

.lpPlanFeatured .lpPlanTop b {
  background: #e3f4f1;
  color: #0f766e;
}

.lpPlan h3 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.lpPriceRows {
  display: grid;
  gap: 8px;
  margin: 24px 0;
}

.lpPriceRows div {
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  background: #f8fafc;
}

.lpPriceRows strong {
  color: #071a2c;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.lpPlanCustom {
  display: grid;
  gap: 7px;
  margin: -4px 0 22px;
  padding: 15px 16px;
  border: 1px solid #bcded9;
  border-left: 4px solid #0f766e;
  border-radius: 8px;
  background: #eef8f6;
}

.lpPlanCustom span {
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lpPlanCustom strong {
  color: #071a2c;
  font-size: 1rem;
  line-height: 1.35;
}

.lpPlan ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.lpPlan li {
  position: relative;
  padding-left: 22px;
  color: #34465a;
  line-height: 1.45;
}

.lpPlan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0f766e;
}

.lpPlanActions {
  width: 100%;
  margin: 0 0 10px;
}

.lpPlanButton {
  width: 100%;
  border: 0;
  background: #071a2c;
  color: #ffffff;
  font-size: 0.96rem;
}

.lpPlanButton:hover {
  background: #0f766e;
}

.lpPlanButtonMuted {
  border: 1px solid #cbd7e2;
  background: #ffffff;
  color: #071a2c;
}

.lpPlanButtonMuted:hover {
  border-color: #0f766e;
  background: #edf7f5;
  color: #0f766e;
}

.lpSellerBox {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #d8e1ea;
  border-radius: 8px;
  background: #f8fafc;
}

.lpSellerBox span {
  color: #607084;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lpSellerBox a {
  color: #071a2c;
  font-weight: 850;
}

.lpSellerBox a:hover {
  color: #0f766e;
}

.lpInstallerSection {
  padding-top: clamp(54px, 7vw, 84px);
}

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

.lpInstallerCard {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #cfd9e3;
  border-radius: 8px;
  background: #ffffff;
}

.lpInstallerCardOnline {
  border-color: #0f766e;
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.12);
}

.lpInstallerTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lpInstallerTop span {
  color: #607084;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lpInstallerTop b {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf2f7;
  color: #071a2c;
  font-size: 0.82rem;
}

.lpInstallerCardOnline .lpInstallerTop b {
  background: #e3f4f1;
  color: #0f766e;
}

.lpInstallerCard h3 {
  margin: 0;
  color: #071a2c;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.lpInstallerCard p {
  margin: 0;
  color: #4b5f75;
  line-height: 1.55;
}

.lpTrialFlow {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #d8e1ea;
  border-radius: 8px;
  background: #f8fafc;
}

.lpTrialFlow span {
  color: #607084;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lpTrialFlow p {
  margin: 0;
  color: #4b5f75;
  font-size: 0.96rem;
  line-height: 1.45;
}

.lpPaidOnlyNote {
  padding: 12px 14px;
  border-left: 4px solid #0f766e;
  border-radius: 8px;
  background: #eef8f6;
  color: #0b5f59 !important;
  font-weight: 850;
}

.lpGuideBanner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: clamp(56px, 7vw, 86px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #cbd7e2;
  border-radius: 8px;
  background: #071a2c;
  color: #ffffff;
}

.lpGuideBanner .lpKicker {
  color: #79d6cd;
}

.lpGuideBanner h2 {
  color: #ffffff;
}

.lpGuideBanner p:not(.lpKicker) {
  color: #c6d2df;
}

.lpFooter {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(140px, 0.7fr) minmax(160px, 0.8fr) minmax(280px, 1.25fr);
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: clamp(66px, 8vw, 100px) auto 0;
  padding: 30px 0 42px;
  border-top: 1px solid #cbd7e2;
}

.lpFooterColumn,
.lpFooterWhatsapp {
  display: grid;
  align-content: start;
  gap: 9px;
}

.lpFooterColumn b,
.lpFooterWhatsapp b {
  color: #071a2c;
  font-size: 0.92rem;
}

.lpFooterColumn a,
.lpFooterWhatsapp a {
  color: #5c6f84;
  font-weight: 750;
  line-height: 1.4;
}

.lpFooterColumn a:hover,
.lpFooterWhatsapp a:hover {
  color: #0f766e;
}

@media (max-width: 1080px) {
  .lpHeader {
    grid-template-columns: 1fr auto;
  }

  .lpNav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

  .lpSystemPanel {
    max-width: 760px;
  }

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

@media (max-width: 820px) {
  .lpHeader {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .lpBrand {
    flex: 1 1 220px;
  }

  .lpHeaderActions {
    flex: 1 1 100%;
  }

  .lpHeaderActions .lpGhostButton,
  .lpHeaderActions .lpSolidButton {
    flex: 1 1 0;
  }

  .lpHero,
  .lpStrip,
  .lpSection,
  .lpGuideBanner,
  .lpFooter {
    width: min(100% - 28px, 1180px);
  }

  .lpHeroStats,
  .lpPanelGrid,
  .lpModuleGrid,
  .lpInstallerGrid,
  .lpPlans,
  .lpFaqGrid,
  .lpGuideBanner {
    grid-template-columns: 1fr;
  }

  .lpHeroCopy h1 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }
}

@media (max-width: 620px) {
  .lpHeader {
    position: static;
    padding: 14px;
  }

  .lpHeaderActions,
  .lpHeroActions {
    flex-direction: column;
    align-items: stretch;
  }

  .lpNav {
    width: 100%;
  }

  .lpHero {
    padding-top: 42px;
  }

  .lpStrip,
  .lpFlowGrid,
  .lpFooter {
    grid-template-columns: 1fr;
  }

  .lpReceiptLine,
  .lpPriceRows div {
    align-items: flex-start;
    flex-direction: column;
  }

  .lpModule,
  .lpFlowGrid article,
  .lpFaqGrid article,
  .lpPlan {
    padding: 18px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #edf2f6;
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(216, 229, 239, 0.94);
  background: rgba(248, 252, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep);
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.topbar nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.topbar nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.topbar nav a:hover {
  color: var(--navy);
  background: #e9f2fa;
}

.topbarAction,
.primaryButton,
.secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
}

.topbarAction,
.primaryButton {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(13, 129, 118, 0.2);
}

.topbarAction:hover,
.primaryButton:hover {
  background: var(--teal-deep);
}

.secondaryButton {
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--navy);
}

.secondaryButton:hover {
  background: #f2f8fd;
}

.hero,
.shortcutBand,
.section,
.appDemo,
.splitSection,
.printSection,
.pricingSection,
.faqSection,
.finalCta {
  width: min(calc(100% - 36px), 1320px);
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  min-height: auto;
  padding: 28px 0 30px;
}

.heroCopy {
  max-width: none;
}

.productMark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 40, 64, 0.045);
}

.productMark img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.productMark span {
  display: block;
  color: var(--navy-deep);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.productMark b {
  display: block;
  margin-top: 6px;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid #cde3f3;
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  color: var(--navy-deep);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 950;
  line-height: 1.04;
}

.heroLead {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
}

.heroBenefit {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #b9d8e9;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 40, 64, 0.055);
}

.heroBenefit strong {
  color: var(--navy-deep);
  font-size: 20px;
}

.heroBenefit span {
  color: var(--muted);
  line-height: 1.5;
}

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

.heroFlow article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  min-height: 124px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(8, 40, 64, 0.04);
}

.heroFlow b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
}

.heroFlow strong,
.heroFlow span {
  display: block;
}

.heroFlow strong {
  margin-bottom: 3px;
  color: var(--navy-deep);
}

.heroFlow span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

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

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

.impactPanel article {
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.impactPanel span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.impactPanel strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--navy-deep);
  font-size: 21px;
  line-height: 1.1;
}

.impactPanel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.impactWide {
  grid-column: 1 / -1;
}

.impactWide p {
  max-width: 660px;
}

.controlPreview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 20px;
  align-items: stretch;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(17, 63, 103, 0.06), rgba(13, 129, 118, 0.11)),
    #ffffff;
}

.controlPreview p {
  margin-bottom: 0;
}

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

.controlMetrics b {
  display: grid;
  align-content: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid #c3dfdc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--teal);
  font-size: 24px;
  line-height: 1;
}

.controlMetrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quickFacts span {
  min-height: 62px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(8, 40, 64, 0.045);
}

.quickFacts b {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-deep);
  font-size: 14px;
}

.heroShowcase {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 780px;
  justify-self: end;
  padding: 10px;
  border: 1px solid #dbe9f3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.screenFrame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
}

.screenTop {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-deep);
  font-weight: 900;
}

.screenTop strong {
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--soft-teal);
  color: var(--teal);
}

.screenTabs {
  display: flex;
  gap: 6px;
  padding: 8px 8px 0;
  background: var(--soft);
}

.screenTabs span,
.screenTabs b {
  min-width: 82px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  text-align: center;
  font-weight: 900;
}

.screenTabs b {
  background: var(--navy);
  color: #ffffff;
}

.screenBody {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 8px;
  padding: 8px;
  background: var(--soft);
}

.commandPanel,
.salePanel {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(8, 40, 64, 0.035);
}

.commandPanel h2 {
  margin-bottom: 8px;
  color: var(--navy-deep);
  font-size: 18px;
}

.fields {
  display: grid;
  gap: 5px;
  margin-bottom: 8px;
}

.fields span,
.inputPreview {
  min-height: 30px;
  padding: 7px 9px;
  border: 1px solid #bfd3e4;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 800;
}

.tableLine,
.commandTotal {
  display: grid;
  grid-template-columns: 1fr 32px auto;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  font-size: 14px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.tableLine strong,
.commandTotal strong,
.productPreview strong {
  color: var(--teal);
}

.commandTotal {
  grid-template-columns: 1fr auto;
  margin-top: 8px;
  padding-top: 8px;
  color: var(--navy-deep);
  font-size: 18px;
}

.salePanel {
  display: grid;
  gap: 7px;
}

.inputPreview {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.inputPreview b {
  color: var(--navy-deep);
}

.productPreview {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.productPreview span {
  color: var(--muted);
  font-weight: 800;
}

.productPreview.active {
  border-color: var(--teal);
  background: var(--soft-teal);
  box-shadow: inset 5px 0 0 var(--teal);
}

.receiptMini {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: center;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #c7d9e7;
  border-radius: 8px;
  background: #ffffff;
}

.receiptMini span,
.receiptMini b {
  color: var(--muted);
  font-weight: 900;
}

.receiptMini strong {
  grid-row: span 2;
  color: var(--teal);
  font-size: 24px;
}

.shortcutBand {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0 0 22px;
}

.shortcutBand span {
  min-height: 62px;
  padding: 13px 14px;
  border: 1px solid #b9d8e9;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f9fd 100%);
  color: var(--muted);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(8, 40, 64, 0.045);
}

.shortcutBand b {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.12;
}

.shortcutBand span:nth-child(1),
.shortcutBand span:nth-child(2) {
  border-color: #a8d6d0;
  background: linear-gradient(180deg, #effbf8 0%, #ffffff 100%);
}

.shortcutBand span:nth-child(1) b,
.shortcutBand span:nth-child(2) b {
  color: var(--teal);
}

.section,
.appDemo,
.splitSection,
.printSection,
.pricingSection,
.faqSection {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.sectionIntro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px 34px;
  align-items: end;
  max-width: none;
  margin-bottom: 22px;
}

.appDemo .sectionIntro {
  max-width: none;
}

.appShowcase {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.cashierDemoSection {
  width: min(calc(100% - 24px), 1640px);
  padding-top: 46px;
  padding-bottom: 46px;
}

.cashierDemoSection .sectionIntro {
  max-width: none;
}

.cashierDemo {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #c7ddeb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(8, 40, 64, 0.12);
}

.cashierTop {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.cashierTop span,
.cashierTop strong {
  display: block;
}

.cashierTop span {
  color: var(--navy-deep);
  font-size: 22px;
  font-weight: 950;
}

.cashierTop strong {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.cashierTop > b {
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--soft-teal);
  color: var(--teal);
  font-size: 20px;
}

.cashierTabs {
  display: flex;
  gap: 8px;
  padding: 14px 16px 0;
  background: #f0f7fc;
}

.cashierTabs button {
  min-width: 140px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background: #ffffff;
  color: var(--muted);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.cashierTabs button.active {
  border-color: var(--navy);
  background: var(--navy);
  color: #ffffff;
}

.cashierGrid {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(560px, 1.52fr) minmax(288px, 0.78fr);
  gap: 14px;
  padding: 16px;
  background: #f0f7fc;
}

.ticketConsole,
.productConsole,
.paymentConsole,
.stockConsole {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 40, 64, 0.055);
}

.ticketConsole {
  display: grid;
  grid-template-rows: auto auto minmax(260px, 1fr) auto;
  padding: 18px;
}

.consoleTitle {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.consoleTitle span {
  color: var(--navy-deep);
  font-size: 30px;
  font-weight: 950;
}

.consoleTitle b {
  padding: 8px 10px;
  border-radius: 8px;
  background: #eef6fc;
  color: var(--navy);
}

.miniFields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.miniFields span {
  min-height: 42px;
  padding: 11px 10px;
  border: 1px solid #bfd3e4;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
}

.ticketRows {
  overflow: auto;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.emptyTicket {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
}

.ticketRow {
  display: grid;
  grid-template-columns: 70px minmax(112px, 1fr) 38px minmax(88px, auto) 92px;
  gap: 8px;
  align-items: center;
  min-height: 54px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}

.ticketRow span {
  color: var(--muted);
  font-weight: 800;
}

.ticketRow strong {
  color: var(--ink);
  font-size: 15px;
}

.ticketRow b,
.ticketRow em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.ticketRow button {
  min-width: 84px;
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  background: #a91d20;
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ticketTotalLive {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.ticketTotalLive span {
  color: var(--muted);
  font-weight: 900;
}

.ticketTotalLive strong {
  color: #a91d20;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
}

.productConsole {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 18px;
}

.codeEntry label,
.paymentConsole label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 900;
}

.codeEntry div {
  display: grid;
  grid-template-columns: 1fr 156px;
  gap: 10px;
}

.codeEntry input,
.paymentConsole input {
  width: 100%;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid #b9d1e6;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 22px;
  font-weight: 900;
}

.codeEntry input:focus,
.paymentConsole input:focus {
  outline: 3px solid rgba(13, 129, 118, 0.16);
  border-color: var(--teal);
}

.codeEntry button {
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #ffffff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.productPicker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
  max-height: 620px;
  overflow: auto;
}

.productPicker button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  align-items: center;
  min-height: 108px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.productPicker button:hover,
.productPicker button.active {
  border-color: var(--teal);
  background: var(--soft-teal);
  box-shadow: inset 5px 0 0 var(--teal);
}

.productPicker button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.productPicker span {
  grid-row: span 2;
  color: var(--muted);
  font-weight: 900;
}

.productPicker strong {
  color: var(--ink);
  font-size: 18px;
}

.productPicker small {
  color: var(--muted);
  font-weight: 850;
}

.productPicker b {
  grid-column: 2;
  color: var(--teal);
  font-size: 20px;
}

.paymentConsole {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.inlineReceiptDemo {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  gap: 18px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #f8fcff;
}

.finalReceiptDemo {
  scroll-margin-top: 92px;
}

.receiptFlash {
  animation: receiptPulse 850ms ease;
}

@keyframes receiptPulse {
  0% {
    background: #e8fbf7;
    box-shadow: inset 0 0 0 3px rgba(13, 129, 118, 0.22);
  }

  100% {
    background: #f8fcff;
    box-shadow: inset 0 0 0 0 rgba(13, 129, 118, 0);
  }
}

.inlineReceiptCopy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
  border: 1px solid #c7ddeb;
  border-radius: 8px;
  background: #ffffff;
}

.inlineReceiptCopy span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.inlineReceiptCopy strong {
  color: var(--navy-deep);
  font-size: 26px;
  line-height: 1.12;
}

.inlineReceiptCopy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.liveReceiptPaper {
  width: min(100%, 560px);
  justify-self: center;
}

.emptyReceipt {
  margin: 0;
  padding: 12px 0;
  color: #555555;
  text-align: center;
}

.stockConsole {
  grid-column: 1 / -1;
  padding: 18px;
}

.stockHeader {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.stockHeader span,
.stockHeader strong {
  display: block;
}

.stockHeader span {
  color: var(--navy-deep);
  font-size: 24px;
  font-weight: 950;
}

.stockHeader strong {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.stockHeader > b {
  min-width: 166px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff2df;
  color: #9a5a00;
  text-align: center;
}

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

.stockRow {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 5px 10px;
  align-items: center;
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.stockRow span {
  grid-row: span 2;
  color: var(--muted);
  font-weight: 900;
}

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

.stockRow small,
.stockRow em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.stockRow b {
  grid-column: 1 / -1;
  color: var(--teal);
}

.stockRow.low {
  border-color: #f0c27a;
  background: #fff9ed;
  box-shadow: inset 5px 0 0 #c97b00;
}

.stockRow.low b {
  color: #9a5a00;
}

.paymentTotal {
  padding: 16px;
  border: 1px solid #a9d8d1;
  border-radius: 8px;
  background: var(--soft-teal);
}

.paymentTotal span,
.changeBox span {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.paymentTotal strong {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 42px;
  line-height: 1;
}

.changeBox {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.changeBox b {
  color: var(--navy-deep);
  font-size: 28px;
}

.payButtons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.payButtons button,
.finishButton,
.clearButton {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.payButtons button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(13, 129, 118, 0.22);
}

.finishButton {
  border: 0;
  background: var(--teal);
  color: #ffffff;
}

.clearButton {
  color: var(--navy);
}

.demoStatus {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.demoStatus span {
  color: var(--navy-deep);
  font-weight: 850;
}

.demoStatus b {
  color: var(--muted);
}

.demoModalBackdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 40, 64, 0.36);
  backdrop-filter: blur(10px);
}

.isHidden {
  display: none !important;
}

.demoModal {
  overflow: hidden;
  width: min(100%, 820px);
  max-height: min(92vh, 820px);
  border: 1px solid #c7ddeb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(8, 40, 64, 0.28);
}

.demoModalHeader {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #f7fbfe;
}

.demoModalHeader span,
.demoModalHeader strong {
  display: block;
}

.demoModalHeader span {
  width: fit-content;
  margin-bottom: 4px;
  padding: 5px 8px;
  border-radius: 8px;
  background: #e9f2fa;
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
}

.demoModalHeader strong {
  color: var(--navy-deep);
  font-size: 20px;
}

.demoModalHeader button {
  width: 42px;
  height: 42px;
  border: 1px solid #c7ddeb;
  border-radius: 8px;
  background: #eef6fc;
  color: var(--navy-deep);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.paymentDialogGrid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
  padding: 18px;
}

.paymentDialogTotal {
  min-height: 240px;
  padding: 22px;
  border: 1px solid #a9d8d1;
  border-radius: 8px;
  background: var(--soft-teal);
}

.paymentDialogTotal span,
.paymentDialogTotal small,
.paymentDialogForm label {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.paymentDialogTotal strong {
  display: block;
  margin: 12px 0 10px;
  color: var(--teal);
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1;
}

.paymentDialogForm {
  display: grid;
  gap: 12px;
}

.paymentMethodGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.paymentMethodGrid button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.paymentMethodGrid button.active {
  border-color: var(--teal);
  background: var(--soft-teal);
  color: var(--teal);
}

.paymentDialogForm input {
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid #b9d1e6;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 24px;
  font-weight: 950;
}

.paymentDialogChange {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.paymentDialogChange span {
  color: var(--muted);
  font-weight: 900;
}

.paymentDialogChange b {
  color: var(--navy-deep);
  font-size: 30px;
}

.pixPreview {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #c8e2df;
  border-radius: 8px;
  background: #f3fbf9;
}

.pixPreview strong,
.pixPreview span {
  display: block;
}

.pixPreview strong {
  color: var(--navy-deep);
}

.pixPreview span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.miniQr {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 2px;
  width: 76px;
  height: 76px;
  padding: 6px;
  border: 2px solid #111111;
  background: #ffffff;
}

.miniQr.large {
  width: 136px;
  height: 136px;
  margin: 16px auto 8px;
}

.miniQr i {
  background: transparent;
}

.miniQr i.on {
  background: #111111;
}

.receiptDialog {
  width: min(100%, 620px);
}

.receiptPaper {
  width: min(100% - 36px, 430px);
  max-height: 58vh;
  overflow: auto;
  margin: 18px auto;
  padding: 28px 26px;
  border: 1px solid #d7d0bd;
  border-radius: 8px;
  background: #fffdf6;
  color: #202020;
  font-family: "Courier New", monospace;
}

.receiptPaper h3,
.receiptPaper p,
.receiptThanks,
.receiptQr {
  text-align: center;
}

.receiptPaper h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.receiptPaper p {
  margin-bottom: 8px;
}

.receiptLine {
  height: 1px;
  margin: 16px 0;
  border-top: 2px dashed #cfc7b5;
}

.receiptProduct {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  margin-bottom: 12px;
}

.receiptProduct span {
  grid-column: 1 / -1;
  font-weight: 900;
}

.receiptProduct small {
  color: #303030;
}

.receiptProduct b {
  text-align: right;
}

.receiptTotals {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  font-size: 18px;
}

.receiptQr span,
.receiptThanks {
  display: block;
  font-weight: 900;
}

.receiptActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 18px 18px;
}

.receiptActions button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.receiptActions .finishButton {
  border: 0;
  background: var(--teal);
  color: #ffffff;
}

.sectionIntro h2,
.splitCopy h2,
.printCopy h2,
.faqSection h2,
.finalCta h2 {
  margin-bottom: 12px;
  color: var(--navy-deep);
  font-size: clamp(30px, 3.7vw, 50px);
  line-height: 1.08;
}

.sectionIntro p,
.splitCopy p,
.printCopy p,
.featureCard p,
.timelineItem p,
.faqGrid p,
.finalCta p {
  color: var(--muted);
  line-height: 1.55;
}

.sectionIntro > p:not(.eyebrow),
.splitCopy > p:not(.eyebrow),
.printCopy > p:not(.eyebrow) {
  max-width: 700px;
  font-size: 18px;
}

.sectionIntro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.sectionIntro h2 {
  margin-bottom: 0;
}

.sectionIntro > p:not(.eyebrow) {
  justify-self: end;
  margin-bottom: 0;
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: feature-card;
}

.featureCard,
.timelineItem,
.faqGrid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(8, 40, 64, 0.045);
}

.featureCard {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  padding: 24px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.98)),
    #ffffff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.featureCard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--navy);
}

.featureCard::after {
  counter-increment: feature-card;
  content: counter(feature-card, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #e9f2fa;
  color: var(--navy);
  font-size: 15px;
  font-weight: 950;
}

.featureCard:hover {
  transform: translateY(-3px);
  border-color: #9cc8e2;
  box-shadow: 0 18px 34px rgba(8, 40, 64, 0.1);
}

.featureCard:nth-child(1),
.featureCard:nth-child(6),
.featureCard:nth-child(8) {
  border-color: #a8d6d0;
  background:
    linear-gradient(180deg, rgba(233, 248, 245, 0.98), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.featureCard:nth-child(1)::before,
.featureCard:nth-child(6)::before,
.featureCard:nth-child(8)::before {
  background: var(--teal);
}

.featureCard:nth-child(1)::after,
.featureCard:nth-child(6)::after,
.featureCard:nth-child(8)::after {
  background: #dff4f1;
  color: var(--teal);
}

.featureCard h3,
.timelineItem h3,
.faqGrid h3 {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 20px;
}

.featureCard h3 {
  max-width: calc(100% - 58px);
  margin-bottom: 16px;
  color: var(--navy-deep);
  font-size: 22px;
  line-height: 1.15;
}

.featureCard p {
  max-width: 92%;
  margin-bottom: 0;
  font-size: 17px;
}

.splitSection,
.printSection {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timelineItem {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  min-height: 94px;
  padding: 16px;
}

.timelineItem > b {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-size: 20px;
}

.printSection {
  align-items: stretch;
}

.receiptMock {
  min-height: 480px;
  padding: 28px 26px;
  border: 1px solid #d5d0c2;
  border-radius: 8px;
  background: #fffdf6;
  color: #202020;
  box-shadow: 0 18px 42px rgba(8, 40, 64, 0.09);
  font-family: "Courier New", monospace;
}

.receiptMock h3,
.receiptMock p {
  text-align: center;
}

.receiptMock h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.receiptMock p {
  margin-bottom: 18px;
}

.receiptMeta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 0 16px;
  border-top: 2px dashed #cfc7b5;
  border-bottom: 1px solid #e5dcc9;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.receiptProducts {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 2px dashed #cfc7b5;
}

.receiptProducts article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 18px;
  align-items: end;
}

.receiptProducts article > span {
  font-weight: 900;
}

.receiptProducts article > small {
  grid-column: 1;
  color: #424242;
  font-size: 14px;
  text-align: left;
}

.receiptProducts article > b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  font-size: 17px;
}

.receiptInstruction {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 18px;
  border-top: 2px dashed #cfc7b5;
  border-bottom: 2px dashed #cfc7b5;
  text-align: center;
}

.receiptInstruction strong {
  color: #202020;
  font-size: 20px;
}

.receiptInstruction span {
  color: #424242;
  font-size: 15px;
  line-height: 1.45;
}

.receiptRows {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  padding: 22px 0;
  border-top: 2px dashed #cfc7b5;
  border-bottom: 2px dashed #cfc7b5;
}

.receiptRows strong {
  font-size: 22px;
}

.receiptTotals {
  padding: 16px 0;
  border-top: 0;
}

.receiptControl {
  margin-top: 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}

.qrMock {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  width: 118px;
  height: 118px;
  margin: 20px auto 12px;
  padding: 8px;
  border: 2px solid #111111;
  background: #ffffff;
}

.qrMock i {
  border-radius: 2px;
  background: transparent;
}

.qrMock i.on {
  background: #111111;
}

.receiptMock small {
  display: block;
  text-align: center;
}

.receiptProducts small {
  display: block;
  text-align: left;
}

.printCopy {
  display: grid;
  align-content: center;
  align-self: stretch;
}

.pillList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pillList span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 900;
}

.printOperations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.printOperations article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid #b9d8e9;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 40, 64, 0.045);
}

.printOperations b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-size: 14px;
}

.printOperations strong,
.printOperations span {
  display: block;
}

.printOperations strong {
  margin-bottom: 5px;
  color: var(--navy-deep);
  font-size: 17px;
}

.printOperations span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.printerStatus {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid #9ed2cb;
  border-radius: 8px;
  background: var(--soft-teal);
}

.printerStatus span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.printerStatus strong {
  color: var(--navy-deep);
  font-size: 18px;
  line-height: 1.25;
}

.faqGrid article {
  padding: 20px;
}

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

.pricingPromise {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  padding: 18px 22px;
  border: 1px solid #bfccd7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 26, 44, 0.05);
}

.pricingPromise strong {
  color: var(--navy-deep);
  font-size: 18px;
}

.pricingPromise span {
  color: var(--muted);
  font-weight: 850;
}

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

.priceCard {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  min-height: 520px;
  padding: 30px;
  border: 1px solid #c5d1dc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 26, 44, 0.08);
}

.priceCard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--navy);
}

.priceCard.onlinePlan::before {
  background: var(--teal);
}

.priceCardHeader {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}

.priceCardHeader > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #b8c5d1;
  border-radius: 8px;
  background: #f5f8fa;
  color: var(--navy-deep);
  font-size: 19px;
  font-weight: 950;
}

.onlinePlan .priceCardHeader > span {
  border-color: #98c7c1;
  background: #edf7f5;
  color: var(--teal-deep);
}

.priceCardHeader small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.priceCardHeader h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.priceCard p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

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

.priceOptions div {
  padding: 16px;
  border: 1px solid #cfd9e3;
  border-radius: 8px;
  background: #f7f9fb;
}

.priceOptions span,
.priceOptions strong,
.priceOptions em {
  display: block;
}

.priceOptions span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.priceOptions strong {
  color: var(--navy-deep);
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1;
  white-space: nowrap;
}

.priceOptions em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.priceCard ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.priceCard li {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #e1e8ee;
  color: var(--navy-deep);
  font-weight: 800;
  line-height: 1.35;
}

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

.offlinePlan li::before {
  background: var(--navy);
}

.priceCard form {
  align-self: end;
}

.planActions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.priceCard button,
.checkoutButton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.priceCard button:hover,
.checkoutButton:hover {
  background: var(--navy-deep);
}

.priceCard.onlinePlan {
  border-color: #9fc9c4;
}

.priceCard.onlinePlan button,
.priceCard.onlinePlan .checkoutButton {
  background: var(--teal);
}

.priceCard.onlinePlan button:hover,
.priceCard.onlinePlan .checkoutButton:hover {
  background: var(--teal-deep);
}

.planActions .secondary,
.priceCard.onlinePlan .planActions .secondary {
  border: 1px solid #c5d1dc;
  background: #ffffff;
  color: var(--navy-deep);
}

.planActions .secondary:hover,
.priceCard.onlinePlan .planActions .secondary:hover {
  border-color: #9fc9c4;
  background: #edf7f5;
  color: var(--teal-deep);
}

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

.paymentTrust span {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 10px;
  border: 1px solid #cfd9e3;
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy-deep);
  font-weight: 850;
  text-align: center;
  box-shadow: 0 10px 22px rgba(7, 26, 44, 0.04);
}

.finalCta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid #b9d8e9;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.finalCta img {
  width: 82px;
  height: 82px;
  border-radius: 8px;
}

.finalCta p {
  margin-bottom: 0;
}

.siteFooter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(calc(100% - 36px), 1320px);
  margin: 0 auto 18px;
  padding: 20px 0 10px;
  border-top: 1px solid #c7ddeb;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.footerBrand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footerBrand strong,
.footerBrand span {
  display: block;
}

.footerBrand strong {
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 950;
}

.footerBrand span {
  margin-top: 2px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.siteFooter p {
  margin: 0;
  text-align: center;
  color: #6d7d8e;
  font-size: 14px;
  font-weight: 750;
}

.siteFooter nav {
  display: flex;
  justify-content: end;
  gap: 8px;
}

.siteFooter nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.siteFooter nav a:hover {
  border-bottom-color: var(--teal);
  background: transparent;
}

/* Serious PDV redesign pass */
.topbar {
  min-height: 64px;
  padding: 10px clamp(18px, 4vw, 64px);
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  gap: clamp(18px, 3vw, 36px);
  border-bottom: 1px solid #d9e0e7;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(7, 26, 44, 0.04);
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 850;
}

.brand span,
.topbar nav a,
.topbarAction {
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}

.topbar nav {
  gap: 2px;
  min-width: 0;
  padding-left: 20px;
}

.topbar nav a {
  padding-right: 9px;
  padding-left: 9px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
}

.topbarAction,
.primaryButton,
.secondaryButton,
.priceCard button,
.checkoutButton {
  border-radius: 6px;
  box-shadow: none;
  font-weight: 850;
}

.topbarAction {
  min-width: 144px;
}

.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 76px);
  border-bottom: 1px solid #d8e0e8;
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f6f8 100%),
    #f6f8fa;
}

.productMark {
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.productMark img {
  width: 44px;
  height: 44px;
  border: 1px solid #d8e0e8;
  border-radius: 6px;
  background: #ffffff;
}

.productMark span {
  color: var(--navy-deep);
  font-size: 24px;
  font-weight: 850;
}

.productMark b {
  color: #9fc9c4;
  font-size: 12px;
  letter-spacing: 0;
}

.hero .eyebrow,
.sectionIntro .eyebrow,
.splitCopy .eyebrow,
.printCopy .eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--teal);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  color: var(--navy-deep);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.heroLead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
}

.heroBenefit {
  max-width: 720px;
  padding: 18px 0 18px 18px;
  border: 0;
  border-left: 4px solid var(--teal);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.heroBenefit strong {
  color: var(--navy-deep);
  font-size: 19px;
}

.heroBenefit span {
  color: var(--muted);
}

.heroFlow {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
  border-top: 1px solid #d8e0e8;
  border-bottom: 1px solid #d8e0e8;
}

.heroFlow article {
  grid-template-columns: 36px 1fr;
  min-height: 0;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #e2e8ee;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.heroFlow article:last-child {
  border-bottom: 0;
}

.heroFlow b {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #e7f3f1;
  color: var(--teal-deep);
  font-size: 13px;
}

.heroFlow strong {
  color: var(--navy-deep);
}

.heroFlow span {
  color: var(--muted);
}

.heroActions {
  margin-top: 22px;
}

.secondaryButton {
  background: transparent;
}

.hero .secondaryButton {
  border-color: #bcc8d3;
  color: var(--navy-deep);
}

.hero .secondaryButton:hover {
  background: #eef3f7;
}

.quickFacts {
  max-width: 720px;
  gap: 0;
  border: 1px solid #d8e0e8;
  border-right: 0;
  background: #ffffff;
}

.quickFacts span {
  min-height: 70px;
  padding: 14px;
  border: 0;
  border-right: 1px solid #d8e0e8;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.quickFacts b {
  color: var(--navy-deep);
}

.impactPanel {
  gap: 0;
  overflow: hidden;
  align-self: center;
  border: 1px solid #d8e0e8;
  border-radius: 8px;
  background: #ffffff;
}

.impactPanel article {
  border: 0;
  border-right: 1px solid #e2e8ee;
  border-bottom: 1px solid #e2e8ee;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.impactPanel article:nth-child(2n) {
  border-right: 0;
}

.impactPanel span {
  color: var(--teal);
}

.impactPanel strong {
  color: var(--navy-deep);
  font-size: 19px;
}

.impactPanel p {
  color: var(--muted);
}

.controlPreview {
  background: #f7f9fb;
}

.controlMetrics b {
  border-color: #d8e0e8;
  border-radius: 6px;
  background: #ffffff;
  color: var(--navy-deep);
}

.controlMetrics span {
  color: var(--muted);
}

.shortcutBand {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 18px clamp(18px, 5vw, 76px);
  border-top: 1px solid #d8e0e8;
  border-bottom: 1px solid #d7dee6;
  background: #ffffff;
}

.shortcutBand span,
.shortcutBand span:nth-child(1),
.shortcutBand span:nth-child(2) {
  min-height: 0;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid #d8e0e8;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.shortcutBand span:last-child {
  border-right: 0;
}

.shortcutBand b,
.shortcutBand span:nth-child(1) b,
.shortcutBand span:nth-child(2) b {
  color: var(--navy-deep);
  font-size: 16px;
}

.section,
.appDemo,
.splitSection,
.printSection,
.pricingSection,
.faqSection {
  padding: 60px 0;
  border-top: 1px solid #dbe2e8;
}

.sectionIntro {
  margin-bottom: 26px;
}

.sectionIntro h2,
.splitCopy h2,
.printCopy h2,
.faqSection h2,
.finalCta h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 850;
}

.cashierDemo {
  border-color: #c5ced8;
  border-radius: 6px;
  background: #eef2f5;
  box-shadow: none;
}

.cashierTop {
  min-height: 66px;
  background: #101e2c;
}

.cashierTop span {
  color: #ffffff;
  font-size: 20px;
  font-weight: 850;
}

.cashierTop strong {
  color: #aebdca;
  font-size: 12px;
}

.cashierTop > b {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(15, 118, 110, 0.24);
  color: #dff4f1;
  font-size: 16px;
}

.cashierTabs,
.cashierGrid {
  background: #eef2f5;
}

.cashierTabs button {
  min-height: 46px;
  border-radius: 6px 6px 0 0;
  font-size: 15px;
  font-weight: 800;
}

.ticketConsole,
.productConsole,
.paymentConsole,
.stockConsole,
.inlineReceiptCopy,
.demoModal,
.paymentDialogTotal,
.receiptMock,
.printOperations article,
.printerStatus,
.pricingPromise,
.priceCard,
.paymentTrust span,
.finalCta {
  box-shadow: none;
}

.ticketConsole,
.productConsole,
.paymentConsole,
.stockConsole {
  border-color: #c7d0da;
  border-radius: 6px;
}

.consoleTitle span {
  font-size: 24px;
}

.consoleTitle b,
.miniFields span,
.ticketRows,
.codeEntry input,
.paymentConsole input,
.changeBox,
.payButtons button,
.finishButton,
.clearButton,
.demoModalHeader button,
.paymentMethodGrid button,
.paymentDialogForm input,
.priceOptions div,
.paymentTrust span,
.planActions .secondary,
.priceCardHeader > span {
  border-radius: 6px;
}

.ticketTotalLive strong,
.paymentTotal strong,
.changeBox b,
.paymentDialogTotal strong {
  color: var(--navy-deep);
}

.productPicker button {
  border-radius: 6px;
}

.productPicker button:hover,
.productPicker button.active {
  background: #eef6f4;
  box-shadow: inset 3px 0 0 var(--teal);
}

.paymentTotal,
.paymentDialogTotal {
  border-color: #c7d0da;
  border-left: 4px solid var(--teal);
  background: #ffffff;
}

.inlineReceiptDemo {
  background: #eef2f5;
}

.featureGrid {
  gap: 0;
  overflow: hidden;
  border: 1px solid #d2dbe4;
  border-right: 0;
  border-bottom: 0;
  border-radius: 8px;
  background: #ffffff;
}

.featureCard,
.featureCard:nth-child(1),
.featureCard:nth-child(6),
.featureCard:nth-child(8) {
  min-height: 168px;
  padding: 22px;
  border: 0;
  border-right: 1px solid #d2dbe4;
  border-bottom: 1px solid #d2dbe4;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  transition: none;
}

.featureCard::before,
.featureCard::after {
  display: none;
}

.featureCard:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.featureCard h3 {
  max-width: none;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 850;
}

.featureCard p {
  max-width: none;
  font-size: 15px;
}

.timelineItem,
.faqGrid article {
  border-color: #d2dbe4;
  border-radius: 6px;
  box-shadow: none;
}

.timelineItem {
  border-left: 4px solid var(--navy);
}

.timelineItem > b,
.printOperations b {
  border-radius: 6px;
}

.receiptMock {
  border-color: #c7d0da;
  background: #ffffff;
}

.receiptMeta,
.receiptInstruction,
.receiptRows {
  border-color: #c7d0da;
}

.pillList span {
  border-radius: 6px;
  background: #f7f9fb;
  font-weight: 800;
}

.printOperations article {
  border-color: #d2dbe4;
  border-radius: 6px;
}

.printerStatus {
  border-color: #c7d0da;
  background: #ffffff;
}

.faqGrid {
  gap: 0;
  overflow: hidden;
  border: 1px solid #d2dbe4;
  border-right: 0;
  border-bottom: 0;
  border-radius: 8px;
  background: #ffffff;
}

.faqGrid article {
  border: 0;
  border-right: 1px solid #d2dbe4;
  border-bottom: 1px solid #d2dbe4;
  border-radius: 0;
}

.finalCta {
  border-color: #1e3348;
  background: #101e2c;
  color: #ffffff;
}

.finalCta h2,
.finalCta .primaryButton {
  color: #ffffff;
}

.finalCta p {
  color: #c8d3dd;
}

.sellerContacts {
  display: grid;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid #e1e8ee;
}

.sellerContacts > span,
.footerWhatsapp > strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.sellerContacts a,
.footerWhatsapp a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid #cfd9e3;
  border-radius: 6px;
  background: #ffffff;
}

.sellerContacts a:hover,
.footerWhatsapp a:hover {
  border-color: #9fc9c4;
  background: #f4faf9;
}

.sellerContacts strong,
.footerWhatsapp span {
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 850;
}

.sellerContacts b,
.footerWhatsapp b {
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 850;
}

.expandedFooter {
  grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1fr) minmax(220px, 0.9fr) auto;
}

.footerWhatsapp {
  display: grid;
  gap: 8px;
}

.infoPage {
  width: min(calc(100% - 36px), 1180px);
  margin: 0 auto;
  padding: 36px 0 60px;
}

.infoHero {
  display: grid;
  gap: 14px;
  padding: 34px 0;
  border-bottom: 1px solid #d8e0e8;
}

.infoHero h1 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
}

.infoHero p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.infoLayout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding-top: 28px;
}

.infoAside {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #d2dbe4;
  border-radius: 8px;
  background: #ffffff;
}

.infoAside a {
  padding: 9px 0;
  border-bottom: 1px solid #e1e8ee;
  color: var(--navy-deep);
  font-weight: 800;
}

.infoAside a:last-child {
  border-bottom: 0;
}

.infoContent {
  display: grid;
  gap: 18px;
}

.infoBlock,
.guideStep {
  padding: 22px;
  border: 1px solid #d2dbe4;
  border-radius: 8px;
  background: #ffffff;
}

.infoBlock h2,
.guideStep h2 {
  margin-bottom: 10px;
  color: var(--navy-deep);
  font-size: 24px;
}

.infoBlock p,
.guideStep p,
.guideStep li,
.infoBlock li {
  color: var(--muted);
  line-height: 1.58;
}

.infoBlock p + p {
  margin-top: 10px;
}

.infoBlock strong {
  color: var(--navy-deep);
}

.infoBlock a {
  color: #087b72;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guideStep ul,
.infoBlock ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.guideStep kbd {
  display: inline-block;
  min-width: 28px;
  padding: 2px 6px;
  border: 1px solid #c7d0da;
  border-radius: 4px;
  background: #f7f9fb;
  color: var(--navy-deep);
  font: inherit;
  font-weight: 850;
  text-align: center;
}

.legalPage {
  min-height: 100vh;
}

.legalTermsPage .infoHero {
  padding-top: 44px;
}

.legalTermsPage .infoHero p strong {
  color: var(--navy-deep);
}

.legalTermsPage .infoAside {
  max-height: calc(100vh - 106px);
  overflow: auto;
}

.legalNotice {
  max-width: 920px;
  padding: 14px 16px;
  border: 1px solid #bcded9;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #eef8f6;
  color: #24364a;
  font-weight: 700;
  line-height: 1.55;
}

.legalContactList,
.referenceLinks {
  padding-left: 0 !important;
  list-style: none;
}

.legalContactList li,
.referenceLinks li {
  padding: 10px 12px;
  border: 1px solid #dbe4ec;
  border-radius: 8px;
  background: #f7fafc;
}

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

.guideNotice {
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  background: #ffffff;
  color: var(--muted);
  line-height: 1.55;
}

.guidePage .infoHero {
  max-width: 1100px;
}

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

.guideSnapshotGrid div,
.moduleCard,
.guideTimeline div {
  border: 1px solid #d2dbe4;
  border-radius: 8px;
  background: #ffffff;
}

.guideSnapshotGrid div {
  padding: 16px;
}

.guideSnapshotGrid strong {
  display: block;
  color: var(--teal);
  font-size: 24px;
  line-height: 1.1;
}

.guideSnapshotGrid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
}

.guideStepWithImage {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 20px;
  align-items: start;
}

.guideScreenshot {
  overflow: hidden;
  margin: 0;
  border: 1px solid #c9d6e2;
  border-radius: 8px;
  background: #eef4f8;
}

.guideScreenshot img {
  display: block;
  width: 100%;
  height: auto;
}

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

.moduleCard {
  padding: 14px;
}

.moduleCard span {
  display: inline-grid;
  min-width: 42px;
  min-height: 34px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 8px;
  background: #e8f1fa;
  color: var(--blue);
  font-weight: 900;
}

.moduleCard strong {
  display: block;
  color: var(--navy-deep);
  line-height: 1.25;
}

.moduleCard p {
  margin-top: 6px;
}

.guideTimeline {
  display: grid;
  gap: 10px;
}

.guideTimeline div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
}

.guideTimeline strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #e6f5f2;
  color: var(--teal);
}

.guideTimeline span {
  color: var(--muted);
  line-height: 1.45;
}

.guideManualPage {
  padding-bottom: 86px;
}

.guideManualHero {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(15, 118, 110, .18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .10), rgba(36, 91, 145, .08)),
    #ffffff;
  box-shadow: 0 24px 70px rgba(23, 33, 43, .10);
}

.guideManualHero h1 {
  max-width: 980px;
}

.guideHeroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.guideNoticeStrong {
  margin: 24px 0;
  border: 1px solid #bcded9;
  border-left-width: 5px;
  border-radius: 12px;
  background: #f4fbf9;
  color: #24364a;
  font-weight: 800;
}

.guideManualLayout {
  grid-template-columns: minmax(220px, .28fr) minmax(0, 1fr);
  gap: 24px;
}

.guideAside {
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(23, 33, 43, .07);
}

.guideAside a {
  border-radius: 8px;
  padding: 10px 12px;
  border-bottom: 0;
}

.guideAside a:hover {
  background: #eef8f6;
  color: #087b72;
}

.guideManualContent {
  gap: 24px;
}

.guideBookSection,
.guideChapter {
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(23, 33, 43, .07);
}

.guideSectionHead {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.guideSectionHead h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.guideSectionHead p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.guideQuickGrid article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid #d2dbe4;
  border-radius: 14px;
  background: #f8fbfc;
  display: grid;
  align-content: start;
  gap: 10px;
}

.guideQuickGrid span,
.guideTimeline strong,
.guideInstructionList li::marker {
  color: var(--teal);
  font-weight: 900;
}

.guideQuickGrid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e6f5f2;
}

.guideQuickGrid strong {
  color: var(--navy-deep);
  font-size: 20px;
  line-height: 1.2;
}

.guideQuickGrid p {
  margin: 0;
}

.guideScreenStack {
  display: grid;
  gap: 18px;
}

.guideScreenChapter {
  padding: 18px;
  border: 1px solid #d2dbe4;
  border-radius: 14px;
  background: #f8fbfc;
}

.guideScreenChapter h3 {
  margin-bottom: 8px;
  color: var(--navy-deep);
  font-size: 25px;
}

.guideChapter h2 {
  font-size: clamp(25px, 2.4vw, 34px);
}

.guideInstructionList {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.guideInstructionList li {
  padding-left: 4px;
  color: var(--muted);
  line-height: 1.62;
}

.guideTip {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #bcded9;
  border-radius: 12px;
  background: #eef8f6;
  color: #24364a;
  line-height: 1.5;
}

.guideTip strong {
  color: #087b72;
}

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

.guideChecklistGrid article {
  padding: 18px;
  border: 1px solid #d2dbe4;
  border-radius: 14px;
  background: #f8fbfc;
}

.guideChecklistGrid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-deep);
  font-size: 18px;
}

.guideChecklistGrid p {
  margin: 0;
}

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

.guideGlossary div {
  padding: 14px 16px;
  border: 1px solid #d2dbe4;
  border-radius: 12px;
  background: #f8fbfc;
}

.guideGlossary strong,
.guideGlossary span,
.guideGlossary em {
  display: block;
}

.guideGlossary strong {
  color: var(--navy-deep);
}

.guideGlossary span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.guideGlossary em {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dbe4ec;
  color: #087b72;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.legalTermsPage .infoBlock {
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(23, 33, 43, .06);
}

.legalTermsPage .infoHero {
  border: 1px solid rgba(15, 118, 110, .16);
  border-radius: 18px;
  background: #ffffff;
  padding: 38px;
  box-shadow: 0 24px 70px rgba(23, 33, 43, .08);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
  }

  .topbar nav {
    grid-column: auto;
    justify-content: start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 12px;
  }

  .topbarAction {
    width: auto;
  }

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

  .siteFooter p,
  .siteFooter nav {
    justify-content: start;
    text-align: left;
  }
}

@media (max-width: 1180px) {
  .hero,
  .splitSection,
  .printSection {
    grid-template-columns: 1fr;
  }

  .featureGrid,
  .faqGrid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .topbar nav {
    justify-content: start;
    overflow-x: auto;
    padding-left: 0;
  }

  .topbarAction,
  .primaryButton,
  .secondaryButton {
    width: 100%;
  }

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

  .guideSnapshotGrid,
  .moduleGrid,
  .guideQuickGrid,
  .guideChecklistGrid,
  .guideGlossary {
    grid-template-columns: 1fr;
  }

  .guideManualHero,
  .legalTermsPage .infoHero {
    padding: 24px;
  }

  .shortcutBand span,
  .shortcutBand span:nth-child(1),
  .shortcutBand span:nth-child(2) {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid #d8e0e8;
  }

  .shortcutBand span:last-child {
    border-bottom: 0;
  }

  .quickFacts,
  .heroFlow,
  .impactPanel,
  .shortcutBand,
  .sectionIntro,
  .inlineReceiptDemo,
  .screenBody,
  .featureGrid,
  .pricingGrid,
  .paymentTrust,
  .faqGrid,
  .finalCta,
  .siteFooter {
    grid-template-columns: 1fr;
  }

  .siteFooter p,
  .siteFooter nav {
    justify-content: start;
    text-align: left;
  }

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

  .infoAside {
    position: static;
    max-height: none;
  }

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

  .sectionIntro > p:not(.eyebrow) {
    justify-self: start;
  }

  .controlPreview,
  .controlMetrics {
    grid-template-columns: 1fr;
  }

  .screenTabs {
    overflow-x: auto;
  }

  .productPreview {
    grid-template-columns: 76px 1fr;
  }

  .productPreview strong {
    grid-column: 2;
  }

  .cashierTop,
  .stockHeader,
  .demoStatus {
    align-items: stretch;
    flex-direction: column;
  }

  .cashierTabs {
    overflow-x: auto;
  }

  .cashierTabs button {
    min-width: 118px;
  }

  .codeEntry div,
  .productPicker,
  .stockRows,
  .paymentDialogGrid,
  .paymentMethodGrid,
  .receiptActions,
  .receiptMeta,
  .printOperations,
  .payButtons,
  .priceOptions,
  .priceCard ul,
  .miniFields {
    grid-template-columns: 1fr;
  }

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

  .ticketRow b,
  .ticketRow em,
  .ticketRow button {
    grid-column: 2;
    text-align: left;
  }

  .liveReceiptPaper {
    width: 100%;
  }

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

/* Final landing tone: less playful, more product software. */
.lpPage {
  color: #0b1f33;
  font-family: Arial, "Segoe UI", Helvetica, sans-serif;
}

.lpHeroCopy h1 {
  max-width: 780px;
  color: #0b1f33;
  font-size: clamp(2.05rem, 4.45vw, 4.05rem);
  font-weight: 700;
  line-height: 1.06;
}

.lpSectionHead h2,
.lpGuideBanner h2 {
  font-weight: 700;
  line-height: 1.12;
}

.lpBrand strong,
.lpFooterBrand strong,
.lpModule h3,
.lpFlowGrid h3,
.lpFaqGrid h3,
.lpPlan h3,
.lpSaleTotal strong,
.lpPriceRows strong {
  font-weight: 700;
}

.lpKicker,
.lpNav a,
.lpSolidButton,
.lpGhostButton,
.lpPlanButton,
.lpStrip b,
.lpPlanTop span,
.lpPriceRows span,
.lpSellerBox span,
.lpFooterColumn b,
.lpFooterWhatsapp b {
  font-weight: 700;
}

.lpBrand small,
.lpFooterBrand small,
.lpHeroStats dt,
.lpPanelTop span,
.lpSaleHeader span,
.lpReceiptLine span,
.lpSignalBox span,
.lpModule span,
.lpFlowGrid b {
  font-weight: 700;
}

.lpSystemPanel {
  box-shadow: 0 16px 36px rgba(7, 26, 44, 0.08);
}

.lpPlanFeatured {
  box-shadow: 0 18px 38px rgba(8, 169, 155, 0.1);
}

.lpPlanFeatured .lpPriceRows strong {
  font-size: clamp(1.3rem, 2.15vw, 1.75rem);
  text-align: right;
}

/* PDV demo responsive fix: keep the cashier inside the landing container. */
.lpDemoReturn .cashierGrid,
.lpDemoReturn.cashierDemoSection .cashierGrid {
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.35fr) minmax(240px, 0.78fr);
  gap: 12px;
  padding: 14px;
}

.lpDemoReturn .ticketConsole,
.lpDemoReturn .productConsole,
.lpDemoReturn .paymentConsole,
.lpDemoReturn.cashierDemoSection .ticketConsole,
.lpDemoReturn.cashierDemoSection .productConsole,
.lpDemoReturn.cashierDemoSection .paymentConsole {
  min-width: 0;
}

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

.lpDemoReturn .productPicker button,
.lpDemoReturn.cashierDemoSection .productPicker button {
  grid-template-columns: 66px minmax(0, 1fr);
  overflow: hidden;
}

.lpDemoReturn .productPicker span,
.lpDemoReturn .productPicker strong,
.lpDemoReturn .productPicker small,
.lpDemoReturn .productPicker b,
.lpDemoReturn.cashierDemoSection .productPicker span,
.lpDemoReturn.cashierDemoSection .productPicker strong,
.lpDemoReturn.cashierDemoSection .productPicker small,
.lpDemoReturn.cashierDemoSection .productPicker b {
  min-width: 0;
  overflow-wrap: anywhere;
}

.lpDemoReturn .paymentTotal strong,
.lpDemoReturn.cashierDemoSection .paymentTotal strong {
  font-size: clamp(2rem, 3vw, 3rem);
}

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

.lpDemoReturn .payButtons button,
.lpDemoReturn .finishButton,
.lpDemoReturn .clearButton,
.lpDemoReturn.cashierDemoSection .payButtons button,
.lpDemoReturn.cashierDemoSection .finishButton,
.lpDemoReturn.cashierDemoSection .clearButton {
  min-width: 0;
  white-space: normal;
}

@media (max-width: 1180px) {
  .lpDemoReturn .cashierGrid,
  .lpDemoReturn.cashierDemoSection .cashierGrid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .lpDemoReturn .productPicker,
  .lpDemoReturn.cashierDemoSection .productPicker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lpDemoReturn .codeEntry div,
  .lpDemoReturn .miniFields,
  .lpDemoReturn .payButtons,
  .lpDemoReturn.cashierDemoSection .codeEntry div,
  .lpDemoReturn.cashierDemoSection .miniFields,
  .lpDemoReturn.cashierDemoSection .payButtons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .lpDemoReturn .cashierGrid,
  .lpDemoReturn.cashierDemoSection .cashierGrid {
    padding: 10px;
  }

  .lpDemoReturn .ticketConsole,
  .lpDemoReturn .productConsole,
  .lpDemoReturn .paymentConsole,
  .lpDemoReturn.cashierDemoSection .ticketConsole,
  .lpDemoReturn.cashierDemoSection .productConsole,
  .lpDemoReturn.cashierDemoSection .paymentConsole {
    padding: 12px;
  }

  .lpDemoReturn .productPicker,
  .lpDemoReturn.cashierDemoSection .productPicker {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .lpDemoReturn .productPicker button,
  .lpDemoReturn.cashierDemoSection .productPicker button {
    min-height: 94px;
  }

  .lpDemoReturn .cashierTop,
  .lpDemoReturn.cashierDemoSection .cashierTop {
    padding: 14px;
  }
}

/* Header/footer and restored demo polish */
.lpHeader {
  width: min(1180px, calc(100% - 28px));
  min-height: 70px;
  margin: 12px auto 0;
  padding: 10px 12px;
  border: 1px solid #ccd7e2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(7, 26, 44, 0.08);
}

.lpBrandMark {
  border-radius: 8px;
  background: linear-gradient(180deg, #0b1f33 0%, #071a2c 100%);
}

.lpNav {
  justify-self: center;
  padding: 5px;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  background: #f4f7fa;
  gap: 0;
}

.lpNav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: #24364a;
  font-size: 0.86rem;
}

.lpNav a:hover {
  background: #ffffff;
  box-shadow: 0 1px 5px rgba(7, 26, 44, 0.08);
}

.lpDemoReturn.cashierDemoSection,
.lpDemoReturn .cashierDemoSection {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(58px, 7vw, 88px) auto 0;
  padding: 0;
}

.lpDemoReturn .sectionIntro,
.lpDemoReturn.cashierDemoSection .sectionIntro {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 12px 44px;
  width: 100%;
  max-width: none;
  margin-bottom: 22px;
  padding: 24px 28px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 246, 0.92));
  box-shadow: 0 18px 48px rgba(7, 26, 44, 0.07);
}

.lpDemoReturn .sectionIntro .eyebrow,
.lpDemoReturn.cashierDemoSection .sectionIntro .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.lpDemoReturn .sectionIntro h2,
.lpPrintReturn h2 {
  color: #071a2c;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  font-weight: 700;
  line-height: 1.02;
}

.lpDemoReturn .sectionIntro h2 {
  margin: 0;
}

.lpDemoReturn .sectionIntro p,
.lpDemoReturn.cashierDemoSection .sectionIntro p {
  margin: 0;
  color: #4d6076;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.52;
}

.demoIntroSteps {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.demoIntroSteps span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #c9dce2;
  border-radius: 999px;
  background: #ffffff;
  color: #0a4f49;
  font-size: 0.88rem;
  font-weight: 900;
}

.lpDemoReturn .cashierDemo,
.lpDemoReturn.cashierDemoSection .cashierDemo,
.lpPrintReturn .receiptMock {
  box-shadow: 0 18px 44px rgba(7, 26, 44, 0.08);
}

.lpPrintReturn {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(58px, 7vw, 88px) auto 0;
}

.lpFooter {
  grid-template-columns: 1.15fr minmax(220px, 1.1fr) 0.75fr 0.8fr 1.2fr;
  align-items: start;
  margin-bottom: 26px;
  padding: 28px;
  border: 0;
  border-radius: 8px;
  background: #071a2c;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(7, 26, 44, 0.12);
}

.lpFooter .lpBrandMark {
  background: #ffffff;
  color: #071a2c;
}

.lpFooterBrand,
.lpFooterBrand strong,
.lpFooterColumn b,
.lpFooterWhatsapp b,
.lpFooterPitch b {
  color: #ffffff;
}

.lpFooterBrand small,
.lpFooterPitch span,
.lpFooterColumn a,
.lpFooterWhatsapp a {
  color: #c6d2df;
}

.lpFooterPitch {
  display: grid;
  gap: 10px;
  line-height: 1.45;
}

.lpFooterPitch b {
  font-size: 1.02rem;
}

.lpFooterColumn a:hover,
.lpFooterWhatsapp a:hover {
  color: #79d6cd;
}

@media (max-width: 1120px) {
  .lpHeader {
    grid-template-columns: 1fr auto;
  }

  .lpNav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: flex-start;
    overflow-x: auto;
  }

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

@media (max-width: 720px) {
  .lpHeader {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .lpHeaderActions,
  .lpHeroActions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .lpDemoReturn.cashierDemoSection,
  .lpDemoReturn .cashierDemoSection,
  .lpPrintReturn,
  .lpFooter {
    width: min(100% - 28px, 1180px);
  }

  .lpFooter {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* Modern BL header */
.lpHeader {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(126, 222, 211, 0.14);
  background: rgba(6, 18, 24, 0.97);
}

.lpHeader .lpBrand,
.lpFooterBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #ffffff;
  text-decoration: none;
}

.lpHeader .lpBrand {
  flex: 0 0 auto;
  min-width: 178px;
}

.lpBrandIcon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.lpBrandText {
  display: grid;
  gap: 2px;
  min-width: 0;
  line-height: 1.05;
}

.lpBrandText strong {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
  white-space: nowrap;
}

.lpBrandText small {
  color: #65efe5;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.lpHeader .lpNav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(174, 210, 219, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.lpHeader .lpNav a {
  min-height: 34px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #c8d8dc;
  font-size: 0.88rem;
  font-weight: 850;
}

.lpHeader .lpNav a:hover {
  background: rgba(8, 169, 155, 0.18);
  color: #ffffff;
}

.lpHeader .lpHeaderActions {
  flex: 0 0 auto;
  gap: 8px;
}

.lpHeaderActions .lpGhostButton,
.lpHeaderActions .lpSolidButton {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 7px;
  font-size: 0.9rem;
}

.lpFooter .lpBrandIcon {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
}

.lpFooter .lpBrandText strong {
  color: #071a2c;
}

.lpFooter .lpBrandText small {
  color: #08a99b;
}

@media (max-width: 1100px) {
  .lpHeader {
    gap: 10px;
    padding: 10px 14px;
  }

  .lpHeader .lpHeaderActions {
    display: none;
  }

  .lpHeader .lpNav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .lpHeader .lpNav::-webkit-scrollbar {
    display: none;
  }

  .lpHeader .lpNav a {
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .lpHeader {
    flex-wrap: wrap;
    align-items: center;
  }

  .lpHeader .lpBrand {
    min-width: 0;
  }

  .lpBrandIcon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .lpBrandText strong {
    font-size: 0.98rem;
  }

  .lpBrandText small {
    font-size: 0.68rem;
  }

  .lpHeader .lpNav {
    order: 2;
    flex-basis: 100%;
    width: 100%;
  }
}

/* Hero cleanup: compact product-first opening */
.lpHeroProduct {
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.82fr);
  gap: clamp(24px, 3.4vw, 46px);
  align-items: center;
  padding: clamp(34px, 5.2vw, 62px) 0 30px;
}

.lpHeroProduct .lpHeroCopy {
  max-width: 620px;
}

.lpHeroProduct .lpKicker {
  max-width: 560px;
  color: #0f766e;
  font-size: 0.82rem;
  line-height: 1.4;
  text-transform: none;
}

.lpHeroProduct .lpHeroCopy h1 {
  max-width: 660px;
  margin: 12px 0 16px;
  color: #071a2c;
  font-size: clamp(2.05rem, 4.15vw, 3.7rem);
  font-weight: 700;
  line-height: 1.07;
}

.lpHeroProduct .lpLead {
  max-width: 580px;
  color: #3f5267;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.55;
}

.lpHeroProduct .lpHeroActions {
  margin-top: 24px;
}

.lpHeroProduct .lpHeroStats {
  width: 100%;
  max-width: 620px;
  margin-top: 26px;
  border: 0;
  background: transparent;
  gap: 14px;
  overflow: visible;
}

.lpHeroProduct .lpHeroStats div {
  padding: 0 0 0 12px;
  border-left: 2px solid #0f766e;
  background: transparent;
}

.lpHeroProduct .lpHeroStats dt {
  color: #071a2c;
  font-size: 0.95rem;
}

.lpHeroProduct .lpHeroStats dd {
  margin-top: 4px;
  color: #56697f;
  font-size: 0.86rem;
}

.lpHeroConsole {
  border: 1px solid #152c42;
  background: #071a2c;
  box-shadow: 0 18px 42px rgba(7, 26, 44, 0.16);
}

.lpConsoleBar,
.lpConsoleFooter,
.lpOrderHeader,
.lpOrderRows p,
.lpOrderTotal,
.lpCheckoutPane div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lpConsoleBar {
  padding: 14px 16px;
  border-bottom: 1px solid #19344d;
  color: #ffffff;
}

.lpConsoleBar span,
.lpConsoleFooter span,
.lpOrderHeader span,
.lpCheckoutPane span,
.lpOrderRows span {
  color: #8da1b5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lpConsoleBar strong {
  color: #ffffff;
  font-size: 1.06rem;
}

.lpConsoleBody {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.55fr);
  gap: 12px;
  padding: 12px;
  background: #0b1f33;
}

.lpOrderPane,
.lpCheckoutPane {
  min-width: 0;
  border: 1px solid #cfd9e3;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.lpOrderHeader {
  padding: 12px 14px;
  border-bottom: 1px solid #dde5ed;
}

.lpOrderHeader b {
  color: #071a2c;
  font-size: 0.86rem;
}

.lpOrderRows {
  display: grid;
}

.lpOrderRows p {
  margin: 0;
  padding: 12px 14px;
  border-bottom: 1px solid #edf1f5;
  color: #071a2c;
}

.lpOrderRows strong {
  min-width: 0;
  color: #071a2c;
  font-size: 0.98rem;
  font-weight: 700;
}

.lpOrderRows b {
  color: #0f766e;
  white-space: nowrap;
}

.lpOrderTotal {
  padding: 14px;
  background: #f7fafc;
}

.lpOrderTotal span {
  color: #4b5f75;
  font-weight: 700;
  text-transform: uppercase;
}

.lpOrderTotal strong {
  color: #071a2c;
  font-size: 1.55rem;
}

.lpCheckoutPane {
  display: grid;
  align-content: start;
  gap: 0;
}

.lpCheckoutPane div {
  min-height: 58px;
  padding: 12px;
  border-bottom: 1px solid #edf1f5;
}

.lpCheckoutPane strong {
  color: #071a2c;
  text-align: right;
}

.lpCheckoutPane button {
  min-height: 48px;
  margin: 12px;
  border: 0;
  border-radius: 6px;
  background: #0f766e;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
}

.lpConsoleFooter {
  padding: 13px 16px;
  border-top: 1px solid #19344d;
  color: #d7e2ec;
}

.lpConsoleFooter b {
  color: #79d6cd;
  text-align: right;
}

@media (max-width: 1080px) {
  .lpHeroProduct {
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.8fr);
  }
}

@media (max-width: 840px) {
  .lpHeroProduct {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .lpHeroConsole {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .lpHeroProduct .lpHeroStats,
  .lpConsoleBody {
    grid-template-columns: 1fr;
  }

  .lpOrderRows p {
    align-items: flex-start;
    flex-direction: column;
  }

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

/* Logo image in the header/footer */
.lpHeader .lpBrand {
  min-width: 0;
}

.lpBrandLogo {
  display: block;
  width: clamp(260px, 32vw, 340px);
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

.lpFooterBrandLogo {
  width: min(280px, 100%);
  max-height: none;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
}

@media (max-width: 620px) {
  .lpBrandLogo {
    width: min(255px, 76vw);
    max-height: 70px;
  }
}

@media (max-width: 620px) {
  .lpHeroProduct .lpHeroStats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .lpHeroProduct .lpHeroStats div {
    padding-left: 8px;
  }

  .lpHeroProduct .lpHeroStats dt {
    font-size: 0.84rem;
  }

  .lpHeroProduct .lpHeroStats dd {
    font-size: 0.76rem;
  }

  .lpConsoleBody {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.58fr);
    gap: 8px;
    padding: 8px;
  }

  .lpOrderHeader,
  .lpOrderRows p,
  .lpOrderTotal,
  .lpCheckoutPane div {
    padding: 9px 10px;
  }

  .lpOrderRows p {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .lpOrderRows span {
    display: none;
  }

  .lpOrderRows strong {
    font-size: 0.86rem;
  }

  .lpOrderRows b,
  .lpCheckoutPane strong {
    font-size: 0.82rem;
  }

  .lpOrderTotal strong {
    font-size: 1.25rem;
  }

  .lpCheckoutPane div {
    min-height: 44px;
  }

  .lpCheckoutPane button {
    min-height: 40px;
    margin: 8px;
    font-size: 0.82rem;
  }

  .lpConsoleFooter {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

/* Instagram profile alignment: dark product-first opening */
.lpPage {
  background: #e9f2f1;
}

.lpHeader {
  top: 0;
  width: 100%;
  margin: 0;
  padding: 12px clamp(18px, 5vw, 72px);
  border: 0;
  border-bottom: 1px solid rgba(126, 222, 211, 0.14);
  border-radius: 0;
  background: rgba(9, 20, 25, 0.94);
  box-shadow: none;
}

.lpHeader .lpBrand {
  min-width: 0;
}

.lpBrandLogo {
  width: clamp(170px, 19vw, 232px);
  max-height: 62px;
}

.lpNav a {
  color: #c5d3d8;
}

.lpNav a:hover {
  background: rgba(16, 142, 128, 0.16);
  color: #ffffff;
}

.lpHeaderActions .lpGhostButton {
  border-color: rgba(198, 215, 221, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.lpHeaderActions .lpSolidButton {
  background: #08a99b;
  color: #ffffff;
}

.lpHeroDark {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(28px, 5vw, 76px);
  margin: 0;
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 76px) clamp(48px, 6vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(6, 15, 18, 0.98) 0%, rgba(10, 33, 38, 0.97) 48%, rgba(9, 22, 29, 0.98) 100%),
    #081418;
}

.lpHeroDark::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(15, 126, 115, 0.26), rgba(15, 126, 115, 0));
  pointer-events: none;
}

.lpHeroDark .lpHeroCopy,
.lpHeroVisual {
  position: relative;
  z-index: 1;
}

.lpHeroDark .lpHeroCopy {
  max-width: 740px;
}

.lpHeroDark .lpKicker {
  width: fit-content;
  max-width: 100%;
  padding: 8px 11px;
  border: 1px solid rgba(115, 231, 222, 0.26);
  border-radius: 6px;
  background: rgba(8, 169, 155, 0.14);
  color: #89eee4;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.lpHeroDark .lpHeroCopy h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  color: #ffffff;
  font-size: clamp(2.75rem, 5.55vw, 5.8rem);
  font-weight: 900;
  line-height: 0.98;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.lpHeroDark .lpLead {
  max-width: 720px;
  color: #d4e2e7;
  font-size: clamp(1.06rem, 1.55vw, 1.34rem);
}

.lpHeroDark .lpHeroActions {
  margin-top: 30px;
}

.lpHeroDark .lpSolidButton {
  background: #08a99b;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(8, 169, 155, 0.24);
}

.lpHeroDark .lpSolidButton:hover {
  background: #10bfb1;
}

.lpHeroDark .lpGhostButton {
  border-color: rgba(202, 220, 226, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.lpHeroDark .lpGhostButton:hover {
  border-color: rgba(137, 238, 228, 0.56);
  background: rgba(8, 169, 155, 0.14);
}

.lpHeroDark .lpHeroStats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  max-width: none;
  margin-top: 32px;
}

.lpHeroDark .lpHeroStats div {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(189, 210, 217, 0.18);
  border-left: 3px solid #08a99b;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.lpHeroDark .lpHeroStats dt {
  color: #ffffff;
  font-size: 0.95rem;
}

.lpHeroDark .lpHeroStats dd {
  color: #bfd1d7;
  font-size: 0.88rem;
}

.lpHeroVisual {
  min-height: 540px;
  align-self: center;
}

.lpVisualGlow {
  position: absolute;
  inset: 12% 2% 0 12%;
  border: 1px solid rgba(126, 222, 211, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(19, 75, 86, 0.48), rgba(7, 18, 23, 0.2)),
    linear-gradient(0deg, rgba(8, 169, 155, 0.22), rgba(8, 169, 155, 0));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.lpLaptopMock {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(94%, 760px);
  overflow: hidden;
  border: 10px solid #101b24;
  border-radius: 16px;
  background: #101b24;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.lpLaptopTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  background: #0f2733;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
}

.lpLaptopTop b {
  color: #89eee4;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.lpLaptopScreen {
  --screen-image: linear-gradient(transparent, transparent);
  width: 100%;
  aspect-ratio: 16 / 8.6;
  background: #eef4f7;
  background-image:
    var(--screen-image),
    linear-gradient(90deg, #286295, #2f70a6),
    linear-gradient(90deg, #f8fbfd 0 18%, #ffffff 18% 100%),
    repeating-linear-gradient(90deg, #eaf2f7 0 11%, #ffffff 11% 12%, #eaf2f7 12% 23%, #ffffff 23% 25%),
    linear-gradient(90deg, #ffffff 0 28%, #edf5f8 28% 29%, #ffffff 29% 100%),
    repeating-linear-gradient(90deg, #dcecf3 0 10%, #ffffff 10% 12%, #dcecf3 12% 22%, #ffffff 22% 24%);
  background-size: cover, 100% 9%, 96% 15%, 92% 18%, 96% 40%, 88% 16%;
  background-position: top left, top left, 2% 12%, 4% 31%, 2% 54%, 6% 68%;
  background-repeat: no-repeat;
}

.lpLaptopMock::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -20px;
  height: 18px;
  border-radius: 0 0 18px 18px;
  background: #c5ced6;
}

.lpPhoneMock {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: min(230px, 36%);
  min-height: 220px;
  padding: 18px;
  border: 8px solid #111d26;
  border-radius: 24px;
  background: #f4fbfa;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.38);
}

.lpPhoneMock span,
.lpPhoneMock b {
  display: block;
  color: #08a99b;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lpPhoneMock strong {
  display: block;
  margin: 15px 0 8px;
  color: #10202b;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1;
}

.lpPhoneMock p {
  margin: 0 0 18px;
  color: #526b74;
  line-height: 1.38;
}

.lpPhoneMock b {
  width: fit-content;
  padding: 9px 10px;
  border-radius: 6px;
  background: #08a99b;
  color: #ffffff;
}

.lpHeroTiles {
  position: absolute;
  right: 24px;
  top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 10px;
  width: min(560px, 78%);
}

.lpHeroTiles span {
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 13px;
  border: 1px solid rgba(222, 238, 242, 0.18);
  border-radius: 8px;
  background: rgba(245, 251, 250, 0.92);
  color: #506873;
  font-size: 0.82rem;
  line-height: 1.25;
}

.lpHeroTiles b {
  color: #0b2732;
  font-size: 0.96rem;
}

.lpStrip {
  margin-top: -18px;
  border-color: rgba(6, 21, 27, 0.12);
  box-shadow: 0 18px 45px rgba(7, 26, 44, 0.12);
}

@media (max-width: 1080px) {
  .lpHeroDark {
    grid-template-columns: 1fr;
  }

  .lpHeroVisual {
    min-height: 500px;
    max-width: 900px;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .lpHeader {
    position: sticky;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .lpBrandLogo {
    width: min(220px, 72vw);
  }

  .lpNav {
    width: 100%;
    padding-bottom: 2px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .lpNav::-webkit-scrollbar {
    display: none;
  }

  .lpHeaderActions {
    display: none;
  }

  .lpHeroDark {
    padding: 34px 20px 48px;
  }

  .lpHeroDark .lpHeroCopy {
    min-width: 0;
    max-width: 100%;
  }

  .lpHeroDark .lpHeroCopy h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10.5vw, 3.1rem);
    line-height: 1.04;
  }

  .lpHeroDark .lpLead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
  }

  .lpHeroDark .lpHeroActions {
    align-items: stretch;
  }

  .lpHeroDark .lpHeroStats {
    display: none;
  }

  .lpHeroVisual {
    min-height: 360px;
  }

  .lpLaptopMock {
    right: 0;
    bottom: 72px;
    width: 100%;
    border-width: 7px;
    border-radius: 13px;
  }

  .lpLaptopTop {
    min-height: 34px;
    font-size: 0.78rem;
  }

  .lpPhoneMock {
    bottom: 0;
    width: 42%;
    min-height: 164px;
    padding: 13px;
    border-width: 6px;
    border-radius: 18px;
  }

  .lpPhoneMock p {
    display: none;
  }

  .lpHeroTiles {
    top: auto;
    right: 0;
    bottom: 4px;
    grid-template-columns: 1fr;
    width: 54%;
  }

  .lpHeroTiles span {
    min-height: 0;
    padding: 10px;
  }

  .lpHeroTiles span:nth-child(3) {
    display: none;
  }

  .lpStrip {
    margin-top: 0;
  }
}

/* Lower landing rework: keep the approved hero/header, tighten everything below. */
.lpHeroDark + .lpStrip {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(18px, 5vw, 76px);
  border: 0;
  border-radius: 0;
  background: #071a2c;
  box-shadow: none;
}

.lpHeroDark + .lpStrip span {
  min-height: 92px;
  padding: 22px clamp(14px, 2.2vw, 28px);
  border-left: 1px solid rgba(200, 220, 226, 0.12);
  background: transparent;
  color: #b8c8d0;
}

.lpHeroDark + .lpStrip span:first-child {
  border-left: 0;
}

.lpHeroDark + .lpStrip b {
  color: #ffffff;
  font-size: 1rem;
}

.lpInstallerSection,
.lpSection,
.lpGuideBanner,
.lpFooter {
  position: relative;
}

.lpInstallerSection {
  width: 100%;
  margin: 0;
  padding: clamp(58px, 7vw, 86px) clamp(18px, 5vw, 76px) clamp(54px, 7vw, 84px);
  background:
    linear-gradient(180deg, #edf6f5 0%, #f7fafc 64%, #ffffff 100%);
}

.lpInstallerSection .lpSectionHead,
.lpInstallerSection .lpInstallerGrid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.lpInstallerSection .lpSectionHead {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  align-items: end;
  max-width: 1180px;
  margin-bottom: 28px;
}

.lpInstallerSection .lpSectionHead .lpKicker {
  grid-column: 1 / -1;
}

.lpInstallerSection .lpSectionHead h2 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
}

.lpInstallerSection .lpSectionHead p:not(.lpKicker) {
  max-width: 490px;
  justify-self: end;
  padding: 18px 20px;
  border-left: 3px solid #08a99b;
  background: rgba(255, 255, 255, 0.68);
}

.lpInstallerGrid {
  gap: 22px;
}

.lpInstallerCard {
  min-height: 430px;
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid #c9d8e0;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #ffffff, #f7fafc);
  box-shadow: 0 24px 70px rgba(7, 26, 44, 0.08);
}

.lpInstallerCardOnline {
  border-color: rgba(8, 169, 155, 0.55);
  background:
    linear-gradient(180deg, rgba(235, 249, 246, 0.96), #ffffff 54%);
  box-shadow: 0 26px 70px rgba(8, 169, 155, 0.14);
}

.lpInstallerTop {
  padding-bottom: 16px;
  border-bottom: 1px solid #dbe6ed;
}

.lpInstallerTop span,
.lpPlanTop span {
  letter-spacing: 0.08em;
}

.lpInstallerCard h3 {
  max-width: 620px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.lpInstallerCard > p {
  max-width: 640px;
  font-size: 1.03rem;
}

.lpTrialFlow {
  margin-top: auto;
  padding: 18px 20px;
  border-color: #cddce5;
  border-radius: 10px;
  background: #ffffff;
}

.lpPaidOnlyNote {
  padding: 18px 20px;
  border: 1px solid rgba(8, 169, 155, 0.25);
  border-left: 4px solid #08a99b;
  background: #e8f7f4;
}

.lpSection:not(.lpInstallerSection) {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(60px, 7vw, 92px) clamp(18px, 5vw, 76px) 0;
}

.lpSection > .lpSectionHead,
.lpSection > .lpModuleGrid,
.lpSection > .lpFlowGrid,
.lpSection > .lpPlans,
.lpSection > .lpFaqGrid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.lpSectionHead {
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.84fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: 18px 36px;
}

.lpSectionHead .lpKicker {
  grid-column: 1 / -1;
}

.lpSectionHead h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.lpSectionHead p:not(.lpKicker) {
  max-width: 520px;
  justify-self: end;
}

#produto {
  background: #ffffff;
}

.lpModuleGrid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #d5e1e8;
  border-radius: 12px;
  overflow: hidden;
  background: #d5e1e8;
  box-shadow: 0 22px 58px rgba(7, 26, 44, 0.06);
}

.lpModule {
  min-height: 265px;
  padding: 24px 20px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.lpModule span,
.lpFlowGrid b {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #0e665f;
  color: #ffffff;
}

.lpModule h3 {
  margin-top: 24px;
  font-size: 1.08rem;
}

.lpModule p {
  font-size: 0.96rem;
}

.lpOperation {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef6f5 100%);
  padding-top: clamp(42px, 5vw, 64px) !important;
  padding-bottom: clamp(42px, 5vw, 64px) !important;
}

.lpOperation .lpSectionHead {
  display: block;
  margin-bottom: 28px;
}

.lpOperation .lpSectionHead h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.lpFlowGrid {
  gap: 16px;
}

.lpFlowGrid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 6px 18px;
  min-height: 156px;
  padding: 24px 22px;
  border: 1px solid #cddce5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 26, 44, 0.05);
}

.lpFlowGrid article b {
  grid-row: 1 / 3;
}

.lpFlowGrid article h3 {
  margin: 0;
}

.lpFlowGrid article p {
  margin: 0;
}

.printSection.lpPrintReturn {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(62px, 7vw, 94px) clamp(18px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(115deg, #071a2c 0%, #0a2e35 56%, #0f766e 140%);
}

.printSection.lpPrintReturn .receiptMock,
.printSection.lpPrintReturn .printCopy {
  width: min(100%, 1180px);
}

.printSection.lpPrintReturn .receiptMock {
  justify-self: end;
  max-width: 520px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.printSection.lpPrintReturn .printCopy {
  justify-self: start;
  max-width: 620px;
  color: #d7e8ec;
}

.printSection.lpPrintReturn .printCopy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
}

.printSection.lpPrintReturn .printCopy p {
  color: #c8dce2;
}

.printSection.lpPrintReturn .eyebrow {
  color: #8ce1d8;
}

.printSection.lpPrintReturn .pillList span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.printSection.lpPrintReturn .printOperations article,
.printSection.lpPrintReturn .printerStatus {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.printSection.lpPrintReturn .printOperations article strong,
.printSection.lpPrintReturn .printerStatus strong {
  color: #ffffff;
}

.printSection.lpPrintReturn .printOperations article b {
  background: rgba(9, 27, 45, 0.88);
  color: #ffffff;
}

.printSection.lpPrintReturn .printOperations article span {
  color: #c8dce2;
}

.lpPlansSection {
  background: #f7fafc;
  padding-top: clamp(54px, 6vw, 78px) !important;
  padding-bottom: clamp(58px, 7vw, 90px) !important;
}

.lpPlans {
  gap: 24px;
  align-items: stretch;
}

.lpPlan {
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid #cddce5;
  border-radius: 14px;
  padding: clamp(24px, 3vw, 36px);
  background: #ffffff;
  box-shadow: 0 22px 62px rgba(7, 26, 44, 0.08);
}

.lpPlanFeatured {
  border-color: rgba(8, 169, 155, 0.7);
  box-shadow: 0 26px 70px rgba(8, 169, 155, 0.16);
}

.lpPlanTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #e0e9ef;
}

.lpPlan h3 {
  margin: 0;
}

.lpPlan > p {
  min-height: 58px;
}

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

.lpPriceRows div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 10px;
  background: #f5f8fa;
}

.lpPriceRows span {
  color: #607084;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lpPlanButton {
  min-height: 54px;
  border-radius: 8px;
  font-weight: 900;
}

.lpPlan ul {
  margin: 0;
}

.lpPlanActions {
  margin: 0;
}

.lpPlanActions + .lpPlanActions {
  margin-top: -8px;
}

.lpPlan .lpSellerBox {
  margin-top: 0;
}

.lpSellerBox {
  border-radius: 10px;
  background: #f4f8fa;
}

.lpGuideBanner {
  width: min(1180px, calc(100% - 40px));
  margin-top: 0;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(115deg, #071a2c, #0d3d43 70%, #08a99b);
  box-shadow: 0 24px 70px rgba(7, 26, 44, 0.16);
}

.lpFaq {
  background: #ffffff;
  padding-top: clamp(54px, 6vw, 74px) !important;
  padding-bottom: clamp(58px, 7vw, 88px) !important;
}

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

.lpFaqGrid article {
  min-height: 190px;
  padding: 22px;
  border-radius: 12px;
  background: #f8fafc;
}

.lpFaqGrid h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.lpFooter {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 76px);
  grid-template-columns: minmax(220px, 1.15fr) minmax(260px, 1.2fr) minmax(150px, 0.62fr) minmax(150px, 0.62fr) minmax(260px, 1fr);
  gap: 26px;
  border: 0;
  background: #071a2c;
}

.lpFooter .lpBrandText strong,
.lpFooterBrand strong,
.lpFooterColumn b,
.lpFooterWhatsapp b,
.lpFooterPitch b {
  color: #ffffff;
}

.lpFooter .lpBrandText small,
.lpFooterBrand small,
.lpFooterPitch span,
.lpFooterColumn a,
.lpFooterWhatsapp a {
  color: #b9cbd2;
}

.lpFooterColumn a:hover,
.lpFooterWhatsapp a:hover {
  color: #8ce1d8;
}

.lpFooterBrandLogo,
.lpFooter .lpBrandIcon {
  background: rgba(255, 255, 255, 0.92);
}

.lpFloatingWhatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #128c7e, #25d366);
  box-shadow: 0 18px 45px rgba(7, 26, 44, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.28) inset;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lpFloatingWhatsapp::before {
  content: "";
  display: block;
  width: 31px;
  height: 31px;
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.03 3.2A12.68 12.68 0 0 0 5.1 22.35L3.33 28.8l6.6-1.73A12.66 12.66 0 1 0 16.03 3.2Zm0 2.34a10.32 10.32 0 1 1-5.23 19.2l-.38-.23-3.92 1.03 1.05-3.82-.25-.39A10.32 10.32 0 0 1 16.03 5.54Zm-4.3 5.5c-.23-.5-.47-.51-.68-.52h-.58c-.2 0-.52.08-.8.38-.27.3-1.05 1.03-1.05 2.5s1.08 2.91 1.23 3.11c.15.2 2.09 3.34 5.16 4.55 2.55 1 3.08.8 3.64.75.56-.05 1.8-.74 2.05-1.45.25-.72.25-1.33.18-1.45-.08-.13-.28-.2-.58-.35-.3-.15-1.8-.89-2.08-.99-.28-.1-.48-.15-.68.15-.2.3-.78.99-.95 1.19-.18.2-.35.23-.65.08-.3-.15-1.27-.47-2.42-1.5-.9-.8-1.5-1.78-1.68-2.08-.18-.3-.02-.47.13-.62.13-.13.3-.35.45-.53.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.08-.15-.67-1.65-.92-2.25Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.03 3.2A12.68 12.68 0 0 0 5.1 22.35L3.33 28.8l6.6-1.73A12.66 12.66 0 1 0 16.03 3.2Zm0 2.34a10.32 10.32 0 1 1-5.23 19.2l-.38-.23-3.92 1.03 1.05-3.82-.25-.39A10.32 10.32 0 0 1 16.03 5.54Zm-4.3 5.5c-.23-.5-.47-.51-.68-.52h-.58c-.2 0-.52.08-.8.38-.27.3-1.05 1.03-1.05 2.5s1.08 2.91 1.23 3.11c.15.2 2.09 3.34 5.16 4.55 2.55 1 3.08.8 3.64.75.56-.05 1.8-.74 2.05-1.45.25-.72.25-1.33.18-1.45-.08-.13-.28-.2-.58-.35-.3-.15-1.8-.89-2.08-.99-.28-.1-.48-.15-.68.15-.2.3-.78.99-.95 1.19-.18.2-.35.23-.65.08-.3-.15-1.27-.47-2.42-1.5-.9-.8-1.5-1.78-1.68-2.08-.18-.3-.02-.47.13-.62.13-.13.3-.35.45-.53.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.08-.15-.67-1.65-.92-2.25Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lpFloatingWhatsapp span,
.lpFloatingWhatsapp strong {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lpFloatingWhatsapp span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lpFloatingWhatsapp strong {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 900;
}

.lpFloatingWhatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(7, 26, 44, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.34) inset;
}

html,
body,
.lpPage {
  overflow-x: hidden;
}

.lpSectionHead h2,
.lpInstallerCard h3,
.lpPlan h3,
.printSection.lpPrintReturn .printCopy h2,
.lpGuideBanner h2 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

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

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

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

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

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

@media (max-width: 860px) {
  .lpHeroDark + .lpStrip,
  .lpInstallerSection .lpSectionHead,
  .lpSectionHead,
  .printSection.lpPrintReturn,
  .lpPlans,
  .lpInstallerGrid {
    grid-template-columns: 1fr;
  }

  .lpInstallerSection .lpSectionHead p:not(.lpKicker),
  .lpSectionHead p:not(.lpKicker) {
    justify-self: start;
    max-width: none;
  }

  .printSection.lpPrintReturn .receiptMock,
  .printSection.lpPrintReturn .printCopy {
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .lpHeroDark + .lpStrip {
    padding: 0;
  }

  .lpHeroDark + .lpStrip span {
    min-height: auto;
    padding: 16px 18px;
    border-top: 1px solid rgba(200, 220, 226, 0.12);
    border-left: 0;
  }

  .lpInstallerSection,
  .lpSection:not(.lpInstallerSection),
  .printSection.lpPrintReturn,
  .lpFooter {
    padding-left: 14px;
    padding-right: 14px;
  }

  .lpInstallerSection .lpSectionHead h2,
  .lpSectionHead h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 9.2vw, 2.6rem);
    line-height: 1.08;
  }

  .lpInstallerSection .lpSectionHead p:not(.lpKicker) {
    display: none;
  }

  .lpInstallerCard,
  .lpPlan,
  .lpTrialFlow,
  .lpPaidOnlyNote {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .lpInstallerTop,
  .lpPlanTop {
    flex-wrap: wrap;
  }

  .lpModuleGrid,
  .lpFlowGrid,
  .lpFaqGrid,
  .lpPlanCompare,
  .lpPriceRows,
  .lpFooter {
    grid-template-columns: 1fr;
  }

  .lpPlanColumnHead {
    min-height: 0;
  }

  .lpModule,
  .lpFlowGrid article,
  .lpFaqGrid article {
    min-height: auto;
  }

  .lpGuideBanner {
    width: min(100% - 28px, 1180px);
  }

  .lpDemoReturn .sectionIntro,
  .lpDemoReturn.cashierDemoSection .sectionIntro {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lpDemoReturn .sectionIntro h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

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

  .lpFloatingWhatsapp {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
    padding: 0;
  }

  .lpFloatingWhatsapp::before {
    width: 29px;
    height: 29px;
  }
}
