/* ==========================================================================
   FastSwift Global — 整站样式
   品牌色 #0F3460（商务深蓝）· 浅灰辅助 · 专业简洁风
   1. 设计变量与基础            6. 首页板块
   2. 通用组件（按钮/表单）      7. 计算器
   3. 页头与导航                8. 弹窗 / 打印
   4. 页脚                      9. 响应式
   5. 内页通用区块
   ========================================================================== */

/* ----------------------------- 1. 基础 ----------------------------- */

:root {
  --navy: #0f3460;
  --navy-800: #0b2748;
  --navy-600: #16457c;
  --navy-100: #e8eef7;
  --accent: #1d6fe0;
  --accent-soft: #eaf2fe;
  --ink: #1b2431;
  --ink-2: #3d4a5c;
  --muted: #5b6b7f;
  --muted-2: #8a97a8;
  --line: #e3e8f0;
  --line-2: #eef2f8;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --ok: #0f7b57;
  --ok-soft: #e8f5f0;
  --warn: #b45309;
  --warn-soft: #fdf3e7;
  --danger: #b42318;
  --danger-soft: #fdecea;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 52, 96, 0.06);
  --shadow: 0 6px 22px rgba(15, 52, 96, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 52, 96, 0.14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --container: 1180px;
  --narrow: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

button {
  font-family: inherit;
}

::selection {
  background: var(--navy-100);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--narrow);
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

.section--tight {
  padding: 56px 0;
}

/* 板块小标题 */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

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

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

/* ------------------------- 2. 通用组件 ------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 52, 96, 0.22);
}

.btn--primary:hover {
  background: var(--navy-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 52, 96, 0.28);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

.btn--accent:hover {
  background: #1668d8;
}

.btn--ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--navy);
  background: var(--navy-100);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn__spinner {
  display: none;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn[data-loading="true"] .btn__spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 表单 */
.field {
  margin-bottom: 20px;
}

.field__label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 7px;
}

.field__opt {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-2);
}

.field__hint {
  font-size: 13px;
  color: var(--muted);
  margin-top: 7px;
  line-height: 1.55;
}

.field__error {
  font-size: 13px;
  color: var(--danger);
  margin-top: 6px;
  min-height: 0;
}

.field__error:empty {
  display: none;
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 111, 224, 0.13);
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F3460' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
}

.textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.6;
}

.field.has-error .input,
.field.has-error .select {
  border-color: var(--danger);
  background: #fffafa;
}

.input-split {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input-split:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29, 111, 224, 0.13);
}

.field.has-error .input-split {
  border-color: var(--danger);
}

.input-split .input {
  border: none;
  border-radius: 0;
  box-shadow: none !important;
}

.input-split__suffix,
.input-split__select {
  display: flex;
  align-items: center;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.input-split__select {
  appearance: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F3460' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
  background-size: 13px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
  line-height: 1.5;
}

.check:hover {
  border-color: var(--navy-100);
  background: var(--bg-soft);
}

.check input {
  flex: none;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.check:has(input:checked) {
  border-color: var(--navy);
  background: var(--accent-soft);
}

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

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
  margin-bottom: 6px;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--navy);
}

.form-alert {
  display: none;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--danger-soft);
  color: var(--danger);
  border: 1px solid #f5c6c0;
  margin-bottom: 16px;
  line-height: 1.55;
}

.form-alert[data-show="true"] {
  display: block;
}

.form-alert--ok {
  background: var(--ok-soft);
  color: var(--ok);
  border-color: #bfe3d5;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted-2);
  margin-top: 14px;
  text-align: center;
}

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  background: var(--bg-soft);
  color: var(--muted);
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.tag--ok {
  background: var(--ok-soft);
  color: var(--ok);
}

.tag--warn {
  background: var(--warn-soft);
  color: var(--warn);
}

.tag--accent {
  background: var(--accent-soft);
  color: var(--accent);
}

/* ------------------------- 3. 页头与导航 ------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-2);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none !important;
  flex: none;
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 11px;
  overflow: hidden;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
}

/* logo 图位缺图时占位块收小到 40px 方框能装下 */
.brand__mark.is-missing {
  padding: 3px;
  border-radius: 9px;
}

.brand__mark.is-missing::before {
  width: 14px;
  height: 14px;
  margin-bottom: 2px;
}

.brand__mark.is-missing::after {
  font-size: 7px;
  line-height: 1.3;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand__name span {
  color: var(--accent);
}

.brand__tag {
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav__link:hover {
  color: var(--navy);
  background: var(--bg-soft);
}

.nav__link.is-active {
  color: var(--navy);
  background: var(--navy-100);
}

.nav__drop {
  position: relative;
}

.nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 2px;
}

/* hover 或点击（JS 加 .is-open）时展开；不用 :focus-within ——
   鼠标点过按钮后焦点残留会让菜单一直挂着收不回去 */
.nav__drop:hover .nav__menu,
.nav__drop.is-open .nav__menu {
  display: flex;
}

.nav__drop:hover .nav__link--drop svg {
  transform: rotate(180deg);
}

.nav__link--drop svg {
  transition: transform 0.2s ease;
}

.nav__menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none !important;
}

.nav__menu a:hover {
  background: var(--bg-soft);
  color: var(--navy);
}

.nav__menu a.is-active {
  color: var(--accent);
  font-weight: 600;
}

.nav__mobile-extra {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.lang {
  display: inline-flex;
  padding: 3px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang button {
  padding: 6px 13px;
  border: none;
  background: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang button[aria-pressed="true"] {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.lang--block {
  display: flex;
  width: 100%;
}

.lang--block button {
  flex: 1;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .burger span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 52, 96, 0.32);
  z-index: 55;
}

.nav-backdrop.is-open {
  display: block;
}

/* ------------------------- 4. 页脚 ------------------------- */

.site-footer {
  background: var(--navy-800);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 28px;
  font-size: 14px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand .brand__name {
  color: #fff;
  font-size: 20px;
}

.site-footer__brand p {
  margin-top: 12px;
  line-height: 1.7;
  max-width: 320px;
}

.site-footer__contact {
  margin-top: 16px !important;
  line-height: 1.9 !important;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer__col h4 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.site-footer__note {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 900px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ------------------------- 5. 内页通用 ------------------------- */

/* 内页 hero 统一为深蓝底（与服务流程页一致），文字用白色 */
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%);
  border-bottom: none;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  max-width: 900px;
  color: #fff;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
}

/* 内页 hero 布局：左侧品牌方块（logo 图位）+ 右侧文本 */
.page-hero__inner {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

/* 内页 hero 布局：左侧品牌图（垂直居中于左侧留白）+ 右侧文本 */
.page-hero__inner {
  display: flex;
  gap: 36px;
  align-items: center;
}

/* 大图标 + 下方品牌名：图案已紧裁，文字与图案之间不加空隙 */
.page-hero__mark {
  flex: none;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.page-hero__mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 品牌名：白色斜体黑体，紧贴图案下沿 */
.page-hero__mark-text {
  margin-top: 2px;
  font-family: 'Arial Black', 'Segoe UI Black', system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 21px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(6, 24, 52, 0.45);
}

.page-hero__body {
  min-width: 0;
}

/* 深蓝底上的面包屑 / 眉题 / 锚点导航 */
.page-hero .breadcrumbs,
.page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero .breadcrumbs span::before {
  color: rgba(255, 255, 255, 0.4);
}

.page-hero .eyebrow {
  color: #9dc2ff;
}

.page-hero .anchor-nav a {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.page-hero .anchor-nav a:hover {
  color: #9dc2ff;
  border-color: #9dc2ff;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 860px) {
  .page-hero__mark {
    display: none;
  }
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 18px;
}

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

.breadcrumbs span::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}

/* 编号卡片网格 */
.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.num-card {
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.num-card:hover {
  border-color: var(--navy-100);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.num-card__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.num-card h3 {
  font-size: 17.5px;
  margin-bottom: 9px;
}

.num-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

.num-card ul {
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.num-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.num-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* 大区块（服务详解） */
.feature {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line-2);
}

.feature:first-of-type {
  border-top: none;
}

.feature__index {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.feature__index strong {
  display: block;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.feature h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature > div > p {
  color: var(--muted);
  max-width: 780px;
  margin-bottom: 16px;
}

.feature__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  list-style: none;
  margin-bottom: 16px;
}

.feature__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

.feature__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--ok);
  border-bottom: 2px solid var(--ok);
  transform: rotate(-45deg);
}

.feature__note {
  padding: 14px 18px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14.5px;
  color: var(--ink-2);
}

/* 流程时间线 */
.process {
  display: grid;
  gap: 0;
}

.process__item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line-2);
}

.process__item:first-child {
  border-top: none;
}

.process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.process__item h3 {
  font-size: 18px;
  margin-bottom: 7px;
}

.process__item p {
  color: var(--muted);
  font-size: 14.5px;
}

/* 引用块 */
.quote {
  padding: 28px 32px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* 双栏对照 */
.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.compare__col {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.compare__col h4 {
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare__col--in {
  border-color: #bfe3d5;
  background: #f7fcfa;
}

.compare__col--out {
  border-color: #f2ddc0;
  background: #fffcf7;
}

.compare__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.compare__col li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

.compare__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-2);
}

.compare__col--in li::before {
  background: var(--ok);
}

.compare__col--out li::before {
  background: var(--warn);
}

/* 数据条 */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stats__item {
  background: #fff;
  padding: 24px 20px;
  text-align: center;
}

.stats__item b {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stats__item span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  line-height: 1.5;
}

.faq__q svg {
  flex: none;
  transition: transform 0.22s ease;
}

.faq__item.is-open .faq__q svg {
  transform: rotate(180deg);
}

.faq__a {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

.faq__item.is-open .faq__a {
  display: block;
}

/* CTA 横幅 */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 46px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  font-size: 27px;
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  font-size: 15.5px;
}

.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* 提示条 */
.note {
  display: flex;
  gap: 12px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid #cfe1fb;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.65;
}

.note--warn {
  background: var(--warn-soft);
  border-color: #f2ddc0;
  color: #7a3c05;
}

.note--ok {
  background: var(--ok-soft);
  border-color: #bfe3d5;
  color: var(--ok);
}

/* ------------------------- 6. 首页 ------------------------- */

/* 全宽深色 hero：背景照片 + 压暗层，文字用白色（对照 NGL 式首屏）。
   图缺失时退化为纯深蓝渐变（占位块在此图位被刻意隐藏，后台「网站图片」页仍能看到缺失状态）。 */
.hero {
  position: relative;
  padding: 96px 0 88px;
  background: linear-gradient(180deg, #0a2144 0%, #0f3460 58%, #0c2a50 100%);
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
}

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

/* 该图位缺图时不显示占位块（深蓝渐变本身就是体面的兜底） */
.hero__bg.is-missing {
  display: none;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.94) 0%, rgba(7, 26, 51, 0.82) 40%, rgba(7, 26, 51, 0.42) 74%, rgba(7, 26, 51, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 26, 51, 0.35) 0%, rgba(7, 26, 51, 0) 34%, rgba(7, 26, 51, 0.55) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

/* ---------------------- 首页主图（已并入 hero 背景） ---------------------- */

/* ------------------------ 图位缺失时的兜底 ------------------------ */
/* site.js 检测到图片 404 会给容器加 is-missing，显示下面的占位块，
   占位块里写着这个位置该放哪个文件。图放上去后自动恢复正常。 */

[data-img-slot].is-missing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-soft) 55%, #eef2f8 100%);
}

[data-img-slot].is-missing::before {
  content: '';
  display: block;
  flex: none;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  opacity: 0.5;
  /* 内联 SVG 图标（照片框）。data URI 里 < > # 必须转义，否则部分浏览器不认 */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b7f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

[data-img-slot].is-missing::after {
  content: attr(data-img-hint);
  max-width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  word-break: break-all;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  font-size: 13px;
  font-weight: 600;
  color: #dbe7f7;
  margin-bottom: 22px;
}

.hero__badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35d48f;
  flex: none;
  box-shadow: 0 0 0 3px rgba(53, 212, 143, 0.22);
}

.hero h1 {
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
  text-wrap: balance;
}

.hero__sub {
  font-size: 18px;
  color: #c3d3ea;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-chip {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.trust-chip svg {
  flex: none;
  margin-top: 2px;
}

.trust-chip span {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.trust-chip b {
  font-size: 14px;
  color: #fff;
}

.trust-chip span span {
  font-size: 12.5px;
  color: #a9bdd9;
}

/* 首页右侧：迷你算价卡片 */
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
}

.hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hero-card__head h3 {
  font-size: 16px;
}

.hero-card__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 15px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.hero-card__row b {
  color: var(--navy);
  font-size: 15px;
}

.hero-card__row span {
  color: var(--muted);
}

.hero-card__foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* 线路卡片 */
.route-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.route-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.route-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.route-card__flag {
  font-size: 22px;
  line-height: 1;
}

.route-card h3 {
  font-size: 19px;
  color: var(--ink);
}

.route-card__country {
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 16px;
}

.route-card__prices {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

.route-card__price {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}

.route-card__price b {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.route-card__foot {
  margin-top: 14px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

/* 案例卡 */
.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  overflow: hidden; /* 让案例图能出血到卡片边缘，圆角由卡片裁切 */
}

/* 案例图：16:9，出血到卡片左右与上边缘。
   卡片的 padding 是 26px，所以负 margin 也是 26px —— 改 padding 时记得同步。 */
.case-card__media {
  aspect-ratio: 16 / 9;
  margin: -26px -26px 22px;
}

.case-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-soft);
}

/* 案例图位没放图时，占位块不要圆角（卡片自己会裁），字号也收小一点 */
.case-card__media.is-missing {
  border-radius: 0;
  padding: 16px;
}

.case-card__media.is-missing::before {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
}

.case-card__media.is-missing::after {
  font-size: 11.5px;
}

.case-card__meta {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.case-card h3 {
  font-size: 19px;
  margin-bottom: 14px;
}

.case-card__kv {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 14px;
}

.case-card__kv div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
}

.case-card__kv span {
  color: var(--muted-2);
}

.case-card__kv b {
  color: var(--navy);
  text-align: right;
}

.case-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* 计算器预告区 */
.calc-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.calc-teaser__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.calc-teaser__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.calc-teaser__step b {
  flex: none;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

.calc-teaser__step span {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ------------------------- 7. 计算器 ------------------------- */

.calc-hero {
  padding: 56px 0 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%);
  border-bottom: none;
}

.calc-hero h1 {
  font-size: 40px;
  margin-bottom: 14px;
  color: #fff;
}

.calc-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
}

.calc-hero .breadcrumbs,
.calc-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.68);
}

.calc-hero .breadcrumbs span::before {
  color: rgba(255, 255, 255, 0.4);
}

.calc-hero__meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

.calc-hero__meta b {
  color: #9dc2ff;
}

.calculator {
  padding: 48px 0 8px;
}

/* 双栏：左边表单与结果，右边粘性报价摘要（NGL 式「总价常驻」） */
.calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: start;
}

.calc-main {
  min-width: 0;
}

.calc-aside {
  position: sticky;
  top: 92px;
}

.sum-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  overflow: hidden;
}

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

.sum-card__head h2 {
  font-size: 16px;
}

.sum-card__route {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  min-height: 42px;
}

.sum-card__rows {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.sum-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 2px;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
}

.sum-card__row span {
  color: var(--muted);
}

.sum-card__row b {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.sum-card__total {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
}

.sum-card__total > span {
  display: block;
  font-size: 12.5px;
  opacity: 0.78;
}

.sum-card__amount {
  margin-top: 6px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}

.sum-card__amount.is-ready {
  color: #ffd75e;
}

.sum-card__note {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 1080px) {
  /* 窄屏收起侧栏：表单全宽，结果区本来就是紧跟表单的 */
  .calc-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .calc-aside {
    display: none;
  }
}

.step {
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step__head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 30px 22px;
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
}

.step__num {
  flex: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.step__title {
  font-size: 21px;
  margin-bottom: 5px;
}

.step__desc {
  font-size: 14px;
  color: var(--muted);
}

.step__body {
  padding: 26px 30px 30px;
}

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

.span-2 {
  grid-column: 1 / -1;
}

/* 折叠面板 */
.collapse {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.collapse__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: var(--bg-soft);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}

.collapse__chev {
  flex: none;
  transition: transform 0.22s ease;
}

.collapse[data-open="true"] .collapse__chev {
  transform: rotate(180deg);
}

.collapse__body {
  display: none;
  padding: 0 16px 18px;
}

.collapse[data-open="true"] .collapse__body {
  display: block;
}

/* 分箱明细表 */
.pkgs {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}

.pkgs__head,
.pkgs__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.85fr 1fr 38px;
  gap: 8px;
  padding: 10px 12px;
  align-items: center;
}

.pkgs__head {
  background: var(--bg-soft);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--line);
}

.pkgs__row {
  border-bottom: 1px solid var(--line-2);
}

.pkgs__row:last-child {
  border-bottom: none;
}

/* 每行的「本件特性」弹层 */
.pkgflags {
  position: relative;
  min-width: 0;
}

.pkgflags__btn {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pkgflags__btn.is-active {
  border-color: var(--navy);
  color: var(--navy);
  background: #eef3fb;
}

.pkgflags__panel {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 52, 96, 0.16);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pkgflags__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}

.pkgflags__item input {
  accent-color: var(--navy);
}

.pkgs__row .input {
  padding: 9px 11px;
  font-size: 14px;
}

.pkgs__del {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.pkgs__del:hover {
  color: var(--danger);
  border-color: #f5c6c0;
  background: var(--danger-soft);
}

.pkgs__add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
}

.pkgs__add:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.pkgs__total {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 12px;
  padding: 13px 15px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--muted);
}

.pkgs__total b {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

/* 线路选择卡 */
.route-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.route-skeleton {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--muted-2);
  text-align: center;
  background: var(--bg-soft);
}

.route-option {
  position: relative;
  display: block;
  padding: 17px 19px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.route-option:hover {
  border-color: var(--navy-100);
  background: #fcfdff;
}

.route-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.route-option[data-selected="true"] {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.09);
  background: #fbfcfe;
}

.route-option__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}

.route-option__name {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
}

.route-option__radio {
  flex: none;
  margin-left: auto;
  width: 20px;
  height: 20px;
  border: 2px solid var(--line);
  border-radius: 50%;
  position: relative;
}

.route-option[data-selected="true"] .route-option__radio {
  border-color: var(--navy);
}

.route-option[data-selected="true"] .route-option__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--navy);
}

.route-option__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
}

.route-meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.route-meta b {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.route-option__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--muted-2);
}

/* 汇率盒 */
.fx-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  padding: 20px 22px;
  margin-bottom: 20px;
}

.fx-box__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.fx-box__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.fx-box__updated {
  font-size: 12.5px;
  color: var(--muted-2);
}

.fx-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 4px;
}

.fx-pill {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.fx-pill b {
  color: var(--navy);
}

.fx-custom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.fx-custom__row {
  display: none;
  margin-top: 14px;
  gap: 12px;
}

.fx-custom__row[data-show="true"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fx-custom__field {
  display: flex;
  flex-direction: column;
}

.calc-action {
  padding: 8px 0 40px;
}

/* 结果区 */
.result {
  display: none;
  padding: 0 0 48px;
  scroll-margin-top: 90px;
}

.result[data-show="true"] {
  display: block;
}

.result__head {
  text-align: center;
  margin-bottom: 34px;
}

.result__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.result__title {
  font-size: 30px;
  letter-spacing: -0.01em;
}

.result__sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 22px;
}

.budget {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%);
  color: #fff;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.budget::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(127, 178, 255, 0.14);
}

.budget__route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  position: relative;
}

.budget__label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 8px;
  position: relative;
}

.budget__amount {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
  font-variant-numeric: tabular-nums;
}

.budget__amount sup {
  font-size: 18px;
  font-weight: 700;
  margin-left: 8px;
  opacity: 0.75;
  vertical-align: super;
}

.budget__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
}

.budget__meta b {
  color: #fff;
}

.budget__note {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  position: relative;
}

.budget--manual .budget__amount {
  font-size: 28px;
}

.offer-compare__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.offer-row:last-child {
  margin-bottom: 0;
}

.offer-row[data-active="true"] {
  border-color: var(--navy);
  background: #fbfcfe;
}

.offer-row__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-row__left b {
  font-size: 15.5px;
  color: var(--navy);
}

.offer-row__left span {
  font-size: 13px;
  color: var(--muted);
}

.offer-row__right {
  text-align: right;
}

.offer-row__right b {
  display: block;
  font-size: 17px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.offer-row__right span {
  font-size: 12px;
  color: var(--muted-2);
}

/* 锁定区 */
.blur-rows {
  filter: blur(5px);
  opacity: 0.55;
  user-select: none;
  margin-bottom: -46px;
  pointer-events: none;
}

.locked {
  position: relative;
  text-align: center;
  padding: 30px 20px 6px;
}

.locked__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-100);
}

.locked__title {
  font-size: 20px;
  margin-bottom: 10px;
}

.locked__text {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.locked__list {
  display: inline-flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
  margin-bottom: 24px;
  list-style: none;
}

.locked__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-2);
}

.locked__cta {
  display: flex;
  justify-content: center;
}

/* 明细 */
.detail__title {
  font-size: 20px;
  margin-bottom: 6px;
}

.detail__sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
}

.detail-group {
  margin-bottom: 24px;
}

.detail-group:last-child {
  margin-bottom: 0;
}

.detail-group__head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 6px;
}

.dl__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14.5px;
}

.dl__row:last-child {
  border-bottom: none;
}

.dl__k {
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.dl__k small {
  font-size: 12px;
  color: var(--muted-2);
}

.dl__v {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.dl__row--total {
  border-top: 1.5px solid var(--navy);
  border-bottom: none;
  margin-top: 8px;
  padding-top: 15px;
}

.dl__row--total .dl__k,
.dl__row--total .dl__v {
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
}

.dl__row--sub {
  background: var(--bg-soft);
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 6px;
}

.inout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.inout__col {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.inout__col--in {
  background: #f7fcfa;
  border-color: #bfe3d5;
}

.inout__col--out {
  background: #fffcf7;
  border-color: #f2ddc0;
}

.inout__col h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  margin-bottom: 12px;
}

.inout__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inout__col li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

.inout__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-2);
}

.inout__col--in li::before {
  background: var(--ok);
}

.inout__col--out li::before {
  background: var(--warn);
}

.toast-inline {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: var(--ok-soft);
  color: var(--ok);
  border: 1px solid #bfe3d5;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.55;
}

.toast-inline[data-show="true"] {
  display: flex;
}

.toast-inline--warn {
  background: var(--warn-soft);
  color: var(--warn);
  border-color: #f2ddc0;
}

.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.disclaimer {
  margin-top: 20px;
  padding: 34px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.disclaimer h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.disclaimer__lead {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.disclaimer ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.disclaimer li {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ------------------------- 8. 弹窗 / 打印 ------------------------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  background: rgba(11, 39, 72, 0.55);
  backdrop-filter: blur(3px);
}

.modal-backdrop[data-open="true"] {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal__head {
  padding: 26px 30px 0;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 15px;
  cursor: pointer;
  line-height: 1;
}

.modal__close:hover {
  background: var(--navy-100);
  color: var(--navy);
}

.modal__title {
  font-size: 22px;
  margin-bottom: 8px;
  padding-right: 40px;
}

.modal__sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-soft);
  border-radius: 999px;
  margin-bottom: 4px;
}

.tabs button {
  flex: 1;
  padding: 9px 12px;
  border: none;
  background: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* 注册/登录弹窗：邮箱/手机通道切换 */
.chan {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.chan__btn {
  flex: 1;
  padding: 9px 10px;
  border: none;
  background: var(--bg-soft);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.chan__btn + .chan__btn {
  border-left: 1.5px solid var(--line);
}

.chan__btn[aria-pressed="true"] {
  background: var(--navy);
  color: #fff;
}

/* 验证码行：输入框 + 获取按钮 */
.code-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.code-row .input {
  flex: 1;
  min-width: 0;
  letter-spacing: 0.35em;
  font-weight: 700;
}

.code-row__btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.code-row__btn:disabled {
  opacity: 0.55;
  cursor: default;
}

/* 页头账号区 */
.account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account__name {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.account__logout {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 2px;
}

.account__logout:hover {
  color: var(--navy);
  text-decoration: underline;
}

.account--block {
  width: 100%;
  justify-content: space-between;
  padding: 8px 4px;
}

.account--block .account__name {
  max-width: 180px;
}

/* 摘要卡里的注册引导 */
.sum-card__hint {
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 9px;
  background: rgba(255, 197, 61, 0.16);
  border: 1px solid rgba(255, 197, 61, 0.55);
  font-size: 12.5px;
  line-height: 1.55;
  color: #7a5200;
}

/* 锁定区双按钮纵向排列 */
.locked__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal__body {
  padding: 24px 30px 28px;
}

#printDoc {
  display: none;
}

@media print {
  body {
    background: #fff;
  }

  .site-header,
  .site-footer,
  .modal-backdrop,
  .calc-hero,
  .calculator,
  .result__head,
  .panel:not(#printSource),
  .disclaimer {
    display: none !important;
  }

  #printDoc {
    display: block !important;
    padding: 0;
    color: #111;
  }

  #printDoc h1 {
    font-size: 16pt;
    margin: 0;
    color: #0f3460;
  }

  #printDoc .p-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #0f3460;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }

  #printDoc .p-head p {
    font-size: 9pt;
    color: #555;
    margin-top: 3px;
  }

  #printDoc .p-meta {
    font-size: 9pt;
    color: #333;
    text-align: right;
    line-height: 1.6;
  }

  #printDoc .p-title {
    font-size: 12pt;
    margin: 16px 0 8px;
    color: #0f3460;
  }

  #printDoc .p-sub {
    font-size: 9.5pt;
    color: #666;
    margin-bottom: 12px;
  }

  #printDoc table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
    font-size: 9.5pt;
  }

  #printDoc td {
    padding: 6px 8px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
  }

  #printDoc td:first-child {
    color: #555;
    width: 56%;
  }

  #printDoc td.num {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
  }

  #printDoc .p-total {
    margin-top: 12px;
    padding: 12px 14px;
    background: #f0f4fa;
    border-left: 3px solid #0f3460;
    font-size: 12pt;
  }

  #printDoc .p-foot {
    margin-top: 22px;
    padding-top: 12px;
    border-top: 1px solid #ccc;
    font-size: 8.5pt;
    color: #555;
    line-height: 1.6;
  }

  #printDoc .p-foot ol {
    padding-left: 16px;
    margin: 6px 0;
  }

  @page {
    size: A4;
    margin: 16mm 14mm;
  }
}

/* ------------------------- 9. 响应式 ------------------------- */

@media (max-width: 1080px) {
  .hero__grid,
  .calc-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 42px;
  }

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

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .burger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);
    z-index: 58;
    margin: 0;
    padding: 84px 20px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    box-shadow: -12px 0 40px rgba(15, 52, 96, 0.14);
    transform: translateX(102%);
    transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .site-header.is-open .nav {
    transform: none;
  }

  .nav__link {
    padding: 13px 14px;
    font-size: 15.5px;
    border-radius: 10px;
    justify-content: space-between;
  }

  .nav__menu {
    position: static;
    display: flex;
    border: none;
    box-shadow: none;
    padding: 0 0 0 14px;
    background: none;
  }

  .nav__menu a {
    padding: 11px 14px;
  }

  .nav__drop:hover .nav__link--drop svg {
    transform: none;
  }

  .nav__mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line-2);
  }

  .site-header__actions .lang {
    display: none;
  }

  .hero {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero__trust {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-hero h1,
  .calc-hero h1 {
    font-size: 30px;
  }

  .section {
    padding: 60px 0;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .step__head,
  .step__body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .step__body--grid,
  .inout,
  .compare,
  .fx-custom__row[data-show="true"] {
    grid-template-columns: 1fr;
  }

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

  .pkgs__head {
    display: none;
  }

  .pkgs__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 12px;
    position: relative;
  }

  .pkgs__row .input {
    min-width: 0;
  }

  .pkgs__del {
    position: absolute;
    top: 8px;
    right: 8px;
  }

  .pkgs__row > div:last-of-type {
    padding-right: 40px;
  }

  .route-option__meta {
    grid-template-columns: 1fr;
  }

  .panel,
  .disclaimer {
    padding: 22px 18px;
  }

  .budget {
    padding: 24px 20px;
  }

  .budget__amount {
    font-size: 30px;
  }

  .cta-band {
    padding: 32px 24px;
  }

  .cta-band h2 {
    font-size: 22px;
  }

  .offer-row {
    align-items: flex-start;
  }

  .offer-row__right {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container {
    padding: 0 18px;
  }

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

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

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero h1 {
    font-size: 29px;
  }

  /* 首页 hero 已是全出血背景图，窄屏只需收窄内边距 */
  .hero {
    padding: 48px 0 52px;
  }

  .case-card__media.is-missing {
    padding: 14px;
  }

  [data-img-slot].is-missing::after {
    font-size: 11px;
  }

  .brand__tag {
    display: none;
  }

  .modal__head,
  .modal__body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}


/* ========================================================================
   10. 内页通用组件（服务 / 追踪 / 关于 / 流程 / 案例 / 联系 / 条款）
   ======================================================================== */

/* 内页标题区补充 */
.page-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.page-hero--navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 100%);
  border-bottom: none;
}

.page-hero--navy h1,
.page-hero--navy p {
  color: #fff;
}

.page-hero--navy p {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero--navy .breadcrumbs,
.page-hero--navy .breadcrumbs a {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero--navy .eyebrow {
  color: #9dc2ff;
}

/* 通用文本块（法律条款、长文） */
.prose {
  max-width: 800px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.85;
}

.prose h2 {
  font-size: 21px;
  margin: 40px 0 14px;
  color: var(--navy);
  scroll-margin-top: 90px;
}

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

.prose h3 {
  font-size: 17px;
  margin: 26px 0 10px;
  color: var(--ink);
}

.prose p {
  margin-bottom: 14px;
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong {
  color: var(--ink);
  font-weight: 700;
}

.prose__meta {
  font-size: 13px;
  color: var(--muted-2);
  margin-bottom: 28px;
}

.prose hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 34px 0;
}

/* 目录（法律页快速跳转） */
.toc {
  display: grid;
  gap: 8px;
  padding: 20px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 34px;
}

.toc__title {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}

.toc a {
  font-size: 14.5px;
  color: var(--navy);
  text-decoration: none;
  padding: 3px 0;
}

.toc a:hover {
  color: var(--accent);
}

/* 数据表 */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}

.table th {
  text-align: left;
  padding: 13px 16px;
  background: var(--bg-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink-2);
  vertical-align: top;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tbody tr:hover td {
  background: #fafcff;
}

.table b {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.table--num td:not(:first-child),
.table--num th:not(:first-child) {
  font-variant-numeric: tabular-nums;
}

/* 服务条目（服务页主列表） */
.svc {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 30px;
  scroll-margin-top: 92px;
}

.svc + .svc {
  margin-top: 20px;
}

.svc__num {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-100);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.svc__body h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.svc__lead {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.svc__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}

.svc__cols h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}

.svc__cols ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svc__cols li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
}

.svc__cols li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

/* 追踪表单 */
.tracker {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 30px 32px;
}

.tracker__form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.tracker__form .field {
  flex: 1 1 260px;
  margin-bottom: 0;
}

.tracker__result {
  margin-top: 24px;
}

.track-steps {
  display: grid;
  gap: 0;
  margin-top: 6px;
}

.track-step {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line-2);
}

.track-step:first-child {
  border-top: none;
}

.track-step__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--line);
  background: #fff;
  margin: 4px 0 0 5px;
}

.track-step.is-done .track-step__dot {
  border-color: var(--ok);
  background: var(--ok);
}

.track-step.is-current .track-step__dot {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.track-step__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.track-step__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.track-step__time {
  font-size: 13px;
  color: var(--muted-2);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.track-step.is-pending .track-step__name {
  color: var(--muted-2);
}

/* 联系方式卡片 */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px 24px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.contact-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.contact-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.contact-card__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.contact-card__value {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  word-break: break-word;
}

.contact-card__note {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* 键值清单 */
.kv-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-2);
}

.kv-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14.5px;
}

.kv-list span {
  color: var(--muted);
}

.kv-list b {
  color: var(--navy);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* 清单卡片（关于页 / 联系页侧栏） */
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px 26px;
}

.info-card h3 {
  font-size: 17px;
  margin-bottom: 16px;
}

.info-card + .info-card {
  margin-top: 18px;
}

/* 流程时间轴（how-we-work 用 process 的加强版） */
.process--boxed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 10px 32px;
}

.process__item p {
  max-width: 760px;
}

.process__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* 章节内的紧凑列表 */
.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.bullets--check li::before {
  content: '';
  left: 2px;
  top: 6px;
  width: 12px;
  height: 7px;
  border-radius: 0;
  background: none;
  border-left: 2px solid var(--ok);
  border-bottom: 2px solid var(--ok);
  transform: rotate(-45deg);
}

/* 页面内锚点导航 */
.anchor-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 0 0;
}

.anchor-nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 15px;
  text-decoration: none;
}

.anchor-nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* 横向滚动快照 */
.snap-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .svc {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 22px;
  }

  .svc__cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid,
  .snap-row {
    grid-template-columns: 1fr;
  }

  .prose {
    font-size: 15px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .tracker {
    padding: 24px 20px;
  }

  .process--boxed {
    padding: 6px 20px;
  }
}

@media (max-width: 620px) {
  .page-hero {
    padding: 48px 0 38px;
  }

  .page-hero h1 {
    font-size: 27px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .track-step {
    grid-template-columns: 26px 1fr;
  }

  .track-step__time {
    grid-column: 2;
    margin-top: 4px;
  }
}

/* ==========================================================================
   阶段 6：货物类型卡片 / 顶部价格声明 / 电商红色提示
   ========================================================================== */

/* 顶部价格声明（计算器页 hero 内，始终可见）—— 深蓝底上用亮琥珀底 + 深蓝粗体字，醒目 */
.price-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 12px;
  background: #ffc53d;
  color: #0f3460;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: 0 10px 26px rgba(9, 30, 66, 0.4);
}

.price-notice svg {
  flex: none;
  margin-top: 2px;
}

/* 货物类型卡片（普货 / 电商货物） */
.cargotype {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.cargotype__card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cargotype__card:hover {
  border-color: var(--navy-100);
  background: #fcfdff;
}

.cargotype__card input {
  flex: none;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}

.cargotype__card:has(input:checked) {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.09);
  background: #fbfcfe;
}

.cargotype__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cargotype__title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
}

.cargotype__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted, #5b6b7c);
}

/* 电商线路红色提示（文案由后端下发，落在对应线路卡片内） */
.route-option__notice {
  margin-top: 11px;
  padding: 9px 12px;
  border-radius: var(--radius-sm, 10px);
  background: var(--danger-soft);
  color: var(--danger);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .cargotype {
    grid-template-columns: 1fr;
  }

  .price-notice {
    font-size: 13px;
  }
}
