:root {
  --qy-bg: #f5f8f7;
  --qy-surface: #ffffff;
  --qy-surface-soft: #f9fbfb;
  --qy-line: #dbe7e4;
  --qy-line-strong: #bcd2cb;
  --qy-text: #132b25;
  --qy-muted: #64756f;
  --qy-brand: #13966d;
  --qy-brand-strong: #0b7659;
  --qy-blue: #1f78e8;
  --qy-blue-strong: #165fc2;
  --qy-orange: #f28c28;
  --qy-danger: #d92d20;
  --qy-radius: 8px;
  --qy-radius-sm: 6px;
  --qy-container: 1180px;
}

.qy-container {
  width: min(var(--qy-container), calc(100% - 40px));
  margin: 0 auto;
}

.qy-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--qy-line-strong);
  border-radius: var(--qy-radius-sm);
  background: var(--qy-surface);
  color: var(--qy-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.qy-button:hover,
.qy-button:focus-visible {
  border-color: var(--qy-brand);
  color: var(--qy-brand-strong);
}

.qy-button:focus-visible,
.qy-tab:focus-visible,
.qy-field input:focus-visible,
.qy-field textarea:focus-visible,
.qy-upload:focus-within {
  outline: 3px solid rgba(31, 120, 232, .2);
  outline-offset: 2px;
}

.qy-button--primary {
  border-color: var(--qy-blue);
  background: var(--qy-blue);
  color: #ffffff;
}

.qy-button--primary:hover,
.qy-button--primary:focus-visible {
  border-color: var(--qy-blue-strong);
  background: var(--qy-blue-strong);
  color: #ffffff;
}

.qy-button--brand {
  border-color: var(--qy-brand);
  background: var(--qy-brand);
  color: #ffffff;
}

.qy-button--brand:hover,
.qy-button--brand:focus-visible {
  border-color: var(--qy-brand-strong);
  background: var(--qy-brand-strong);
  color: #ffffff;
}

.qy-button--block {
  width: 100%;
}

.qy-card {
  border: 1px solid var(--qy-line);
  border-radius: var(--qy-radius);
  background: var(--qy-surface);
}

.qy-section-title {
  margin: 0 0 24px;
  text-align: center;
}

.qy-section-title h2 {
  margin: 0;
  color: #08052c;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.qy-section-title p {
  max-width: 620px;
  margin: 10px auto 0;
  color: var(--qy-muted);
  font-size: 16px;
  line-height: 1.7;
}

.qy-product-section {
  padding: 54px 0;
}

.qy-product-section:nth-child(even) {
  background: var(--qy-bg);
}

.qy-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.qy-product-grid.count-2 {
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
}

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

.qy-product-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  padding: 26px 28px 24px;
  border: 1px solid var(--qy-line);
  border-radius: var(--qy-radius);
  background: #ffffff;
  text-align: center;
}

.qy-product-card__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 86px;
  padding: 7px 12px;
  border-bottom-left-radius: var(--qy-radius);
  background: #e92828;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.qy-product-card__logo {
  display: flex;
  width: 190px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.qy-product-card__logo img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.qy-logo-text {
  display: inline-flex;
  min-width: 116px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--qy-line-strong);
  border-radius: var(--qy-radius-sm);
  color: var(--qy-brand-strong);
  font-size: 24px;
  font-weight: 900;
}

.qy-product-card h3 {
  margin: 0 0 14px;
  color: var(--qy-text);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

.qy-product-card__price {
  display: flex;
  min-height: 44px;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 14px;
  color: #121826;
}

.qy-product-card__price strong {
  color: #f00000;
  font-size: 31px;
  line-height: 1;
}

.qy-product-card__price span {
  font-size: 16px;
  font-weight: 800;
}

.qy-product-card__intro {
  flex: 1;
  margin: 0;
  color: #1e2f2a;
  font-size: 15px;
  line-height: 1.72;
  text-align: left;
}

.qy-product-card__meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 18px;
  color: #1f2f2b;
  font-size: 14px;
  font-weight: 700;
}

.qy-product-card__meta span:last-child {
  color: var(--qy-muted);
  font-weight: 600;
}

.qy-system-page {
  min-height: 100vh;
  background: var(--qy-bg);
  color: var(--qy-text);
}

.qy-system-top {
  border-bottom: 1px solid var(--qy-line);
  background: var(--qy-surface);
}

.qy-system-nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.qy-system-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 18px;
}

.qy-system-nav__links a {
  color: var(--qy-text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.qy-system-nav__links a:hover,
.qy-system-nav__links a:focus-visible {
  color: var(--qy-brand-strong);
}

.qy-system-hero {
  border-bottom: 0;
  background: #ffffff;
}

.qy-system-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  padding: 14px 0 12px;
}

.qy-system-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.qy-system-logo {
  display: flex;
  width: 230px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.qy-system-logo img {
  max-width: 220px;
  max-height: 68px;
  object-fit: contain;
}

.qy-system-title__eyebrow {
  margin: 0 0 4px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 800;
}

.qy-system-title h1 {
  margin: 0;
  color: #1f2f65;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.qy-system-title p {
  max-width: 650px;
  margin: 6px 0 0;
  color: var(--qy-muted);
  font-size: 14px;
  line-height: 1.5;
}

.qy-system-safe {
  display: none;
}

.qy-system-safe b {
  display: block;
  margin-bottom: 8px;
  color: var(--qy-text);
  font-size: 16px;
}

.qy-system-safe p {
  margin: 0;
  color: var(--qy-muted);
  font-size: 14px;
  line-height: 1.7;
}

.qy-statusbar {
  border-bottom: 0;
  background: #def4ff;
}

.qy-statusbar__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 10px 0;
  color: #071326;
  font-size: 14px;
  font-weight: 800;
}

.qy-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 0 0 38px;
}

.qy-detail-layout > * {
  min-width: 0;
}

.qy-sidebar {
  display: none;
  gap: 14px;
}

.qy-side-card {
  padding: 18px;
  border: 1px solid var(--qy-line);
  border-radius: var(--qy-radius);
  background: #ffffff;
}

.qy-side-card h2 {
  margin: 0 0 14px;
  color: var(--qy-text);
  font-size: 18px;
  line-height: 1.3;
}

.qy-side-card p {
  margin: 0;
  color: var(--qy-muted);
  font-size: 14px;
  line-height: 1.75;
}

.qy-side-links {
  display: grid;
  gap: 8px;
}

.qy-side-link {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid var(--qy-line);
  border-radius: var(--qy-radius-sm);
  background: var(--qy-surface-soft);
  color: var(--qy-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.qy-side-link::after {
  content: ">";
  color: var(--qy-muted);
}

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

.qy-side-list li {
  position: relative;
  padding-left: 14px;
  color: var(--qy-muted);
  font-size: 14px;
  line-height: 1.6;
}

.qy-side-list li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--qy-brand);
  content: "";
}

.qy-main-card {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.qy-tabs {
  display: flex;
  border-bottom: 0;
  background: #314891;
}

.qy-tab {
  min-width: 200px;
  min-height: 44px;
  border: 0;
  border-right: 0;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.qy-tab--active {
  background: #ff7a00;
  color: #ffffff;
}

.qy-panel {
  display: none;
  min-height: 690px;
  padding: 40px 76px 32px;
}

.qy-panel--active {
  display: block;
}

.qy-version-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.qy-version-row > span {
  min-width: 102px;
  color: #5a6472;
  font-weight: 700;
}

.qy-version {
  display: inline-flex;
  min-width: 124px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid #cdd5df;
  border-radius: 0;
  background: #ffffff;
  cursor: pointer;
}

.qy-version input {
  width: 16px;
  height: 16px;
  accent-color: var(--qy-blue);
}

.qy-version:has(input:checked) {
  border-color: #ff7a00;
  color: #314891;
}

.qy-upload-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 560px);
  gap: 24px;
  align-items: center;
  margin: 12px 0 22px 102px;
}

.qy-upload {
  position: relative;
  display: grid;
  min-height: 148px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.qy-upload:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.qy-upload.is-ready {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.qy-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.qy-upload__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 0;
  color: #314891;
  background: transparent;
  font-size: 30px;
  font-weight: 800;
  box-shadow: none;
}

.qy-upload.is-ready .qy-upload__icon {
  color: #ffffff;
  border-color: var(--qy-brand);
  background: var(--qy-brand);
}

.qy-upload__main {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: 110px;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.qy-upload__body {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.qy-upload b {
  display: none;
  color: var(--qy-text);
  font-size: 21px;
  line-height: 1.25;
}

.qy-upload small {
  display: none;
  color: var(--qy-muted);
  font-size: 14px;
  line-height: 1.5;
}

.qy-upload.is-ready small {
  color: var(--qy-text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.qy-upload em {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  color: var(--qy-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.qy-upload.is-ready em {
  color: var(--qy-brand-strong);
}

.qy-upload__button {
  display: inline-flex;
  min-width: 106px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 14px;
  border-radius: 3px;
  color: #ffffff;
  background: #314891;
  box-shadow: none;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.qy-upload.is-ready .qy-upload__button {
  background: #314891;
}

.qy-upload-file {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.qy-upload-file__name {
  min-width: 0;
  color: #ff3b00;
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qy-upload-count {
  color: #009d2f;
  font-weight: 900;
}

.qy-upload-count.is-loading,
.qy-upload-count.is-muted {
  color: #667085;
}

.qy-upload-file__meta {
  display: none;
  color: var(--qy-muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.qy-inline-parse {
  display: none;
}

.qy-inline-parse.show {
  display: grid;
  gap: 3px;
  min-height: 28px;
  margin-top: 2px;
  text-align: center;
}

.qy-inline-parse b {
  display: block;
  color: #ff3b00;
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.qy-inline-parse span {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.qy-inline-parse.is-ready span {
  color: #008b4f;
}

.qy-inline-parse.is-loading b {
  color: #314891;
}

.qy-upload-note {
  padding: 10px 0 10px 24px;
  border: 0;
  border-left: 1px solid #d7dce6;
  border-radius: 0;
  background: #ffffff;
}

.qy-upload-note b {
  display: block;
  margin-bottom: 8px;
  color: #172033;
  font-size: 15px;
}

.qy-upload-note ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.6;
}

.qy-upload-note li::marker {
  color: #6b7280;
}

.qy-field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
}

.qy-field {
  display: grid;
  grid-template-columns: 102px minmax(0, 510px);
  gap: 7px;
  align-items: center;
  color: var(--qy-text);
  font-size: 14px;
  font-weight: 800;
}

.qy-field input,
.qy-field textarea,
.qy-input,
.qy-textarea {
  width: 100%;
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid var(--qy-line-strong);
  border-radius: 3px;
  background: #fafafa;
  color: var(--qy-text);
  font: inherit;
  font-weight: 500;
  letter-spacing: 0;
}

.qy-field input,
.qy-input {
  padding: 0 12px;
}

.qy-field textarea,
.qy-textarea {
  min-height: 98px;
  padding: 11px 12px;
  resize: vertical;
}

.qy-form-note {
  margin: 16px 0 0;
}

.qy-price-row,
.qy-pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-width: 620px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.qy-price-row strong {
  color: #f00000;
  font-size: 16px;
  line-height: 1;
}

.qy-price-row em,
.qy-pay-row em {
  color: var(--qy-muted);
  font-size: 13px;
  font-style: normal;
}

.qy-pay-row i {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--qy-line-strong);
  border-radius: var(--qy-radius-sm);
  background: #ffffff;
  color: var(--qy-text);
  font-style: normal;
  font-weight: 700;
}

.qy-payment {
  display: grid;
  grid-template-columns: 102px minmax(0, 520px);
  gap: 0 20px;
  align-items: start;
  margin-top: 26px;
}

.qy-pay-title {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 8px;
  color: #5f6e69;
  font-size: 14px;
  font-weight: 700;
}

.qy-pay-title__icon {
  color: #b9c3c0;
  font-size: 18px;
}

.qy-pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.qy-pay-method {
  display: inline-flex;
  min-width: 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 62px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5d6965;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.qy-pay-method input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.qy-pay-method.is-disabled {
  opacity: .48;
  cursor: not-allowed;
}

.qy-pay-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #b9b9b9;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.qy-pay-method:has(input:checked) {
  border-color: transparent;
  background: transparent;
  color: #314891;
  box-shadow: none;
}

.qy-pay-method input:checked + .qy-pay-icon {
  background: #314891;
}

.qy-pay-method input:checked + .qy-pay-icon + span {
  color: var(--qy-brand-strong);
}

.qy-card-pay-panel {
  position: relative;
  grid-column: 2;
  display: flex;
  min-height: 106px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 22px 48px;
  border-radius: var(--qy-radius-sm);
  background: #eeeeee;
}

.qy-card-pay-panel::before {
  position: absolute;
  top: -10px;
  left: 270px;
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-bottom: 11px solid #eeeeee;
  border-left: 11px solid transparent;
  content: "";
}

.qy-card-field {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #33423e;
  font-size: 15px;
}

.qy-card-field input {
  width: min(260px, 52vw);
  height: 36px;
  box-sizing: border-box;
  border: 1px solid #d7dce0;
  border-radius: 3px;
  background: #ffffff;
  padding: 0 12px;
  color: var(--qy-text);
  font: inherit;
}

.qy-card-field input:focus-visible {
  outline: 3px solid rgba(63, 125, 244, .2);
  outline-offset: 1px;
}

.qy-inline-payment {
  display: none;
  grid-column: 2;
  width: min(100%, 600px);
}

.qy-inline-payment.show {
  display: block;
}

.qy-submit-row {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.qy-submit-row--payment {
  display: grid;
  grid-template-columns: minmax(180px, 226px);
  gap: 12px;
  align-items: center;
  margin-top: 34px;
  margin-left: 102px;
}

.qy-submit-row p {
  margin: 0;
  color: var(--qy-muted);
  font-size: 13px;
  line-height: 1.6;
}

.qy-submit-row .qy-submit-warning {
  color: #ff0000;
  font-size: 13px;
  font-weight: 800;
}

.qy-pay-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--qy-line);
}

.qy-pay-actions span {
  color: var(--qy-text);
  font-weight: 700;
}

.qy-pay-actions b {
  color: #f00000;
}

.qy-pay-result {
  display: grid;
  width: fit-content;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--qy-line);
  border-radius: var(--qy-radius);
  background: #fff;
}

.qy-pay-result--large {
  width: min(100%, 320px);
  justify-items: center;
}

.qy-pay-result img {
  width: 180px;
  height: 180px;
}

.qy-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border-radius: 10px;
  background: #ffffff;
}

.qy-checkout--inline {
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 0;
  margin-top: 8px;
  padding: 0;
  border-radius: 3px;
  background: #f0f0f0;
  overflow: hidden;
}

.qy-checkout--inline .qy-checkout__main {
  padding: 20px;
}

.qy-checkout--inline .qy-checkout__eyebrow {
  display: none;
}

.qy-checkout--inline .qy-checkout__main strong {
  color: #18a900;
  font-size: 18px;
}

.qy-checkout--inline .qy-checkout__qr {
  border: 0;
  border-radius: 0;
  background: #38c90c;
}

.qy-checkout--inline .qy-checkout__qr img {
  width: 164px;
  height: 164px;
  border-width: 6px;
  border-radius: 0;
  box-shadow: none;
}

.qy-checkout--inline .qy-checkout__qr span {
  color: #ffffff;
}

.qy-checkout__main {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.qy-checkout__eyebrow {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #edf7f3;
  color: var(--qy-brand-strong);
  font-size: 13px;
  font-weight: 900;
}

.qy-checkout__main strong {
  color: var(--qy-text);
  font-size: 24px;
  line-height: 1.25;
}

.qy-checkout__main dl {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
}

.qy-checkout__main dl div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.qy-checkout__main dt {
  color: var(--qy-muted);
  font-size: 13px;
  font-weight: 800;
}

.qy-checkout__main dd {
  min-width: 0;
  margin: 0;
  color: var(--qy-text);
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.qy-checkout__amount {
  color: #e11d1d !important;
  font-size: 26px !important;
  line-height: 1;
}

.qy-checkout__main p {
  max-width: 560px;
  margin: 4px 0 0;
  color: var(--qy-muted);
  font-size: 14px;
  line-height: 1.7;
}

.qy-checkout__status {
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  background: #edf7f3;
  color: var(--qy-brand-strong);
  font-size: 14px;
  font-weight: 900;
}

.qy-checkout__status.is-ok {
  background: #ecfdf3;
  color: #067647;
}

.qy-checkout__status.is-error {
  background: #fff1f1;
  color: #d92d20;
}

.qy-checkout__link {
  width: fit-content;
  color: var(--qy-brand-strong);
  font-weight: 900;
}

.qy-checkout__qr {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--qy-line);
  border-radius: 10px;
  background: #f8fbfa;
}

.qy-checkout__qr img {
  width: 190px;
  height: 190px;
  border: 8px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(19, 43, 37, .10);
}

.qy-checkout__qr span {
  color: var(--qy-text);
  font-size: 14px;
  font-weight: 900;
}

.qy-submit-state,
.qy-order-success {
  display: grid;
  gap: 8px;
}

.qy-submit-state strong,
.qy-order-success strong {
  color: var(--qy-brand-strong);
  font-size: 18px;
}

.qy-submit-state span,
.qy-order-success span {
  color: var(--qy-muted);
}

.qy-pay-result small,
.qy-pay-wait {
  color: var(--qy-muted);
  line-height: 1.6;
}

.qy-result,
.result {
  display: none;
  margin-top: 16px;
  padding: 0;
  border: 1px solid #b9d9cf;
  border-radius: 10px;
  background: #f8fbfa;
  color: var(--qy-text);
  line-height: 1.7;
}

.qy-result.show,
.result.show {
  display: block;
}

.qy-order-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.qy-draft-ready {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
}

.qy-draft-ready__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.qy-draft-ready__head div {
  display: grid;
  gap: 4px;
}

.qy-draft-ready__head strong {
  color: var(--qy-brand-strong);
  font-size: 22px;
  line-height: 1.25;
}

.qy-draft-ready__head span {
  color: var(--qy-muted);
  font-size: 14px;
}

.qy-draft-ready__head a {
  color: var(--qy-brand-strong);
  font-weight: 900;
}

.qy-draft-ready__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #d7ebe3;
  border-radius: 8px;
  overflow: hidden;
}

.qy-draft-ready__grid div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  border-right: 1px solid #d7ebe3;
  background: #f8fbfa;
}

.qy-draft-ready__grid div:last-child {
  border-right: 0;
}

.qy-draft-ready__grid span {
  color: var(--qy-muted);
  font-size: 13px;
  font-weight: 800;
}

.qy-draft-ready__grid b {
  min-width: 0;
  color: var(--qy-text);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.qy-order-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.qy-order-panel__head div {
  display: grid;
  gap: 4px;
}

.qy-order-panel__head strong {
  color: var(--qy-brand-strong);
  font-size: 22px;
  line-height: 1.25;
}

.qy-order-panel__head span,
.qy-order-panel__foot {
  color: var(--qy-muted);
  font-size: 13px;
}

.qy-order-panel__head a,
.qy-order-success a {
  color: var(--qy-brand-strong);
  font-weight: 900;
}

.qy-order-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.qy-order-steps span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--qy-line);
  border-radius: 8px;
  color: var(--qy-muted);
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.qy-order-steps span.is-done {
  border-color: #9bd8bf;
  color: var(--qy-brand-strong);
  background: #edf7f3;
}

.qy-order-steps span.is-active {
  border-color: #6bb99e;
  color: #ffffff;
  background: var(--qy-brand);
}

.qy-order-panel__body {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #d7ebe3;
  border-radius: 8px;
  background: #ffffff;
}

.qy-order-panel__body p {
  margin: 0;
  color: #34483f;
}

.qy-price-strong {
  color: #e11d1d;
}

.qy-order-progress {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: #dcece6;
  overflow: hidden;
}

.qy-order-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14a075, #2f7df4);
  animation: qy-progress-scan 1.35s ease-in-out infinite;
}

@keyframes qy-progress-scan {
  0% {
    transform: translateX(-105%);
  }
  100% {
    transform: translateX(245%);
  }
}

.qy-query-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.qy-notice {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--qy-line);
  border-radius: var(--qy-radius);
  background: var(--qy-surface-soft);
}

.qy-notice h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.qy-notice ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--qy-muted);
  line-height: 1.7;
}

.qy-footer {
  border-top: 1px solid var(--qy-line);
  background: #ffffff;
}

.qy-footer__inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--qy-muted);
  font-size: 14px;
}

.visual-orbit {
  display: none;
}

@media (max-width: 1080px) {
  .qy-product-grid,
  .qy-product-grid.count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qy-system-hero__inner,
  .qy-upload-grid,
  .qy-detail-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .qy-container {
    width: min(100% - 28px, var(--qy-container));
  }

  .qy-product-grid,
  .qy-product-grid.count-2,
  .qy-product-grid.count-4,
  .qy-field-grid,
  .qy-statusbar__inner,
  .qy-submit-row,
  .qy-query-form {
    grid-template-columns: 1fr;
  }

  .qy-system-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .qy-system-nav__links {
    justify-content: flex-start;
  }

  .qy-system-title {
    grid-template-columns: 1fr;
  }

  .qy-system-logo {
    width: 100%;
  }

  .qy-main-card {
    order: -1;
  }

  .qy-payment {
    grid-template-columns: 1fr;
  }

  .qy-pay-title {
    min-height: 32px;
  }

  .qy-pay-methods {
    justify-content: space-between;
    gap: 12px;
  }

  .qy-upload__main,
  .qy-checkout,
  .qy-draft-ready__grid,
  .qy-order-panel__head,
  .qy-order-steps {
    grid-template-columns: 1fr;
  }

  .qy-draft-ready__grid div {
    border-right: 0;
    border-bottom: 1px solid #d7ebe3;
  }

  .qy-draft-ready__grid div:last-child {
    border-bottom: 0;
  }

  .qy-upload__button {
    width: 100%;
  }

  .qy-card-pay-panel {
    grid-column: 1;
    min-height: 92px;
    padding: 18px;
  }

  .qy-inline-payment {
    grid-column: 1;
    width: 100%;
  }

  .qy-checkout--inline {
    grid-template-columns: 1fr;
  }

  .qy-card-pay-panel::before {
    left: 75%;
  }

  .qy-card-field {
    width: 100%;
  }

  .qy-card-field input {
    width: 100%;
  }

  .qy-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .qy-tab {
    min-width: 0;
    border-right: 0;
    padding: 0 8px;
    font-size: 15px;
    line-height: 1.25;
    white-space: normal;
  }

  .qy-panel {
    padding: 18px;
  }

  .qy-product-card {
    min-height: 0;
  }
}
