:root {
  --yellow: #ffc300;
  --yellow-deep: #f2b300;
  --orange: #ff6b35;
  --green: #00a85a;
  --ink: #202124;
  --text: #333333;
  --muted: #69707a;
  --line: #e7e9ee;
  --soft: #f8f9fa;
  --paper: #ffffff;
  --shadow: 0 16px 40px rgba(32, 33, 36, 0.12);
  --radius: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --hero-image: url("/assets/hero-rider.png");
  --hero-mobile-image: url("/assets/hero-rider-mobile.png");
  --page-header-image: url("/assets/page-header.png");
  --cta-image: url("/assets/cta-riders.png");
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(231, 233, 238, 0.9);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  color: var(--ink);
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark.has-logo {
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: 20px;
  letter-spacing: 0;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 0;
  color: #464b54;
  border-bottom: 2px solid transparent;
  transition: color 220ms var(--ease), border-color 220ms var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), background 250ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px) scale(1.03);
}

.btn-primary {
  color: #211a00;
  background: var(--yellow);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #ffd33d;
  box-shadow: 0 4px 12px rgba(255, 195, 0, 0.3);
}

.btn-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(32, 33, 36, 0.18);
}

.btn-ghost {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.btn-orange {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.24);
}

.page-main {
  overflow: hidden;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #7a5d00;
  font-size: 14px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 4px;
  background: var(--yellow);
  border-radius: 999px;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  color: #4c535f;
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  padding: 66px 0 34px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.24) 100%),
    var(--hero-image) left center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--green));
}

.hero-content {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 640px);
  gap: 24px;
  align-items: center;
}

.hero-copy {
  grid-column: 2;
  padding: 36px 0;
  text-align: left;
  justify-self: start;
}

.hero-copy .lead {
  max-width: 610px;
  margin-left: 0;
  margin-bottom: 28px;
}

.hero-title-line {
  display: block;
}

.hero-title-second {
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3d424a;
  font-size: 14px;
  font-weight: 800;
}

.proof-pill svg {
  width: 17px;
  height: 17px;
  color: var(--green);
}

.hero-panel {
  display: none;
  grid-column: 2;
  align-self: end;
  justify-self: end;
  width: min(100%, 420px);
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(231, 233, 238, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.income-snapshot {
  display: grid;
  gap: 12px;
}

.snapshot-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.snapshot-title strong {
  color: var(--orange);
}

.snapshot-amount {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.snapshot-amount span {
  color: var(--muted);
  font-size: 16px;
}

.snapshot-bars {
  display: grid;
  gap: 10px;
}

.bar-row {
  display: grid;
  grid-template-columns: 68px 1fr 54px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.bar-track {
  height: 9px;
  overflow: hidden;
  background: #edf0f4;
  border-radius: 999px;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: inherit;
  transform-origin: left;
}

.stats-strip {
  position: relative;
  z-index: 2;
  width: min(1020px, calc(100% - 40px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(32, 33, 36, 0.1);
}

.stat {
  padding: 22px 20px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

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

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

.search-guide-grid {
  align-items: stretch;
}

.search-guide-card,
.guide-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(32, 33, 36, 0.06);
}

.search-guide-card h3,
.guide-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
}

.search-guide-card p,
.guide-card p {
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
}

.text-link::after {
  content: ">";
  color: var(--orange);
}

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

.guide-card-accent {
  background: #fff9df;
  border-color: #ffd45c;
}

.keyword-list,
.city-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.keyword-list span,
.city-keywords a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f5f7fb;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.city-keywords {
  margin-bottom: 28px;
}

.city-keywords a {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.comparison-table {
  display: grid;
  gap: 12px;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.comparison-table > div:last-child {
  border-bottom: 0;
}

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

.comparison-table span {
  color: var(--muted);
  line-height: 1.75;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.feature-card,
.story-card,
.faq-item,
.trust-card,
.station-card,
.process-card,
.form-card,
.query-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(32, 33, 36, 0.06);
}

.feature-card,
.trust-card,
.process-card,
.station-card {
  padding: 24px;
}

.feature-card {
  min-height: 210px;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #201a00;
  background: var(--yellow);
  border-radius: 8px;
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.income-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin: 28px 0;
}

.formula-part {
  min-height: 116px;
  padding: 18px 14px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.formula-part strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
}

.formula-part span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.formula-sign {
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
}

.city-income {
  display: grid;
  gap: 12px;
}

.city-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.city-name {
  color: var(--ink);
  font-weight: 900;
}

.city-track {
  height: 10px;
  background: #edf0f4;
  border-radius: 999px;
}

.city-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: inherit;
}

.city-income strong {
  color: var(--orange);
  white-space: nowrap;
}

.story-card {
  overflow: hidden;
}

.story-media {
  height: 210px;
  background: #fff7d6;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-body {
  padding: 22px;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #5f4700;
  background: #fff4bf;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.quote {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  border: 0;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-question svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--orange);
  transition: transform 250ms var(--ease);
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 420ms var(--ease);
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
}

.trust-grid {
  align-items: stretch;
}

.trust-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-card .icon-box {
  flex: none;
  margin-bottom: 0;
}

.cta-band {
  color: #201a00;
  background:
    linear-gradient(90deg, rgba(255, 195, 0, 0.94), rgba(255, 211, 61, 0.82)),
    var(--cta-image) center right / cover no-repeat;
}

.cta-inner {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 30px;
  align-items: center;
}

.cta-inner h2 {
  color: #201a00;
}

.cta-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: #4c3a00;
  font-weight: 900;
}

.site-footer {
  color: #d9dde5;
  background: #25272d;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-inner .brand {
  color: #fff;
}

.footer-inner .brand-sub {
  color: #b5bbc7;
}

.footer-column h3 {
  color: #fff;
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: #c3c8d2;
}

.qr-box {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 8px;
}

.qr-box img {
  width: 96px;
  height: 96px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #aab0bd;
  font-size: 14px;
}

.page-hero {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.74)),
    var(--page-header-image) center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  max-width: 1180px;
}

.page-hero h1 {
  max-width: 720px;
}

.page-hero p {
  max-width: 650px;
}

.process-card {
  position: relative;
}

.process-step {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #201a00;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 28px;
  align-items: start;
}

.form-card,
.query-card {
  padding: 26px;
}

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

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

.field.full {
  grid-column: 1 / -1;
}

.field label,
.radio-group-label,
.check-row {
  color: var(--ink);
  font-weight: 900;
}

.required {
  color: var(--orange);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d8dce4;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 4px rgba(255, 195, 0, 0.18);
}

.field-error {
  min-height: 18px;
  color: #d93025;
  font-size: 13px;
  font-weight: 800;
}

.radio-group {
  display: grid;
  gap: 8px;
}

.radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #d8dce4;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.radio-chip input,
.check-row input {
  accent-color: var(--yellow-deep);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4d535c;
  font-size: 14px;
  line-height: 1.5;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: none;
}

.privacy-consent {
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  min-height: 34px;
}

.privacy-consent input {
  width: 20px;
  height: 20px;
  margin-top: 0;
}

.privacy-consent span {
  display: block;
}

.form-alert {
  display: none;
  margin-bottom: 18px;
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 900;
}

.form-alert.is-error {
  display: block;
  color: #8a1f11;
  background: #fff0ed;
  border: 1px solid #ffd1c7;
}

.form-alert.is-success {
  display: block;
  color: #0f6b3d;
  background: #eafff2;
  border: 1px solid #b8efd0;
}

.side-stack {
  display: grid;
  gap: 18px;
}

.warning-box {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px 30px;
  color: #4c535f;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(32, 33, 36, 0.06);
}

.warning-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf0f3;
}

.warning-icon {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  color: #201a00;
  font-weight: 900;
  background: var(--orange);
  border-radius: 50%;
}

.warning-title {
  display: block;
  margin-bottom: 6px;
  color: #201a00;
  font-size: 24px;
  line-height: 1.25;
}

.warning-head p,
.warning-summary p,
.warning-case p {
  margin: 0;
  color: #4c535f;
  font-size: 16px;
  line-height: 1.8;
}

.warning-summary {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid #edf0f3;
}

.warning-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
  padding-top: 20px;
}

.warning-case {
  min-width: 0;
  padding-top: 2px;
}

.warning-case h3 {
  margin: 0 0 8px;
  color: #201a00;
  font-size: 17px;
  line-height: 1.45;
}

.warning-case p + p {
  margin-top: 6px;
}

.warning-label {
  display: inline-block;
  margin-right: 6px;
  color: #201a00;
  font-weight: 800;
}

.query-result {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.query-result.is-visible {
  display: block;
}

.status-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: #053d22;
  background: #d8ffe8;
  border-radius: 999px;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
}

.contact-layout.is-balanced {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(32, 33, 36, 0.06);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-line svg {
  flex: none;
  width: 21px;
  height: 21px;
  color: var(--orange);
  margin-top: 3px;
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.business-panel {
  margin-top: 20px;
  padding: 24px;
  background: #fff8d9;
  border: 1px solid #ffe199;
  border-radius: 8px;
}

.business-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.business-panel p {
  color: #5d4700;
  font-size: 17px;
}

.qr-panel {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.qr-panel .qr-box {
  margin-top: 10px;
}

.apply-side-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(32, 33, 36, 0.06);
}

.complaint-layout {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
}

.complaint-layout .form-card {
  padding: 30px;
}

.complaint-layout .form-grid {
  align-items: start;
}

.complaint-layout .field {
  grid-template-rows: 24px auto 18px;
}

.complaint-note {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(32, 33, 36, 0.06);
}

.complaint-note > h2 {
  font-size: 24px;
}

.complaint-note [data-complaint-note-text] {
  margin-top: 14px;
  color: #4c535f;
  font-size: 15px;
  line-height: 1.75;
}

.complaint-note [data-complaint-note-text] h2 {
  margin: 16px 0 6px;
  color: inherit;
  font: inherit;
  font-weight: 700;
}

.complaint-note [data-complaint-note-text] h2:first-child {
  margin-top: 0;
}

.complaint-note p {
  margin: 0 0 14px;
  color: #4c535f;
  font-size: 15px;
  line-height: 1.75;
}

.complaint-note [data-complaint-note-text] p:last-child {
  margin-bottom: 0;
}

.apply-steps {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.apply-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.apply-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #201a00;
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 8px 0;
}

.policy-content p {
  color: #4c535f;
  font-size: 17px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.station-list {
  display: grid;
  gap: 14px;
}

.station-map-preview {
  position: relative;
  min-height: 220px;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.76) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(180deg, rgba(255,255,255,0.76) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(135deg, #eef7f1, #f8f3e7 52%, #eaf2ff);
  box-shadow: 0 18px 45px rgba(28, 38, 44, 0.08);
}

.station-map-preview::before,
.station-map-preview::after {
  content: "";
  position: absolute;
  inset: auto -8% 38% -8%;
  height: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(210, 214, 219, 0.75);
  transform: rotate(-8deg);
}

.station-map-preview::after {
  inset: 34% -10% auto -10%;
  height: 18px;
  transform: rotate(17deg);
}

.map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 218, 224, 0.78);
  box-shadow: inset 0 0 0 2px rgba(247, 196, 95, 0.45);
}

.map-road-main {
  left: -4%;
  right: -4%;
  top: 48%;
  height: 34px;
  transform: rotate(4deg);
}

.map-road-branch {
  width: 30px;
  height: 150%;
  top: -20%;
  left: 54%;
  transform: rotate(28deg);
}

.map-road-ring {
  width: 260px;
  height: 92px;
  right: 8%;
  bottom: 18px;
  border-radius: 50%;
  background: transparent;
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(255, 115, 0, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(28, 38, 44, 0.12);
}

.map-pin::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 3px solid var(--orange);
  border-radius: 50%;
  background: #fff;
}

.map-pin-suzhou {
  left: 18%;
  top: 28%;
}

.map-pin-hangzhou {
  right: 20%;
  bottom: 25%;
}

.map-pin-yixing {
  left: 39%;
  bottom: 22%;
}

.map-pin-zhangjiagang {
  right: 15%;
  top: 22%;
}

.station-map-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.station-card {
  box-shadow: none;
}

.station-card p {
  margin-bottom: 8px;
}

.station-address {
  min-height: 44px;
  color: #343941;
  line-height: 1.55;
}

.station-mini-map {
  position: relative;
  height: 150px;
  display: grid;
  place-items: center;
  margin-top: 14px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.7) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(0deg, rgba(255,255,255,0.7) 1px, transparent 1px) 0 0 / 32px 32px,
    #eef2f6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.station-mini-map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.station-mini-map.is-loaded {
  display: block;
  background: #eef2f6;
}

.station-mini-map.is-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.72) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(0deg, rgba(255,255,255,0.72) 1px, transparent 1px) 0 0 / 32px 32px,
    #eef2f6;
}

.station-map-loading {
  padding: 0 18px;
  color: #5f6773;
  font-size: 14px;
  text-align: center;
}

.station-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.station-map-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 8px 14px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.station-map-link:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 18px rgba(255, 115, 0, 0.12);
  transform: translateY(-1px);
}

@media (max-width: 1023px) {
  .station-map-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .hero-content {
    width: min(100% - 40px, 1180px);
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    grid-column: auto;
  }

  .hero-copy {
    max-width: 680px;
    text-align: left;
    justify-self: start;
  }

  .hero-copy .lead {
    margin-left: 0;
  }

  .hero-actions,
  .hero-proof {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .station-map-preview {
    min-height: 180px;
  }

  .station-map-list {
    grid-template-columns: 1fr;
  }

  .map-pin-suzhou {
    left: 8%;
  }

  .map-pin-zhangjiagang {
    right: 6%;
  }

  .station-map-link {
    flex: 1 1 calc(50% - 10px);
  }
}

.success-shell {
  min-height: calc(100svh - 72px);
  display: grid;
  place-items: center;
  padding: 60px 20px;
  background: var(--soft);
}

.success-card {
  width: min(720px, 100%);
  padding: 42px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.success-icon svg {
  width: 42px;
  height: 42px;
}

.success-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.mobile-cta {
  display: none;
}

.floating-service {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 35;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #201a00;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(255, 195, 0, 0.36);
  border: 2px solid #fff;
}

.floating-service svg {
  width: 25px;
  height: 25px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 450ms var(--ease), transform 450ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 26px;
}

@media (max-width: 1023px) {
  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .hero-content,
  .income-layout,
  .form-layout,
  .contact-layout,
  .cta-inner,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    grid-column: auto;
  }

  .hero-panel {
    justify-self: start;
  }

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

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

  .warning-grid,
  .warning-content,
  .contact-qr-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  body {
    padding-bottom: 68px;
  }

  .nav-shell {
    width: min(100% - 28px, 1180px);
    height: 64px;
    gap: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark svg {
    width: 30px;
    height: 30px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-sub {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    display: none;
    padding: 18px 20px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(32, 33, 36, 0.1);
  }

  body.menu-open .nav-links {
    display: grid;
  }

  .header-actions .btn {
    min-height: 40px;
    padding: 0 13px;
    font-size: 14px;
  }

  .section {
    padding: 62px 0;
  }

  .container,
  .hero-content,
  .footer-inner,
  .footer-bottom-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: calc(86svh - 64px);
    padding: 34px 0 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 58%, rgba(255, 255, 255, 0.42) 100%),
      var(--hero-mobile-image) center bottom / cover no-repeat;
  }

  .hero-content {
    display: block;
  }

  .hero-copy {
    padding: 18px 0 12px;
    text-align: left;
  }

  .hero-copy .lead {
    margin-left: 0;
  }

  .hero-actions,
  .hero-proof {
    justify-content: flex-start;
  }

  .hero-actions .btn,
  .form-card .btn,
  .query-card .btn {
    width: 100%;
  }

  .hero-panel {
    width: 100%;
    margin-top: 14px;
  }

  .stats-strip {
    width: min(100% - 28px, 1180px);
    margin-top: -16px;
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .search-guide-card,
  .guide-card {
    padding: 22px;
  }

  .comparison-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .guide-actions .btn {
    width: 100%;
  }

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

  .formula-sign {
    transform: rotate(90deg);
    text-align: center;
  }

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

  .city-row strong {
    grid-column: 1 / -1;
  }

  .story-media {
    height: 190px;
  }

  .trust-card {
    display: block;
  }

  .trust-card .icon-box {
    margin-bottom: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    display: grid;
  }

  .form-card,
  .query-card,
  .success-card {
    padding: 22px;
  }

  .warning-box {
    padding: 22px;
  }

  .warning-head {
    gap: 12px;
  }

  .warning-title {
    font-size: 21px;
  }

  .page-hero {
    padding: 54px 0;
  }

  .floating-service {
    right: 16px;
    bottom: 82px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: flex;
    justify-content: center;
    min-height: 60px;
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .mobile-cta .btn {
    width: 100%;
    max-width: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
