* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #0f172a;
  color: #0f172a;
  font-family: "Helvetica Neue", "Segoe UI", -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
}

ul, li {
  list-style: none;
}

button {
  cursor: pointer;
}

.page {
  background: radial-gradient(circle at 10% 20%, rgba(96,175,118,0.14), rgba(96,175,118,0)) 0 0/180% 180%,
              radial-gradient(circle at 90% 10%, rgba(15,23,42,0.25), rgba(15,23,42,0)) 0 0/120% 160%,
              #f5f7fb;
  min-height: 100vh;
}

.hero {
  padding: 26px 20px 10px;
  background: linear-gradient(135deg, #0b6b47, #2da063);
  color: #f5fffa;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero__text {
  max-width: 70%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  opacity: 0.8;
}

.hero__title {
  font-size: 24px;
  line-height: 1.3;
  margin: 8px 0;
  font-weight: 700;
}

.hero__desc {
  font-size: 14px;
  opacity: 0.9;
}

.hero__cta {
  align-self: center;
}

.ghost-btn {
  border: 1px solid rgba(255,255,255,0.65);
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
}

.card {
  margin: 14px 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  padding: 16px;
}

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

.label {
  font-weight: 700;
  color: #0f172a;
}

.sub {
  color: #6b7280;
  font-size: 13px;
  margin-top: 4px;
}

.status-pill {
  padding: 6px 10px;
  background: #e9f7ee;
  color: #0b6b47;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.order__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.order__field {
  background: #f7f9fc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  display: block;
}

.order__hint {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.order__input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.order__input:focus {
  outline: none;
}

.primary-btn {
  border: none;
  background: linear-gradient(135deg, #0b6b47, #2da063);
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(45,160,99,0.25);
}

.primary-btn[disabled] {
  opacity: 0.5;
}

.order__meta {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
  padding-left: 16px;
}
.order__meta li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.order__meta li::before {
  content: "•";
  color: #0b6b47;
  font-weight: 700;
}

.section-title {
  font-size: 18px;
  color: #111827;
}

.link {
  display: none;
}

.problem-list {
  display: grid;
  gap: 8px;
}

.problem {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  background: #fafbfd;
}

.problem:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.problem__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2da063, #0b6b47);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.problem__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.problem__desc {
  font-size: 13px;
  color: #6b7280;
}

.problem__arrow {
  color: #9ca3af;
  font-size: 18px;
  font-weight: 700;
}

.switch {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-bottom: 8px;
}

.switch .item {
  font-size: 16px;
  color: #6b7280;
  padding-bottom: 6px;
}

.on {
  color: #0b6b47;
  border-bottom: 2px solid #0b6b47;
}

.picture {
  display: none;
  width: 82%;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.weui-half-screen-dialog {
  max-height: 90%;
}

.pay-steps {
  text-align: center;
  padding-bottom: 12px;
}


.page--desktop {
  padding: 32px 24px 48px;
}

.desktop-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.hero--desktop {
  border-radius: 24px;
  padding: 34px 36px;
  margin-bottom: 18px;
}

.desktop-intro {
  margin-top: 0;
}

.order__form--desktop {
  grid-template-columns: minmax(0, 1fr) auto;
}

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

@media (max-width: 900px) {
  .problem-list--desktop {
    grid-template-columns: 1fr;
  }
}


.desktop-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.panel--focus {
  grid-column: 1 / 2;
}

.panel--side {
  grid-column: 2 / 3;
}

.link {
  grid-column: 1 / 3;
}

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

.tip {
  background: linear-gradient(180deg, #f8fbf9, #eef8f2);
  border: 1px solid #dcefe4;
  color: #0b6b47;
  border-radius: 12px;
  padding: 14px 12px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1024px) {
  .desktop-grid {
    grid-template-columns: 1fr;
  }
  .panel--focus,
  .panel--side,
  .link {
    grid-column: auto;
  }
}
