:root {
  --ink: #17202d;
  --muted: #697386;
  --line: #dfe5ec;
  --paper: #ffffff;
  --wash: #f3f6f8;
  --green: #087f5b;
  --green-dark: #06684b;
  --orange: #e06a23;
  --blue: #2563a6;
}
* { box-sizing: border-box; }
html { background: var(--wash); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--wash);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
  letter-spacing: 0;
}
button, input, textarea, select { font: inherit; letter-spacing: 0; }
.page { min-height: 100vh; padding: 24px 12px 48px; }
.service-shell {
  width: min(100%, 620px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(26, 37, 51, .1);
}
.hero { position: relative; height: 208px; overflow: hidden; }
.hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 20, 30, .78), rgba(10, 20, 30, .1) 76%); }
.hero-copy { position: absolute; left: 24px; right: 24px; bottom: 22px; color: #fff; }
.hero-copy .brand { display: inline-block; margin: 0 0 9px; padding: 4px 8px; background: var(--orange); border-radius: 4px; font-size: 12px; font-weight: 800; }
.hero-copy h1 { margin: 0 0 6px; font-size: 27px; line-height: 1.25; }
.hero-copy > p:last-child { margin: 0; font-size: 13px; opacity: .88; }
.content { padding: 22px; }
.panel { padding: 0; }
.panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.eyebrow { margin: 0 0 4px; color: var(--orange); font-size: 12px; font-weight: 800; }
.panel-head h2 { margin: 0; font-size: 20px; }
.secure-note { color: var(--green); background: #eaf7f1; border: 1px solid #cfeade; border-radius: 4px; padding: 5px 7px; font-size: 11px; white-space: nowrap; }
.field { display: block; margin-bottom: 17px; }
.field > span { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 700; }
.field b { color: #d7392f; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input, .field select { height: 48px; padding: 0 13px; }
.field textarea { min-height: 88px; resize: vertical; padding: 12px 13px; line-height: 1.55; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 166, .12); background: #fff; }
.field .invalid { border-color: #d7392f; }
.field .error { display: block; min-height: 17px; padding-top: 4px; color: #c83228; font-size: 11px; }
.address-group { margin-bottom: 2px; }
.group-label { margin: 0 0 10px; font-size: 14px; font-weight: 700; }
.group-label b { color: #d7392f; }
.region-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.region-grid .field { min-width: 0; margin-bottom: 8px; }
.region-grid .field > span { color: var(--muted); font-size: 12px; }
.detail-field { margin-top: 2px; }
.consent { display: flex; align-items: flex-start; gap: 9px; margin: 2px 0 18px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.consent input { margin-top: 4px; accent-color: var(--green); }
.submit-button { width: 100%; min-height: 50px; border: 0; border-radius: 6px; color: #fff; background: var(--green); font-weight: 800; font-size: 16px; cursor: pointer; }
.submit-button:hover { background: var(--green-dark); }
.submit-button:disabled { opacity: .65; cursor: wait; }
.notice { margin-bottom: 18px; padding: 11px 12px; border-radius: 6px; font-size: 13px; }
.notice.success { color: #086546; background: #e8f7f0; border: 1px solid #bfe4d4; }
.notice.error { color: #a52922; background: #fff0ee; border: 1px solid #f3cbc7; }
.honeypot { position: absolute !important; left: -10000px !important; opacity: 0 !important; }
@media (max-width: 640px) {
  .page { padding: 0 0 28px; }
  .service-shell { border: 0; border-radius: 0; box-shadow: none; }
  .hero { height: 190px; }
  .hero-copy { left: 18px; bottom: 18px; }
  .hero-copy h1 { font-size: 24px; }
  .content { padding: 20px 16px; }
  .region-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .province-field { grid-column: 1 / -1; }
}
