:root {
  --bg: #f6f1e8;
  --panel: #fffaf2;
  --text: #1f1d1a;
  --muted: #6c6256;
  --brand: #0f8f72;
  --brand-dark: #0c6a55;
  --accent: #f4b942;
  --line: rgba(31, 29, 26, 0.08);
  --shadow: 0 20px 60px rgba(31, 29, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 185, 66, 0.32), transparent 28%),
    radial-gradient(circle at bottom right, rgba(15, 143, 114, 0.18), transparent 24%),
    var(--bg);
}

.page {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.page.narrow {
  width: min(860px, calc(100vw - 32px));
}

.hero,
.section {
  background: rgba(255, 250, 242, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 28px;
  padding: 36px;
}

.eyebrow,
.section-tag,
.card-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

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

h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.lede,
.hero-points,
.info-list p,
.package-card p,
.steps p,
.faq-list p,
.payment-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.hero-points {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin-bottom: 0;
}

.price-card {
  background: linear-gradient(160deg, #11251f, #0f483c);
  color: white;
  border-radius: 24px;
  padding: 26px;
}

.price {
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.price-note,
.card-meta {
  color: rgba(255, 255, 255, 0.78);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.card-meta span,
.payment-notes span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.section {
  margin-top: 22px;
  padding: 30px;
}

.grid-two,
.split-highlight,
.payment {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.info-list,
.faq-list,
.package-grid,
.steps {
  display: grid;
  gap: 16px;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.package-card,
.faq-list article,
.info-list article,
.step {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.steps .step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.steps span {
  flex: none;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  color: white;
  background: var(--brand);
}

.payment-copy a {
  color: var(--brand-dark);
  font-weight: 700;
}

.payment-copy code,
.qr-caption code {
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(15, 143, 114, 0.08);
}

.payment-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.payment-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.policy-links a {
  color: var(--brand-dark);
  font-weight: 700;
}

.qr-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.qr-box {
  aspect-ratio: 1 / 1;
  padding: 16px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qr-caption {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .grid-two,
  .split-highlight,
  .payment,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 24px;
  }

  .section {
    padding: 22px;
  }
}
