.pos-pricing {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f8ff 0%, #fff 100%);
}
.pos-pricing__inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}
.pos-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.pos-plan-card {
  display: flex;
  min-width: 0;
  min-height: 528px;
  flex-direction: column;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 42, 120, 0.07);
}
.pos-plan-card--featured {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(155deg, var(--blue), #747cff);
  box-shadow: 0 26px 60px rgba(63, 75, 220, 0.28);
  transform: translateY(-12px);
}
.pos-plan-card--free {
  border-color: rgba(51, 215, 131, 0.5);
  background: linear-gradient(180deg, #f5fff9, #fff);
}
.pos-plan-card__tag {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef1ff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pos-plan-card--featured .pos-plan-card__tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
}
.pos-plan-card h3 {
  margin: 24px 0 0;
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
}
.pos-plan-card__price {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin: 22px 0 0;
  white-space: nowrap;
}
.pos-plan-card__price strong {
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.pos-plan-card__price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.pos-plan-card--featured .pos-plan-card__price span,
.pos-plan-card--featured .pos-plan-card__description,
.pos-plan-card--featured li {
  color: rgba(255, 255, 255, 0.82);
}
.pos-plan-card__description {
  min-height: 66px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}
.pos-plan-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.pos-plan-card--featured ul {
  border-color: rgba(255, 255, 255, 0.2);
}
.pos-plan-card li {
  position: relative;
  padding-left: 18px;
  color: #4f5a78;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}
.pos-plan-card li:before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue);
  font-weight: 950;
}
.pos-plan-card--featured li:before {
  color: #fff;
}
.pos-plan-card.pos-plan-card--featured li {
  color: rgba(255, 255, 255, 0.88);
}
.pos-plan-card .button {
  width: 100%;
  margin-top: auto;
  cursor: pointer;
  font-family: inherit;
}
.pos-plan-comparison {
  scroll-margin-top: 28px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid #dfe4f5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(31, 42, 120, 0.1);
}
.pos-plan-comparison__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px 24px;
  background: linear-gradient(120deg, #eef0ff 0%, #fbfbff 64%, #fff 100%);
  border-bottom: 1px solid #e7eaf6;
}
.pos-plan-comparison__eyebrow {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pos-plan-comparison h3,
.pos-plan-comparison p {
  margin-top: 0;
}
.pos-plan-comparison h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}
.pos-plan-comparison__description {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}
.pos-plan-comparison__hint {
  flex: 0 0 auto;
  max-width: 180px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 800;
  text-align: right;
}
.pos-plan-comparison__scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-color: #cfd5fb transparent;
  scrollbar-width: thin;
}
.pos-plan-comparison__table {
  width: 100%;
  min-width: 1040px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.pos-plan-comparison__table th,
.pos-plan-comparison__table td {
  border-right: 1px solid #edf0f8;
  border-bottom: 1px solid #edf0f8;
}
.pos-plan-comparison__table tr > :last-child {
  border-right: 0;
}
.pos-plan-comparison__table thead th {
  padding: 18px 12px 16px;
  color: var(--ink);
  background: #fff;
  text-align: center;
  vertical-align: bottom;
}
.pos-plan-comparison__table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 4;
  width: 27%;
  min-width: 250px;
  padding-left: 30px;
  background: #fff;
  text-align: left;
}
.pos-plan-comparison__table .is-featured {
  background: #f0f2ff;
}
.pos-plan-comparison__feature-heading {
  color: #4b5778;
  font-size: 12px;
  font-weight: 950;
}
.pos-plan-comparison__plan-name,
.pos-plan-comparison__plan-price {
  display: block;
}
.pos-plan-comparison__plan-name {
  font-size: 15px;
  line-height: 1.15;
  font-weight: 950;
}
.pos-plan-comparison__plan-price {
  margin-top: 5px;
  color: #4d5a7e;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 850;
}
.pos-plan-comparison__table .is-featured .pos-plan-comparison__plan-name,
.pos-plan-comparison__table .is-featured .pos-plan-comparison__plan-price {
  color: var(--blue);
}
.pos-plan-comparison__table tbody th[scope="rowgroup"] {
  padding: 13px 30px 10px;
  border-right: 0;
  color: #53618a;
  background: #fafbff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
}
.pos-plan-comparison__table tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 2;
  padding: 12px 18px 12px 30px;
  color: #435071;
  background: #fff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
  text-align: left;
}
.pos-plan-comparison__table tbody td {
  padding: 12px 10px;
  color: #3f4c71;
  background: #fff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
  text-align: center;
}
.pos-plan-comparison__table tbody td.is-featured {
  background: #f7f8ff;
}
.pos-plan-comparison__check {
  color: var(--blue);
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
}
.pos-plan-comparison__empty {
  color: #b2bad0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.pos-plan-comparison__value {
  display: inline-block;
  color: #405075;
  font-size: 12px;
  font-weight: 900;
}
.pos-plan-comparison__table tfoot th,
.pos-plan-comparison__table tfoot td {
  padding: 18px 10px;
  border-bottom: 0;
  background: #fff;
  text-align: center;
}
.pos-plan-comparison__table tfoot th {
  position: sticky;
  left: 0;
  z-index: 2;
  padding-left: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  text-align: left;
}
.pos-plan-comparison__table tfoot td.is-featured {
  background: #f0f2ff;
}
.pos-plan-comparison__table tfoot .button {
  width: 100%;
  min-width: 132px;
  padding-right: 10px;
  padding-left: 10px;
  border: 0;
  font: 850 12px Manrope, sans-serif;
  cursor: pointer;
}
.pos-addon-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.pos-addon-strip div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.pos-addon-strip strong,
.pos-addon-strip span {
  display: block;
}
.pos-addon-strip strong {
  font-size: 16px;
  font-weight: 950;
}
.pos-addon-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.pos-pricing__note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  font-weight: 700;
}
.pos-signup {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 28px 80px rgba(18, 27, 52, 0.28);
}
.pos-signup::backdrop {
  background: rgba(18, 27, 52, 0.66);
  backdrop-filter: blur(5px);
}
.pos-signup__panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 34px;
  border-radius: 16px;
  background: #fff;
}
.pos-signup__panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
}
.pos-signup__panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}
.pos-signup__plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #dfe5f4;
  border-radius: 10px;
  color: var(--muted);
  background: #f8faff;
  font-size: 12px;
  font-weight: 800;
}
.pos-signup__plan strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}
.pos-signup__step,
.pos-signup__result {
  display: grid;
  gap: 14px;
}
.pos-signup__step[hidden],
.pos-signup__result[hidden] {
  display: none;
}
.pos-signup__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.pos-signup__section-label {
  margin: 2px 0 -2px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pos-signup__actions,
.pos-signup__result-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pos-signup__actions .button,
.pos-signup__result-actions .button {
  flex: 1;
  justify-content: center;
  text-align: center;
}
.pos-signup__back,
.pos-signup__login-action {
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid #ccd2e4;
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
  font: 900 14px Manrope, sans-serif;
  cursor: pointer;
}
.pos-signup__login-action {
  display: inline-flex;
  align-items: center;
}
.pos-signup__result {
  justify-items: start;
  padding: 8px 0 2px;
}
.pos-signup__result-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #087c61;
  background: #e4f7f0;
  font-size: 24px;
  font-weight: 950;
}
.pos-signup__result-eyebrow {
  margin: 4px 0 -4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pos-signup__result h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}
.pos-signup__result p:not(.pos-signup__result-eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}
.pos-signup__result-note:not(:empty) {
  padding: 11px 12px;
  border-radius: 9px;
  color: #49617b !important;
  background: #f4f7fc;
  font-size: 12px !important;
}
.pos-transfer {
  width: 100%;
  padding: 16px;
  border: 1px solid #dce3ff;
  border-radius: 14px;
  background: #f8faff;
}
.pos-transfer[hidden] {
  display: none;
}
.pos-transfer__amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 13px 14px;
  border-radius: 11px;
  color: #18223c;
  background: #e8ebff;
}
.pos-transfer__amount span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pos-transfer__amount strong {
  color: var(--blue);
  font-size: 19px;
  font-weight: 950;
}
.pos-transfer__details {
  display: grid;
  gap: 7px;
  margin: 0;
}
.pos-transfer__details > div {
  display: grid;
  grid-template-columns: minmax(105px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid #e2e7f4;
  border-radius: 9px;
  background: #fff;
}
.pos-transfer__details > div[hidden] {
  display: none;
}
.pos-transfer__details dt {
  color: #65708a;
  font-size: 11px;
  font-weight: 850;
}
.pos-transfer__details dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  color: #18223c;
  font-size: 13px;
  font-weight: 900;
  word-break: break-word;
}
.pos-transfer__details button {
  padding: 5px 8px;
  border: 1px solid #cbd3ef;
  border-radius: 7px;
  color: var(--blue);
  background: #fff;
  font: 850 10px Manrope, sans-serif;
  cursor: pointer;
}
.pos-transfer__reference {
  border-color: #aeb9ff !important;
  background: #f1f3ff !important;
}
.pos-transfer__qr {
  display: block;
  width: 170px;
  height: 170px;
  margin: 14px auto 0;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
}
.pos-transfer__qr[hidden] {
  display: none;
}
.pos-transfer__instructions,
.pos-transfer__warning,
.pos-transfer__status {
  margin: 12px 0 0 !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
}
.pos-transfer__warning {
  padding: 10px 11px;
  border-radius: 9px;
  color: #8a4b0f !important;
  background: #fff6e7;
}
.pos-transfer__actions {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 10px;
  margin-top: 13px;
}
.pos-transfer__actions .button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  text-align: center;
}
.pos-transfer__enter-free {
  border: 1px solid #cbd3ef;
  color: var(--ink);
  background: #fff;
}
.pos-transfer__actions .button:disabled {
  cursor: wait;
  opacity: 0.62;
}
.pos-transfer__status[data-state="success"] {
  color: #087c61 !important;
}
.pos-transfer__status[data-state="error"] {
  color: #b42318 !important;
}
.pos-signup__kicker {
  color: var(--blue) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pos-signup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #f1f3fa;
  font-size: 25px;
  cursor: pointer;
}
.pos-signup label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.pos-signup input:not([type="checkbox"]) {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #ccd2e4;
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
  font:
    700 14px Manrope,
    sans-serif;
}
.pos-signup__terms {
  display: flex !important;
  align-items: flex-start;
  grid-template-columns: auto 1fr !important;
}
.pos-signup__terms input {
  margin-top: 3px;
}
.pos-signup__honeypot {
  position: absolute !important;
  left: -10000px !important;
}
.pos-signup__status {
  min-height: 20px !important;
  color: #b42318 !important;
}
.pos-signup__status[data-tone="loading"] {
  color: var(--blue) !important;
}
.pos-signup .button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.pos-signup .button:disabled {
  opacity: 0.62;
  cursor: wait;
}
@media (max-width: 1180px) {
  .pos-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pos-plan-card--featured {
    transform: none;
  }
  .pos-plan-card:last-child {
    grid-column: span 2;
    min-height: 520px;
  }
  .pos-addon-strip {
    grid-template-columns: 1fr;
  }
  .pos-plan-comparison__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .pos-plan-comparison__hint {
    max-width: none;
    text-align: left;
  }
}
@media (max-width: 680px) {
  .pos-pricing {
    padding: 72px 0;
  }
  .pos-pricing__inner {
    width: min(100% - 28px, 1320px);
  }
  .pos-plan-grid {
    grid-template-columns: 1fr;
  }
  .pos-plan-card,
  .pos-plan-card:last-child {
    grid-column: auto;
    min-height: auto;
  }
  .pos-plan-card__description {
    min-height: 0;
  }
  .pos-plan-comparison {
    margin-top: 22px;
    border-radius: 16px;
  }
  .pos-plan-comparison__header {
    gap: 12px;
    padding: 22px 18px 18px;
  }
  .pos-plan-comparison h3 {
    font-size: 25px;
  }
  .pos-plan-comparison__description {
    font-size: 13px;
  }
  .pos-plan-comparison__hint {
    display: block;
  }
  .pos-plan-comparison__table {
    min-width: 890px;
  }
  .pos-plan-comparison__table thead th {
    padding: 14px 8px 13px;
  }
  .pos-plan-comparison__table thead th:first-child {
    width: 25%;
    min-width: 162px;
    padding-left: 18px;
  }
  .pos-plan-comparison__feature-heading,
  .pos-plan-comparison__table tbody th[scope="row"],
  .pos-plan-comparison__table tbody td,
  .pos-plan-comparison__value {
    font-size: 11px;
  }
  .pos-plan-comparison__plan-name {
    font-size: 13px;
  }
  .pos-plan-comparison__plan-price {
    font-size: 10px;
  }
  .pos-plan-comparison__table tbody th[scope="rowgroup"] {
    padding: 11px 18px 9px;
  }
  .pos-plan-comparison__table tbody th[scope="row"] {
    padding: 11px 12px 11px 18px;
  }
  .pos-plan-comparison__table tbody td {
    padding: 11px 7px;
  }
  .pos-plan-comparison__table tfoot th {
    padding-left: 18px;
  }
  .pos-plan-comparison__table tfoot .button {
    min-width: 118px;
    font-size: 11px;
  }
  .pos-signup__panel {
    padding: 28px 20px;
  }
  .pos-signup__panel h2 {
    font-size: 26px;
  }
  .pos-signup__field-grid {
    grid-template-columns: 1fr;
  }
  .pos-signup__actions,
  .pos-signup__result-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .pos-signup__actions .button,
  .pos-signup__result-actions .button,
  .pos-signup__back {
    width: 100%;
  }
  .pos-transfer__actions {
    grid-template-columns: 1fr;
  }
}
