@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700&family=Noto+Sans+Arabic:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "UKIJ CJK";
  src: url("/static/fonts/UKIJCJK.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range:
    U+0600-06FF,
    U+0750-077F,
    U+08A0-08FF,
    U+FB50-FDFF,
    U+FE70-FEFF,
    U+200C-200F,
    U+202A-202E,
    U+4E00-9FFF,
    U+AC00-D7AF;
}

:root {
  --orange: #FF8C00;
  --orange-d: #E67A00;
  --orange-l: #FFF3E0;
  --navy: #1A2A3A;
  --navy-2: #2C4058;
  --navy-3: #4A6A8A;
  --bg: #F5F6FA;
  --card: #ffffff;
  --text: #1A2A3A;
  --body: #333333;
  --muted: #666666;
  --placeholder: #999999;
  --line: #E8E8E8;
  --ok: #52C41A;
  --warn: #FAAD14;
  --danger: #FF4D4F;
  --info: #1890FF;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-brand: 0 4px 16px rgba(255, 140, 0, 0.25);
  --radius: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --space: 4px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-m: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 48px;
  --ease: 200ms ease;
  --font: "Inter", "PingFang SC", "Noto Sans SC", "Noto Sans", "Microsoft YaHei", sans-serif;
  --font-display: "Inter", "PingFang SC", "Noto Sans SC", "Noto Sans", sans-serif;
  --font-ug: "UKIJ CJK", "Noto Sans Arabic", "Noto Naskh Arabic", "PingFang SC", "Noto Sans SC", sans-serif;
  --font-data: ui-monospace, "SFMono-Regular", Menlo, Consolas, "Noto Sans SC", monospace;
  --fs-xs: 11px;
  --fs-sm: 13px;
  --fs-md: 15px;
  --fs-lg: 17px;
  --fs-xl: 22px;
  --fs-2xl: 26px;
  --lh-tight: 1.22;
  --lh-title: 1.3;
  --lh-body: 1.5;
  --lh-muted: 1.45;
  --color-primary: #1A2A3A;
  --color-on-primary: #FFFFFF;
  --color-accent: #FF8C00;
  --color-on-accent: #FFFFFF;
  --color-background: var(--bg);
  --color-foreground: var(--text);
  --color-card: var(--card);
  --color-muted-foreground: var(--muted);
  --color-border: var(--line);
  --color-ring: #FF8C00;
  --color-success: #52C41A;
  --touch: 48px;
}

[data-theme="dark"] {
  --bg: #0D1520;
  --card: #1A2A3A;
  --text: #F0F4F8;
  --body: #D0D8E0;
  --muted: #6A8AAA;
  --placeholder: #6A8AAA;
  --line: #2C4058;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: var(--lh-body);
  font-size: 15px;
}

.h1,
.h2,
.logo,
.web-nav .logo,
.side .brand {
  font-family: var(--font-display);
}

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

button,
[data-go],
[data-tab],
[data-page],
.diamond,
.pill,
.veh-card,
.list-item,
.hist-item {
  cursor: pointer;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.empty-state {
  text-align: center;
  padding: 48px 16px;
  color: var(--placeholder);
}

.empty-state .ph-icon {
  margin: 0 auto 12px;
  color: #C5CCD3;
}

.empty-state .h2 {
  color: var(--text);
  margin-bottom: 6px;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--orange-l);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 24px auto;
}

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

.order-card {
  margin: 8px 0;
}

.order-card .price {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
}

.price {
  color: var(--orange);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.phone-stage {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 140, 0, 0.18), transparent 50%),
    radial-gradient(900px 500px at 100% 100%, rgba(26, 42, 58, 0.35), transparent 50%),
    var(--navy);
  padding: 24px;
}

.phone {
  width: 390px;
  height: 844px;
  background: var(--bg);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), inset 0 0 0 10px #0e1720;
  display: flex;
  flex-direction: column;
}

.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 22px;
  background: #0e1720;
  border-radius: 0 0 16px 16px;
  z-index: 20;
}

.phone-body {
  flex: 1;
  overflow: auto;
  position: relative;
}

.tabbar {
  min-height: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  color: #999999;
  border-top: 1px solid #F0F0F0;
  padding-bottom: max(6px, env(safe-area-inset-bottom));
  padding-top: 4px;
}

.tabbar button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 400;
  min-height: 48px;
  width: 100%;
  transition: color var(--ease);
}

.tabbar button span {
  line-height: 1.2;
}

.tabbar button.on {
  color: var(--orange);
  font-weight: 600;
}

.tabbar button.on .ph-icon {
  stroke-width: 2.2;
  color: var(--orange);
}

[data-theme="dark"] .tabbar {
  background: #1A2A3A;
  border-top-color: #2C4058;
  color: #6A8AAA;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
  font-size: 15px;
  min-height: 40px;
  transition: background var(--ease), opacity var(--ease), box-shadow var(--ease);
}

.btn:hover {
  background: var(--orange-d);
  box-shadow: var(--shadow-brand);
}

.btn:active {
  opacity: 0.8;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  box-shadow: none;
}

.btn.ghost {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.btn.ghost:hover {
  background: var(--orange-l);
}

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

.btn.navy:hover {
  background: #24384c;
}

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

.btn.link {
  background: transparent;
  color: var(--orange);
  min-height: auto;
  padding: 0;
  font-weight: 500;
}

.btn.block {
  width: 100%;
}

.btn.lg {
  height: 48px;
  min-height: 48px;
  font-size: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FF8C00, #E67A00);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.sm {
  min-height: 32px;
  height: 32px;
  padding: 0 12px;
  font-size: 13px;
  border-radius: 6px;
}

.card {
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.space {
  justify-content: space-between;
}

.muted {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-muted);
}

.h1 {
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
  color: var(--text);
  text-wrap: balance;
}

.h2 {
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: var(--lh-title);
  color: var(--text);
}

.tag {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
}

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

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

.tag.danger {
  background: var(--danger);
}

.tag.info {
  background: var(--info);
}

.tag.gray {
  background: #F0F0F0;
  color: #666666;
}

.tag.soft {
  background: var(--orange-l);
  color: var(--orange-d);
}

.input {
  width: 100%;
  border: 1px solid #D0D8E0;
  background: var(--card);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--body);
  outline: none;
  min-height: 44px;
  line-height: 1.4;
  box-sizing: border-box;
}

.input::placeholder {
  color: var(--placeholder);
}

.input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}

/* 带左侧图标的输入框 */
.input-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.input-wrap .input-ico {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-3, #4A6A8A);
  pointer-events: none;
  z-index: 1;
}

.input-wrap .input-ico .ph-icon {
  display: block;
  opacity: 0.88;
}

.input-wrap > .input,
.input-wrap > input.input,
.input-wrap > textarea.input {
  padding-left: 42px;
  padding-right: 14px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.input-wrap.is-area .input-ico {
  top: 12px;
  bottom: auto;
  align-items: flex-start;
}

.input-wrap.is-area > textarea.input {
  padding-top: 12px;
  min-height: 88px;
}

.input-wrap:focus-within .input-ico {
  color: var(--orange);
}

.input-wrap.has-trail > .input {
  padding-right: 44px;
}

.input-wrap .input-trail {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  color: var(--muted);
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 6px;
}

.diamond {
  text-align: center;
  cursor: pointer;
}

.diamond .ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 6px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: linear-gradient(180deg, #fff, #f6f7f9);
  box-shadow: 0 4px 12px rgba(26, 42, 58, .06);
  position: relative;
  color: var(--navy);
}

[data-theme="dark"] .diamond .ico {
  background: var(--navy-2);
}

.diamond span {
  font-size: 11px;
  color: var(--text);
}

.badge-txt,
.badge-num {
  position: absolute;
  top: -6px;
  right: -8px;
  font-size: 9px;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 8px;
  font-style: normal;
  color: #fff;
  font-weight: 700;
}

.badge-txt {
  background: var(--danger);
}

.badge-num {
  background: var(--danger);
  min-width: 14px;
  text-align: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.avatar.guest {
  background: #c5ccd3;
}

.bell {
  position: relative;
  font-size: 18px;
}

.bell .dot {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--danger);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  display: grid;
  place-items: center;
}

.banner-wrap {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  margin: 8px 0 12px;
}

.banner-track {
  display: flex;
  transition: transform .35s ease;
}

.banner-track .banner {
  min-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
}

.banner-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.banner-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff66;
  display: block;
  cursor: pointer;
}

.banner-dots i.on {
  background: #fff;
  width: 14px;
  border-radius: 4px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.otp {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.otp input {
  flex: 1;
  height: 48px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid #ffffff44;
  background: #ffffff22;
  color: #fff;
}

.search-sec {
  margin-top: 18px;
}

.hist-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.kind-tabs {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-bottom: 4px;
}

/* V21 用户中心枢纽 */
.me-hero {
  background: linear-gradient(145deg, #1A2A3A 0%, #2C4058 70%);
  color: #fff;
  border-radius: 16px;
  padding: 18px 16px 14px;
}
.me-hero .me-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-size: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.me-hero .me-name { font-size: 18px; font-weight: 600; color: #fff; }
.me-hero .me-id { font-size: 12px; color: #b8c4d0; margin-top: 2px; }
.me-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 6px;
  margin-right: 6px;
}
.me-kyc { color: #7ddea0; font-size: 12px; }
.me-kyc::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #3ecf7a; margin-right: 4px; vertical-align: middle; }
.me-assets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 14px;
  background: rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 10px 4px;
}
.me-assets .cell { text-align: center; cursor: pointer; }
.me-assets .val { font-size: 15px; font-weight: 700; color: #fff; }
.me-assets .lab { font-size: 11px; color: #d7e0ea; margin-top: 2px; }
.me-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.me-grid .cell {
  background: var(--card);
  border-radius: 8px;
  padding: 12px 4px;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--line);
}
.me-grid .ico { font-size: 22px; color: var(--orange); line-height: 1.2; }
.me-grid .lab { font-size: 12px; color: var(--muted); margin-top: 4px; }
.me-set {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.me-set .row {
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid #F0F0F0;
  cursor: pointer;
}
.me-set .row:last-child { border-bottom: 0; }

.msg-item.unread {
  background: rgba(255, 140, 0, .08);
  border-radius: 12px;
  padding-left: 8px;
  padding-right: 8px;
}

.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 40;
  display: grid;
  place-items: end center;
}

.modal-sheet {
  background: var(--card);
  width: min(430px, 100%);
  border-radius: 18px 18px 0 0;
  padding: 18px 16px 28px;
}

.cross-bar {
  background: rgba(255, 140, 0, .12);
  color: var(--navy);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 12px;
  margin-bottom: 10px;
}

.banner {
  border-radius: 18px;
  padding: 18px 16px;
  min-height: 108px;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4158 55%, var(--orange) 140%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.banner b {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

.map {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(#dfe7ee 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, #dfe7ee 1px, transparent 1px) 0 0 / 28px 28px,
    #eef2f6;
}

[data-theme="dark"] .map {
  background:
    linear-gradient(#243140 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, #243140 1px, transparent 1px) 0 0 / 28px 28px,
    #17222e;
}

.map .river {
  position: absolute;
  left: 18%;
  top: -10%;
  width: 42px;
  height: 120%;
  background: rgba(90, 170, 210, .25);
  transform: rotate(18deg);
  border-radius: 40px;
}

.pin {
  position: absolute;
  transform: translate(-50%, -100%);
  z-index: 3;
  text-align: center;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .2));
  color: var(--orange);
}

.pin-origin {
  color: #22a06b;
}

.pin-dest {
  color: #FF8C00;
}

.addr-box {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  width: 100%;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
}

button.addr-box {
  appearance: none;
  -webkit-appearance: none;
}

.addr-box > div {
  flex: 1;
  min-width: 0;
}

.addr-box .h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.addr-box .h2.ph {
  color: var(--placeholder, #999);
  font-weight: 600;
}

.addr-box .addr-go {
  flex: 0 0 auto;
  color: var(--muted);
}

.addr-stack {
  position: relative;
}

.addr-stack .addr-box {
  padding-right: 52px;
}

.addr-swap {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  color: var(--navy);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.addr-ico {
  color: #22a06b;
  margin-top: 2px;
}

.addr-ico.dest {
  color: #FF8C00;
}

.veh-card .veh-ico {
  color: var(--navy);
  margin-bottom: 4px;
}

.veh-card.on .veh-ico {
  color: var(--orange);
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  border-radius: 8px;
}

.icon-btn:hover {
  color: var(--navy);
  background: var(--line);
}

.car-mark {
  position: absolute;
  z-index: 4;
  transform: translate(-50%, -50%);
  font-size: 18px;
  transition: left 1.2s ease, top 1.2s ease;
}

.car-mark i {
  display: block;
  width: 14px;
  height: 22px;
  background: linear-gradient(#2C4058, #1A2A3A);
  border: 1.5px solid #6eb4e0;
  border-radius: 5px 5px 3px 3px;
  box-shadow: 0 2px 6px rgba(26, 42, 58, .35);
}

.cluster-bubble {
  position: absolute;
  z-index: 5;
  transform: translate(-50%, -50%);
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border-radius: 19px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 10px rgba(26, 42, 58, .25);
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.route-done {
  fill: none;
  stroke: #FF8C00;
  stroke-width: 2.2;
}

.route-left {
  fill: none;
  stroke: #1A2A3A;
  stroke-width: 2;
  stroke-dasharray: 4 3;
  opacity: .85;
}

.sheet {
  background: var(--card);
  border-radius: 20px 20px 0 0;
  padding: 14px 16px 20px;
  box-shadow: 0 -8px 30px rgba(26, 42, 58, .12);
}

.ride-full {
  position: relative;
  min-height: 100%;
}

.ride-full .map {
  position: absolute;
  inset: 0;
  height: auto !important;
}

.ride-full .map.amap-host,
.ride-full .map.amap-live,
.ride-full .map.amap-host.layer-satellite,
.ride-full .map.amap-live.layer-satellite,
.map.amap-embed,
.map.amap-embed.layer-satellite {
  background: #dce3ea !important;
}

.ride-full .map.amap-host.layer-traffic::after,
.ride-full .map.amap-live.layer-traffic::after {
  display: none;
}

.ride-full .map.amap-host.is-overview,
.ride-full .map.amap-live.is-overview {
  transform: none;
}

.amap-ride {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.amap-ride-status {
  position: absolute;
  left: 50%;
  top: 28%;
  z-index: 2;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  font-size: 13px;
  box-shadow: var(--shadow);
  pointer-events: none;
}

.amap-dot {
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(26, 42, 58, .28);
}

.amap-dot b {
  transform: rotate(45deg);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.amap-dot.origin {
  background: #22a06b;
}

.amap-dot.dest {
  background: #FF8C00;
}

.amap-car i {
  display: block;
  width: 14px;
  height: 22px;
  background: linear-gradient(#2C4058, #1A2A3A);
  border: 1.5px solid #6eb4e0;
  border-radius: 5px 5px 3px 3px;
  box-shadow: 0 2px 6px rgba(26, 42, 58, .35);
}

.amap-car.bike i {
  width: 12px;
  height: 16px;
  border-radius: 8px 8px 4px 4px;
  border-color: #FF8C00;
}

.amap-car.truck i {
  width: 18px;
  height: 26px;
}

.map.amap-host,
.map.amap-embed,
.map.amap-live {
  background-image: none !important;
}

.map.amap-embed {
  position: relative;
  height: 220px;
  min-height: 220px;
  border-radius: 14px;
  margin: 10px 16px 0;
  overflow: hidden;
  background: #dce3ea !important;
}

.map.amap-embed .amap-ride {
  position: relative;
  inset: auto;
  width: 100%;
  height: 220px;
  min-height: 220px;
}

.hitch-mini.amap-static {
  background: #dce3ea;
}

.hitch-mini.amap-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ride-full .sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 58%;
  overflow: auto;
  z-index: 6;
}

.ride-zoom {
  position: absolute;
  right: 12px;
  top: 58px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ride-zoom button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  font-size: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.ride-layers,
.ride-tools {
  position: absolute;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ride-layers {
  left: 12px;
  top: 58px;
}

.ride-full:has(.track-top) .ride-layers {
  top: 132px;
}

.ride-layers button,
.ride-tools button {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  padding: 0;
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.ride-layers button.on,
.ride-tools button.on {
  background: var(--orange);
  color: #fff;
}

.ride-tools {
  right: 12px;
  bottom: 62%;
}

.map.layer-satellite {
  background:
    linear-gradient(rgba(30, 70, 36, .28), rgba(18, 40, 22, .18)),
    linear-gradient(#4a6a3a 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, #4a6a3a 1px, transparent 1px) 0 0 / 28px 28px,
    #2d4a32 !important;
}

.map.layer-traffic .river {
  background: rgba(255, 90, 70, .4);
}

.map.layer-traffic::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 42%;
  width: 78%;
  height: 7px;
  background: linear-gradient(90deg, #22c55e, #facc15 42%, #ef4444 72%, #22c55e);
  opacity: .75;
  border-radius: 4px;
  transform: rotate(-14deg);
  pointer-events: none;
}

.map.is-follow .car-mark,
.map.is-follow .pin {
  transition: left 1.1s ease, top 1.1s ease;
}

.map.is-overview {
  transform: scale(.78);
  transform-origin: center center;
}

.food-tl {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 8px;
}

.food-tl span {
  font-size: 11px;
  color: var(--muted);
}

.veh-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px;
}

.veh-card {
  min-width: 118px;
  padding: 10px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--card);
  cursor: pointer;
  flex-shrink: 0;
}

.veh-card.on {
  border-color: var(--orange);
  background: rgba(255, 140, 0, .08);
}

.veh-card .tag {
  margin-top: 4px;
}

.qr-fake {
  width: 132px;
  height: 132px;
  margin: 12px auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
}

.qr-fake i {
  background: #eee;
  display: block;
  aspect-ratio: 1;
}

.qr-fake i.on {
  background: #1A2A3A;
}

.wait-top {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 56px;
  z-index: 7;
  background: var(--card);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.track-top {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 56px;
  z-index: 7;
  background: var(--card);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.star-row {
  display: flex;
  gap: 8px;
  font-size: 28px;
  cursor: pointer;
  margin: 8px 0;
}

.star-row span.dim {
  opacity: .28;
}

.tag-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}

.tag-pick span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  cursor: pointer;
}

.tag-pick span.on {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 140, 0, .08);
}

.pulse {
  animation: pulse 1.2s ease infinite;
}

@keyframes pulse {
  50% {
    opacity: .45;
  }
}

.hitch-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0 14px;
}

.hitch-tabs .pill {
  text-align: center;
  padding: 10px;
}

.hitch-mini {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background:
    linear-gradient(#dfe7ee 1px, transparent 1px) 0 0 / 10px 10px,
    linear-gradient(90deg, #dfe7ee 1px, transparent 1px) 0 0 / 10px 10px, #eef2f6;
  position: relative;
}

.hitch-mini .route-svg {
  position: absolute;
  inset: 0;
}

.trust-bar {
  height: 10px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
  margin: 10px 0;
}

.trust-bar i {
  display: block;
  height: 100%;
  background: var(--orange);
}

.note-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0;
}

.note-chips span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  cursor: pointer;
}

.note-chips span.on {
  border-color: var(--orange);
  color: var(--orange);
}

.rent-cover {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #1A2A3A, #2C4058);
  display: grid;
  place-items: center;
  font-size: 34px;
}

.rent-gallery {
  height: 210px;
  position: relative;
  color: #fff;
  background: linear-gradient(165deg, #1A2A3A 0%, #2C4058 58%, #FF8C00 140%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 76px;
}

.rent-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.rent-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}

.rent-dots i.on {
  width: 14px;
  background: var(--orange);
}

.param-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.param-grid>div {
  background: var(--bg);
  border-radius: 12px;
  padding: 10px 12px;
}

.range-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.range-wrap input[type="range"] {
  flex: 1;
  accent-color: var(--orange);
}

.sig-pad {
  height: 96px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--navy);
  background: #fffdf8;
  font-family: "Segoe Script", "STKaiti", cursive;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.photo-grid .card {
  text-align: center;
  padding: 10px 6px;
  font-size: 12px;
}

.face-steps {
  display: flex;
  gap: 8px;
  margin: 10px 0;
}

.face-steps span {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 12px;
  background: var(--bg);
}

.scene-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.scene-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px;
  cursor: pointer;
  min-height: 108px;
}

.scene-card.on {
  border-color: var(--orange);
  background: rgba(255, 140, 0, .08);
}

.scene-card .emoji {
  font-size: 28px;
}

.scene-card .perks {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

.scene-grid .scene-card:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 88px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.seat-map {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 12px 0;
}

.seat-row {
  display: flex;
  gap: 8px;
}

.seat {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--navy-2);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.seat.drv {
  background: var(--orange);
  color: #fff;
}

.food-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}

.food-cover {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--bg);
  display: grid;
  place-items: center;
  font-size: 36px;
  flex-shrink: 0;
}

.food-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.food-page.pad {
  padding-top: 0;
}

.food-sticky {
  position: sticky;
  top: calc(44px + env(safe-area-inset-top, 0px));
  z-index: 8;
  background: var(--bg);
  margin: 0 -16px 8px;
  padding: 10px 16px 8px;
  border-bottom: 1px solid var(--line);
}

.food-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--text);
  text-align: left;
}

.food-loc .ph-icon {
  color: var(--orange);
  flex: 0 0 auto;
}

.food-loc span {
  font-weight: 600;
  font-size: 14px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.food-loc em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.food-loc > .ph-icon:last-child {
  margin-left: auto;
  color: var(--navy-3);
}

.food-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 12px 0 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.food-search > .ph-icon {
  flex: 0 0 auto;
  color: var(--navy-3);
}

.food-search > .input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 10px 0;
  -webkit-appearance: none;
  appearance: none;
}

.food-search > .input::-webkit-search-cancel-button,
.food-search > .input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.food-search > .input:focus {
  box-shadow: none;
}

.food-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}

.food-search-clear {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted);
  display: grid;
  place-items: center;
}

.food-chips,
.food-sorts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0 2px;
}

.food-chips::-webkit-scrollbar,
.food-sorts::-webkit-scrollbar {
  display: none;
}

.food-chip,
.food-sort {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--body);
  font: inherit;
  font-size: 13px;
  white-space: nowrap;
}

.food-chip .ph-icon {
  color: var(--navy-3);
}

.food-chip.on,
.food-sort.on,
.food-filter-btn.on {
  background: var(--orange-l);
  color: var(--orange-d);
  border-color: var(--orange);
  font-weight: 600;
}

.food-chip.on .ph-icon {
  color: var(--orange);
}

.food-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.food-toolbar .food-sorts {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
  padding-bottom: 2px;
}

.food-filter-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--body);
  font: inherit;
  font-size: 13px;
  white-space: nowrap;
}

.food-filter-btn i {
  display: inline-grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
}

.food-filter {
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px;
  margin-bottom: 12px;
}

.food-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.food-count {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 10px;
}

.food-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.food-merchant {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  background: var(--card);
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px;
}

.food-merchant:active {
  transform: scale(0.99);
}

.food-merchant-cover {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 36px;
  line-height: 1;
}

.food-merchant-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-merchant-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.food-merchant-title {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.food-merchant-title b {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.food-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 6px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.food-badge.ghost {
  background: var(--orange-l);
  color: var(--orange-d);
}

.food-merchant-rate,
.food-merchant-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.food-score {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--orange);
  font-weight: 700;
}

.food-score .ph-icon {
  fill: var(--orange);
  stroke: var(--orange);
}

.food-merchant-tags {
  display: flex;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

.food-merchant-tags span {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--orange-l);
  color: var(--orange-d);
  font-size: 11px;
  font-weight: 500;
}

.food-merchant-go {
  align-self: center;
  color: var(--placeholder);
  flex-shrink: 0;
}

.food-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--placeholder);
}

.food-empty .ph-icon {
  margin: 0 auto 12px;
  color: #C5CCD3;
}

.food-empty b {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 6px;
}

.food-empty p {
  font-size: 13px;
  margin-bottom: 16px;
}

[data-theme="dark"] .food-merchant-cover {
  background: rgba(255, 140, 0, 0.16);
}

[data-theme="dark"] .food-empty .ph-icon {
  color: var(--navy-3);
}

.notice-marquee {
  overflow: hidden;
  background: rgba(255, 140, 0, .08);
  border-radius: 10px;
  padding: 8px 0;
  margin: 10px 0;
}

.notice-marquee span {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: marquee 14s linear infinite;
  font-size: 12px;
  color: var(--orange);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.shop-hero {
  height: 160px;
  border-radius: 0 0 16px 16px;
  margin: -8px -16px 12px;
  background: linear-gradient(135deg, #FF8C00 0%, #E67A00 42%, #1A2A3A 100%);
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.shop-hero .shop-hero-mark {
  font-size: 56px;
  line-height: 1;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .25));
}

.shop-info-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px;
  margin-top: -28px;
  position: relative;
  z-index: 1;
}

.shop-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.shop-stars {
  color: var(--orange);
  letter-spacing: 1px;
  font-size: 13px;
}

.shop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.shop-dot.on {
  background: #52C41A;
}

.shop-dot.off {
  background: #999;
}

.shop-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.shop-meta-row button {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
}

.shop-deli {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  background: var(--bg);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--muted);
}

.lic-row {
  display: flex;
  gap: 8px;
  overflow: auto;
  margin-top: 10px;
  padding-bottom: 2px;
}

.lic-chip {
  flex: 0 0 auto;
  background: #F5F6FA;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lic-chip.ok {
  color: #237804;
}

.lic-chip.warn {
  background: #FFF7E6;
  color: #D48806;
}

.promo-strip {
  display: flex;
  gap: 8px;
  overflow: auto;
  margin: 10px 0 0;
}

.promo-pill {
  flex: 0 0 auto;
  background: linear-gradient(90deg, #FF8C00, #E67A00);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
}

.shop-notice {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #F5F6FA;
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.cat-tabs {
  display: flex;
  gap: 4px;
  overflow: auto;
  margin: 12px 0 4px;
  border-bottom: 1px solid var(--line);
}

.cat-tabs .pill {
  border-radius: 0;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  padding: 10px 12px;
  min-height: 44px;
}

.cat-tabs .pill.on {
  color: var(--orange);
  border-bottom-color: var(--orange);
  font-weight: 700;
  background: none;
}

.dish-row {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.dish-thumb {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background: var(--bg);
  display: grid;
  place-items: center;
  font-size: 40px;
  flex-shrink: 0;
  cursor: pointer;
}

.dish-add {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.dish-add:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.dish-price {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}

.dish-tag {
  display: inline-block;
  background: #FFF3E0;
  color: var(--orange);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 11px;
  margin-right: 4px;
}

.lic-modal .lic-block {
  margin: 12px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.lic-modal .lic-block:last-child {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .shop-hero {
    height: 200px;
  }
}

.cart-dock {
  position: sticky;
  bottom: 8px;
  z-index: 8;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  margin-top: 12px;
  box-shadow: var(--shadow);
}

.cart-dock .badge {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 11px;
  margin-right: 8px;
}

.check-page {
  padding: 12px 16px calc(108px + env(safe-area-inset-bottom, 0px));
  scroll-padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
}

.check-alert {
  background: var(--orange-l);
  color: var(--navy);
  border: 1px solid #ffd9a8;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  outline: none;
}

.check-alert:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.35);
}

.check-alert b {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.check-alert a {
  display: block;
  color: var(--orange-d);
  font-size: 13px;
  font-weight: 600;
  min-height: 32px;
  text-decoration: underline;
}

.check-shop {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 700;
}

.check-shop .ph-icon {
  color: var(--orange);
}

.check-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.check-card[role="button"] {
  cursor: pointer;
  width: 100%;
  text-align: start;
  font: inherit;
  color: inherit;
}

.check-card[role="button"]:hover,
.check-card[role="button"]:focus-visible {
  border-color: var(--orange);
}

.check-card[role="button"]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.check-card.is-warn {
  border-color: #ffb14a;
  background: #fffaf3;
}

.check-card-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--orange-l);
  color: var(--orange);
  flex: 0 0 auto;
}

.check-card-body {
  flex: 1;
  min-width: 0;
}

.check-card > .ph-icon:last-child {
  color: var(--navy-3);
  flex: 0 0 auto;
  margin-top: 10px;
}

.check-kicker {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}

.check-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.check-title.is-placeholder {
  color: var(--placeholder);
  font-weight: 600;
}

.check-meta {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.check-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin: -4px 0 12px;
  -webkit-overflow-scrolling: touch;
}

.check-chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.check-card,
.check-chip,
.check-seg button,
.check-step,
.check-offer,
.check-pay,
.check-dock .btn {
  transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease, opacity 200ms ease;
}

.check-chip:focus-visible,
.check-step:focus-visible,
.check-seg button:focus-visible,
.check-offer:focus-visible,
.check-pay:focus-within,
.check-text:focus-visible,
.check-dock .btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.check-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0;
}

.check-seg button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.check-seg button.on {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.check-label {
  display: block;
  margin: 12px 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.check-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-step {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.check-step:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.check-step:active {
  background: var(--orange-l);
}

.check-note {
  min-height: 72px;
  padding: 12px;
  resize: vertical;
}

.check-offer,
.check-pay {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: inherit;
  font: inherit;
  text-align: start;
  cursor: pointer;
}

.check-offer span,
.check-pay span:not(.check-pay-ico) {
  flex: 1;
  min-width: 0;
}

.check-offer b,
.check-pay span {
  display: block;
}

.check-offer i,
.check-pay i {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}

.check-offer em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.check-offer.on,
.check-pay.on {
  border-color: var(--orange);
  background: var(--orange-l);
}

.check-pay-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
}

.check-pay input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-pay {
  position: relative;
}

.check-text {
  margin-top: 8px;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  min-height: 40px;
  cursor: pointer;
  text-decoration: underline;
}

.check-line,
.check-fare {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  font-size: 14px;
}

.check-thumb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--orange-l);
  color: var(--orange);
  flex: 0 0 auto;
}

.check-line-name {
  flex: 1;
  min-width: 0;
}

.check-fare {
  color: var(--muted);
  justify-content: space-between;
}

.check-fare.save {
  color: var(--orange-d);
}

.check-fare.total {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  color: var(--text);
  font-weight: 700;
}

.check-dock {
  position: sticky;
  bottom: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px -16px -12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: var(--card);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(26, 42, 58, 0.08);
}

.check-dock-sum {
  flex: 1;
  min-width: 0;
}

.check-dock-sum span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.check-dock-sum b {
  font-size: 22px;
  line-height: 1.2;
}

.check-dock .btn {
  min-width: 132px;
  min-height: 48px;
  margin: 0;
}

.check-dock .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

html[dir="rtl"] .check-card > .ph-icon:last-child {
  transform: scaleX(-1);
}

[data-theme="dark"] .check-card.is-warn,
[data-theme="dark"] .check-alert {
  background: #2a2218;
  border-color: #8a5a20;
  color: #f0f4f8;
}

[data-theme="dark"] .check-pay-ico {
  background: #243446;
}

@media (prefers-reduced-motion: reduce) {
  .check-card,
  .check-chip,
  .check-seg button,
  .check-step,
  .check-offer,
  .check-pay,
  .check-dock .btn {
    transition: none;
  }
}

.cart-fly {
  position: fixed;
  z-index: 90;
  font-size: 24px;
  pointer-events: none;
  animation: cartFly .65s cubic-bezier(.15, .8, .2, 1) forwards;
}

@keyframes cartFly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  45% {
    transform: translate(calc(var(--dx) * .45), calc(var(--dy) * .25 - 56px)) scale(1.15);
  }

  100% {
    transform: translate(var(--dx), var(--dy)) scale(.2);
    opacity: .1;
  }
}

.food-steps {
  display: flex;
  gap: 0;
  overflow: auto;
  padding: 8px 0 12px;
}

.food-steps span {
  flex: 1;
  min-width: 64px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  position: relative;
}

.food-steps span.on {
  color: var(--orange);
  font-weight: 700;
}

.food-steps span::after {
  content: "";
  position: absolute;
  left: 50%;
  right: -50%;
  top: 22px;
  height: 2px;
  background: var(--line);
}

.food-steps span:last-child::after {
  display: none;
}

.food-steps span.done {
  color: var(--ok);
}

.live-stage {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 40% 30%, #3d5a73, #1A2A3A 70%);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.live-stage .live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e23;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.live-danmaku {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  font-size: 12px;
  text-shadow: 0 1px 2px #000;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-grid span {
  text-align: center;
  font-size: 12px;
  padding: 8px 0;
  border-radius: 8px;
}

.cal-grid span.hd {
  color: var(--muted);
  font-size: 11px;
  padding: 4px 0;
}

.cal-grid span.on {
  background: rgba(255, 140, 0, .18);
  color: var(--orange);
  font-weight: 700;
}

.cal-grid span.today {
  outline: 1px solid var(--orange);
}

.swipe-row {
  display: flex;
  overflow: hidden;
}

.swipe-row .main {
  flex: 1;
}

.swipe-row .del {
  width: 64px;
  background: var(--danger);
  color: #fff;
  display: grid;
  place-items: center;
}

.list-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.price {
  color: var(--orange);
  font-weight: 800;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg);
  font-size: 12px;
  cursor: pointer;
  border: 1px solid transparent;
}

.pill.on {
  background: var(--orange-l);
  color: var(--orange-d);
  border-color: var(--orange);
  font-weight: 600;
}

button.pill {
  font: inherit;
  color: inherit;
}

.toast {
  position: absolute;
  left: 50%;
  bottom: 86px;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}

.toast.show {
  opacity: 1;
}

.nav {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  padding-top: env(safe-area-inset-top);
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--navy);
  color: #fff;
}

.nav b {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.back {
  width: auto;
  min-height: 32px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
}

.back:hover {
  background: #ffffff14;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  display: inline-block;
}

/* ---- 业务配置：国家→城市→详情 三级导航 ---- */
.pnav-countryrow { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 4px; }
.pnav-country {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  min-width: 132px; padding: 12px 14px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--card);
  cursor: pointer; text-align: left; transition: 0.16s ease; font: inherit;
}
.pnav-country .cn { font-weight: 700; font-size: 15px; }
.pnav-country .sub { font-size: 12px; color: var(--muted); }
.pnav-country:hover { border-color: var(--orange); transform: translateY(-1px); }
.pnav-country.on { border-color: var(--orange); background: var(--orange-l); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06); }
.pnav-country.on .cn { font-weight: 800; }
.pnav-citygrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(284px, 1fr)); gap: 10px; margin-top: 16px; }
.pnav-city {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border-radius: 14px; border: 1px solid var(--line); background: var(--card);
  cursor: pointer; text-align: left; transition: 0.16s ease; font: inherit; color: inherit;
}
.pnav-city:hover { border-color: var(--orange); background: var(--orange-l); }
.pnav-city .doth { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; flex: none; }
.pnav-city .doth.off { background: var(--muted); }
.pnav-city.closed { opacity: 0.7; }
.pnav-city .chev { color: var(--muted); font-size: 18px; flex: none; }

.admin-shell {
  display: grid;
  grid-template-columns: 232px 1fr;
  min-height: 100vh;
}

.admin-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  scroll-padding-top: 72px;
}

.side {
  background: var(--navy);
  color: #c5d0db;
  padding: 16px 10px 20px;
  overflow-y: auto;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
}

.side .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 8px 10px 16px;
  font-weight: 800;
  font-size: 18px;
}

.side .brand i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--orange);
  display: grid;
  place-items: center;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.side-group {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6A8AAA;
  padding: 14px 12px 4px;
}

.side a,
.side button.nav-item {
  display: flex;
  width: 100%;
  text-align: left;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #c5d0db;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  align-items: center;
  min-height: 40px;
  transition: background var(--ease), color var(--ease);
}

.side a.on,
.side button.nav-item.on {
  background: var(--orange);
  color: #fff;
}

.side a:hover,
.side button.nav-item:hover {
  background: rgba(255, 140, 0, .18);
  color: #fff;
}

.side .nav-item .ph-icon {
  flex-shrink: 0;
  opacity: .9;
}

.side-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #ffffff14;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.side-foot a {
  font-size: 12px;
  min-height: 36px;
  color: #9aa8b8;
}

.topbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

[data-theme="dark"] .topbar {
  background: rgba(13, 21, 32, .88);
}

.topbar h1 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F6FFED;
  color: #389E0D;
  border: 1px solid #B7EB8F;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.live-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border-radius: 999px;
  padding: 4px 10px 4px 4px;
  font-size: 13px;
  color: var(--muted);
}

.admin-main {
  flex: 1;
  padding: 16px 20px 32px;
  max-width: 1400px;
  width: 100%;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.kpi .card,
.kpi-card {
  padding: 12px 14px;
  transition: box-shadow var(--ease);
}

.kpi .card:hover,
.kpi-card:hover {
  box-shadow: var(--shadow-md);
}

.kpi .card .muted,
.kpi-card .muted {
  font-size: 13px;
  letter-spacing: .02em;
}

.kpi .card b,
.kpi-card b {
  font-size: 32px;
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.1;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  background: var(--navy-2);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  position: sticky;
  top: 0;
  z-index: 1;
}

tr:nth-child(even) td {
  background: #FAFBFC;
}

.admin-main tbody tr:hover td {
  background: var(--orange-l);
}

[data-theme="dark"] tr:nth-child(even) td {
  background: #15202b;
}

[data-theme="dark"] .admin-main tbody tr:hover td {
  background: #243447;
}

/* UI/UX Pro Max · 总后台质感增强（仅作用于 .admin-shell 内部，不影响门户） */
.admin-shell {
  background:
    radial-gradient(1200px 420px at 110% -10%, rgba(255, 140, 0, 0.08), transparent 55%),
    radial-gradient(900px 380px at -10% 0, rgba(26, 42, 58, 0.08), transparent 50%),
    var(--bg);
}
.admin-main {
  animation: adminFade .28s ease;
}
@keyframes adminFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.admin-shell .side { box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.04); }
.admin-shell .card {
  border-radius: 14px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.admin-shell .card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 140, 0, 0.10);
}
.admin-shell .kpi .card b,
.admin-shell .kpi-card b,
.admin-shell .kpi-card .big {
  background: linear-gradient(120deg, #ff8c00, #f0591a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="dark"] .admin-shell .kpi .card b,
[data-theme="dark"] .admin-shell .kpi-card b {
  background: linear-gradient(120deg, #ffb04d, #ff7a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.admin-shell th {
  text-transform: none;
  letter-spacing: 0.04em;
}
.admin-shell .card > .h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--orange), var(--orange-d));
  margin-right: 8px;
  vertical-align: -2px;
}
.admin-shell .kpi-card {
  position: relative;
  padding: 14px 16px 14px 52px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.admin-shell .kpi-card::after {
  content: "";
  position: absolute;
  inset: auto -22px -30px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.16), transparent 62%);
}
.admin-shell .kpi-ico {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
.admin-shell .kpi-label {
  font-size: 12px;
  letter-spacing: .02em;
}
.admin-shell .table-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
[data-theme="dark"] .admin-shell .table-wrap {
  background: #0f1a26;
}
.admin-shell .table-wrap table {
  border-collapse: separate;
  border-spacing: 0;
}
.admin-shell .table-wrap td,
.admin-shell .table-wrap th {
  padding: 9px 12px;
}
.admin-shell .table-wrap tr:last-child td {
  border-bottom: 0;
}
.admin-main::-webkit-scrollbar,
.admin-shell .side::-webkit-scrollbar,
.admin-shell .table-wrap::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.admin-shell *::-webkit-scrollbar-thumb {
  background: rgba(74, 106, 138, 0.35);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.admin-shell *::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 106, 138, 0.55);
  background-clip: content-box;
}
.admin-toolbar .input,
.admin-main .input,
.admin-main select.input {
  border-radius: 10px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.admin-main .input:focus,
.admin-main select.input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.16);
}
.admin-shell .pill.offline { color: #b91c1c; background: #fef2f2; }
.admin-shell .pill.paperldot { color: #b45309; background: #fff7e6; }




.admin-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
}

.admin-alert.warn {
  background: #FFFBE6;
  color: #AD6800;
}

.admin-alert.danger {
  background: #FFF1F0;
  color: #A8071A;
}

.admin-alert.info {
  background: #E6F7FF;
  color: #0958D9;
}

.form-error {
  background: #FFF1F0;
  color: #A8071A;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.form-error[hidden] {
  display: none;
}

.cv-copy {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.55;
  color: #5c6b7a;
}

.cv-copy p {
  margin: 0 0 4px;
}

.cv-copy p:last-child {
  margin-bottom: 0;
}

.cv-copy.on-dark {
  color: #ffd9a8;
  opacity: 0.92;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.map-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

.map-dot.green {
  background: var(--ok);
}

.map-dot.yellow {
  background: var(--warn);
}

.map-dot.red {
  background: var(--danger);
}

.map-dot.gray {
  background: #999;
}

.web-hero {
  min-height: 100vh;
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(255, 140, 0, .22), transparent 55%),
    linear-gradient(165deg, #1A2A3A 0%, #243447 58%, #3a2a18 160%);
  color: #fff;
  overflow: hidden;
}

.web-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8vw;
  position: sticky;
  top: 0;
  z-index: 20;
}

.web-nav .logo {
  font-weight: 800;
  font-size: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: -0.03em;
}

.badge-o {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--navy);
  display: grid;
  place-items: center;
}

.badge-o .ph-icon {
  color: var(--navy);
}

@media (max-width: 860px) {
  .phone-stage {
    padding: 0;
    background: var(--bg);
  }

  .phone {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    box-shadow: none;
  }

  .phone::before {
    display: none;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .side {
    display: none;
  }

  .side a,
  .side button.nav-item {
    min-height: 48px;
  }

  .side.open {
    display: block;
    position: fixed;
    inset: 0 auto 0 0;
    width: min(280px, 86vw);
    z-index: 50;
    box-shadow: var(--shadow-xl);
  }

  .side-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 40;
  }

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

  .menu-btn {
    display: grid !important;
  }
}

.ph-icon {
  display: block;
  flex-shrink: 0;
}

.ph-icon.filled {
  fill: currentColor;
  stroke: currentColor;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-lockup em {
  font-style: normal;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  place-items: center;
  cursor: pointer;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(255, 140, 0, .18), transparent 50%),
    linear-gradient(165deg, #1A2A3A, #243447);
  padding: 24px;
}

.admin-login .card {
  width: min(420px, 100%);
  padding: 32px;
}

.admin-login label {
  display: block;
  margin-top: 10px;
}

.admin-login .captcha-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
}

.admin-login .captcha-row .input {
  flex: 1;
  min-width: 0;
}

.admin-login .captcha-img {
  flex: 0 0 120px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #1A2A3A;
  cursor: pointer;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.admin-login .captcha-img:hover {
  box-shadow: var(--shadow-md);
}

.admin-login .captcha-img:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.admin-login .captcha-img svg {
  display: block;
}

.admin-login .captcha-hint {
  margin: 6px 0 0;
  font-size: 12px;
}

.admin-login .form-error.is-ok {
  background: #F6FFED;
  color: #237804;
}

.admin-login .form-error:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.bullet {
  height: 8px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 6px;
}

.bullet i {
  display: block;
  height: 100%;
  background: var(--color-accent);
  border-radius: 8px;
}

.site-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 80px;
}

.site-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 16px 0 14px;
}

.site-lead {
  color: #d7e0ea;
  font-size: 17px;
  max-width: 540px;
}

.site-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.site-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.biz-hero .btn.ghost {
  color: #FFB347;
  border-color: #FFB347;
}

.biz-hero .btn.ghost:hover {
  background: rgba(255, 140, 0, .16);
  color: #fff;
}

.taxi-hero .btn.ghost {
  color: #FFB347;
  border-color: #FFB347;
}

.taxi-hero .btn.ghost:hover {
  background: rgba(255, 140, 0, .16);
  color: #fff;
}

.cs-page section[id] {
  scroll-margin-top: 88px;
}

.cs-channel-grid,
.cs-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cs-channel,
.cs-faq-card {
  text-align: left;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 18px;
  border: 0;
  width: 100%;
  font: inherit;
  background: var(--card);
  transition: box-shadow 200ms ease;
}

.cs-channel:hover,
.cs-faq-card:hover {
  box-shadow: var(--shadow-md);
}

.cs-channel .ico,
.cs-faq-card .ico,
.cs-promise .ico,
.cs-form-head .ico,
.cs-chat-cta .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cs-channel p,
.cs-faq-card p {
  margin: 0;
  color: var(--navy);
  line-height: 1.55;
}

.cs-faq-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
}

.cs-faq-count {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg);
  color: var(--navy);
  border-radius: 999px;
  padding: 4px 10px;
}

.cs-faq-search {
  margin: 16px 0;
  padding: 18px;
}

.cs-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 12px;
  background: var(--card);
  color: var(--muted);
}

.cs-search-wrap .input {
  border: 0;
  box-shadow: none;
  min-height: 48px;
}

.cs-search-wrap .input:focus {
  box-shadow: none;
}

.cs-chat-cta {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.cs-chat-cta .h2 {
  color: #fff;
  margin: 8px 0;
}

.cs-chat-cta p {
  color: #c5d0db;
  margin: 0;
  max-width: 520px;
  line-height: 1.65;
}

.cs-chat-cta .ico {
  background: rgba(255, 140, 0, .18);
  color: var(--orange);
}

.cs-form-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.cs-form-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.cs-form-head .h2 {
  margin: 0 0 4px;
}

.cs-page .site-form {
  max-width: none;
  padding: 24px;
}

.cs-promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cs-promise .card {
  padding: 18px;
}

.cs-promise .h2 {
  margin: 10px 0 6px;
}

.cs-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cs-page .site-tabs .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 14px;
}

.cs-page .biz-crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.cs-page .biz-crumb a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  font-weight: 600;
}

.site-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: #ffd9a8;
  font-size: 13px;
}

.site-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-mini {
  width: 280px;
  height: 560px;
  border-radius: 32px;
  background: #0e1720;
  padding: 10px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.phone-mini iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
  background: #fff;
}

.site-section {
  padding: 64px 0;
}

/* PC 用户中心（#user） */
.uc-stat {
  flex: 1 1 120px;
  min-width: 130px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fbfcfe;
}
.uc-stat .val {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.uc-stat .lab {
  font-size: 12px;
  color: #8a97b5;
  margin-top: 2px;
}
.uc-navbtn {
  display: flex;
  width: 100%;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: #5a6b8c;
  margin-bottom: 2px;
  transition: background .15s, color .15s;
}
.uc-navbtn:hover {
  background: #f2f6ff;
  color: #1746e0;
}
.uc-navbtn.on {
  background: #1746e0;
  color: #fff;
  font-weight: 600;
}
.uc-tool-btn {
  border: 1px solid #eef2f9;
  background: #fbfcfe;
  color: #33466b;
  cursor: pointer;
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 13px;
}
.uc-tool-btn:hover {
  border-color: #bcd0ff;
}
.uc-tab {
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 13px;
  color: #5a6b8c;
  padding: 5px 12px;
  border-radius: 20px;
}
.uc-tab.on {
  background: #eef3ff;
  color: #1746e0;
  font-weight: 700;
}
.uc-form-row {
  margin-bottom: 12px;
}
.uc-form-row label {
  display: block;
  font-size: 12px;
  color: #8a97b5;
  margin-bottom: 6px;
}
.uc-detail {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed #eef2f9;
  font-size: 13px;
}
.uc-detail b { color: var(--navy); }
.uc-detail span { color: #5a6b8c; }
#ucPanel .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  vertical-align: middle;
}
#ucPanel .badge.done { background: #e6f7ee; color: #0f9d4b; }
#ucPanel .badge.warn { background: #fff4e5; color: #d97706; }
#ucPanel .uc-form { margin-top: 6px; }
#ucPanel .uc-form .input { width: 100%; }
.site-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.site-table th {
  color: #8a97b5;
  font-weight: 600;
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid #eef2f9;
}
.site-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #f2f5fa;
  color: var(--navy);
}
.site-table tr:last-child td { border-bottom: none; }
.uc-oid { color: #1746e0; font-weight: 600; white-space: nowrap; }
.uc-link { color: #1746e0; text-decoration: none; }
.uc-link:hover { text-decoration: underline; }


.site-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.site-features .card {
  padding: 22px;
  min-height: 148px;
  transition: box-shadow var(--ease);
}

.site-features .card:hover {
  box-shadow: var(--shadow-lg);
}

.site-features .ico-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(194, 65, 12, .1);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.site-join {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
}

.site-footer {
  padding: 28px 0 48px;
  color: #6b7a8d;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.web-nav .row {
  gap: 18px;
  align-items: center;
}

.web-nav .row a {
  font-size: 14px;
  color: #d7e0ea;
}

.web-nav .row a:hover {
  color: #fff;
}

.caption {
  font-size: 12px;
  color: #9aa8b8;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 900px) {

  .site-hero-grid,
  .site-features {
    grid-template-columns: 1fr;
  }

  .phone-mini {
    display: none;
  }

  .web-nav {
    padding: 16px 20px;
  }

  .web-nav .row a:not(.btn) {
    display: none;
  }

  .site-section {
    padding: 40px 0;
  }
}

.site-shell {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.site-shell .web-nav {
  padding: 14px 4vw;
  background: rgba(26, 42, 58, .94);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 30;
  gap: 12px;
}

.site-shell .web-nav .logo {
  color: #fff;
  cursor: pointer;
}

.site-shell .web-nav a {
  text-decoration: none;
}

.site-shell .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-shell .nav-links>a,
.site-shell .nav-drop>summary {
  color: #d7e0ea;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
}

.site-shell .nav-drop>summary::-webkit-details-marker {
  display: none;
}

.site-shell .nav-links>a:hover,
.site-shell .nav-drop>summary:hover {
  color: #fff;
  background: #ffffff14;
}

.site-shell .nav-links>a.on {
  color: var(--orange);
  background: rgba(255, 140, 0, .16);
}

.site-shell .nav-drop {
  position: relative;
}

.site-shell .nav-drop .menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 40;
}

.site-shell .nav-drop .menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
}

.site-shell .nav-drop .menu a:hover {
  background: var(--bg);
}

.site-shell .nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-shell .nav-actions a,
.site-shell .nav-actions button.btn {
  font-size: 13px;
}

.site-shell.is-home {
  background: #1A2A3A;
}

.site-shell.is-home #site-main {
  color: var(--text);
  background: var(--bg);
}

.site-hero-full {
  color: #fff;
  padding: 48px 0 72px;
  min-height: calc(100vh - 72px);
}

.site-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.site-stats .card {
  background: #ffffff12;
  border: 1px solid #ffffff22;
  color: #fff;
  padding: 16px;
}

.site-stats b {
  font-size: 28px;
  font-family: var(--font-display);
  display: block;
}

.site-grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.site-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.site-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.site-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.site-card-link:hover {
  box-shadow: var(--shadow-lg);
}

.site-map {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 140, 0, .25), transparent 22%),
    linear-gradient(#dfe7ee 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, #dfe7ee 1px, transparent 1px) 0 0 / 24px 24px, #e8eef4;
}

.site-map .pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.site-map .pin i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 auto 4px;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, .25);
}

.cover-stage {
  position: relative;
  margin-top: 4px;
  background: var(--navy);
  overflow: hidden;
  color: #fff;
  border-radius: 14px;
}

.city-map-leaf {
  display: block;
  width: 100%;
  height: min(520px, 62vh) !important;
  min-height: 280px;
  border-radius: 14px;
  z-index: 1;
}

.cover-legend {
  position: absolute;
  right: 20px;
  bottom: 16px;
  display: flex;
  gap: 16px;
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.cover-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cv-leg.on i,
.cover-leg-hq {
  background: #FF8C00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.28);
}

.cover-leg-dot,
.cv-leg.off i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7d8aa0;
  box-shadow: 0 0 0 3px rgba(125, 138, 160, 0.25);
}

.cv-leg i {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.cv-leg.on i { background: #FF8C00; box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.28); }
.cv-leg.off i { background: #7d8aa0; box-shadow: 0 0 0 3px rgba(125, 138, 160, 0.25); }

.coverage-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: flex-start;
  margin: 18px 0 22px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(26, 42, 58, 0.02));
  border: 1px solid rgba(255, 140, 0, 0.18);
}
.coverage-strip > div b {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.coverage-china {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}
.coverage-china span,
.coverage-ca .cov-ca-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.coverage-china u,
.coverage-ca u {
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  color: var(--orange);
}
.coverage-ca {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.coverage-ca .cov-ca-chip {
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.22);
}
.coverage-strip .muted {
  width: 100%;
  margin: 4px 0 0;
  font-size: 12px;
}

/* —— Leaflet 真实地图：Marker 与气泡 —— */
.cv-marker-wrap {
  background: transparent;
  border: none;
}
.cv-marker {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  background: #7d8aa0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  transition: transform .15s;
}
.cv-marker-wrap.on .cv-marker {
  background: #FF8C00;
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.5);
}
.cv-marker-wrap:hover .cv-marker,
.cv-marker-wrap.is-hover .cv-marker {
  transform: scale(1.35);
}
.cv-marker-wrap.off .cv-marker {
  opacity: 0.85;
}

.cv-pop-title {
  font-size: 15px;
  font-weight: 800;
  color: #1A2A3A;
}
.cv-pop-remark {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: #E67A00;
  font-weight: 600;
}
.cv-pop-meta {
  margin-top: 6px;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
}
.cv-pop-meta.on { color: #E67A00; background: rgba(255, 140, 0, 0.14); }
.cv-pop-meta.off { color: #5b6b80; background: rgba(26, 42, 58, 0.1); }

.leaflet-tooltip.cv-city-tip {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(26, 42, 58, 0.94);
  border: 1px solid rgba(255, 140, 0, 0.5);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.leaflet-tooltip-top.cv-city-tip::before {
  border-top-color: rgba(26, 42, 58, 0.94);
}

.amap-heat-wrap {
  position: relative;
  margin-top: 8px;
  min-height: 280px;
}

.amap-heat {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.amap-heat-wrap #amapHeatFallback {
  position: absolute;
  inset: 0;
}

.amap-heat-wrap #amapHeat.amap-live {
  position: relative;
  z-index: 1;
  background: #e8eef4;
}

.amap-city-label {
  display: inline-block;
  background: #1A2A3A;
  color: #fff;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.amap-ride-wrap {
  position: relative;
}
.amap-ride-wrap #dispatchRiderMap {
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  background: #e8eef4;
}
.amap-ride-wrap #dispatchRiderFallback {
  position: absolute;
  inset: 0;
  border-radius: 14px;
}
.amap-rider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c, #64748b);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgb(0 0 0 / 0.12);
}
.pill.greenldot { color: #166534; }
.pill.yellowldot { color: #b45309; }
.pill.redldot { color: #b91c1c; }
.pill.grayldot { color: #475569; }

.site-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-partners span {
  min-width: 120px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 48px 0 24px;
  color: #c5d0db;
}

.site-shell footer {
  background: #15202b;
  color: #9aa8b8;
}

.site-shell footer a {
  color: #d7e0ea;
  text-decoration: none;
  display: block;
  margin: 6px 0;
  font-size: 13px;
}

.site-shell footer .legal {
  border-top: 1px solid #ffffff14;
  padding: 16px 0 28px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-field {
  display: block;
  margin: 10px 0;
  font-size: 13px;
  color: var(--muted);
}

.site-field .input,
.site-field textarea,
.site-field select {
  width: 100%;
  margin-top: 6px;
}

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

.site-form {
  max-width: 720px;
}

.site-steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.site-steps span {
  background: var(--bg);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
}

.site-faq details {
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 8px 0;
  border: 1px solid var(--line);
}

.site-faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-faq summary::-webkit-details-marker {
  display: none;
}

.site-faq summary::after {
  content: "+";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.site-faq details[open] summary::after {
  content: "–";
}

.site-faq details p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.site-faq summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 8px;
}

.site-tabs a.pill {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

.site-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 20px;
}

.site-chat {
  max-height: 320px;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--line);
}

.site-chat .row {
  margin: 8px 0;
}

.site-qr {
  width: 168px;
  height: 168px;
  margin: 12px auto;
  border-radius: 12px;
  background:
    repeating-conic-gradient(#1A2A3A 0% 25%, #fff 0% 50%) 0 0 / 16px 16px;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 800;
}

.site-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.site-modal .card {
  width: min(440px, 100%);
  padding: 24px;
}

.site-timeline {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin: 16px 0;
}

.site-timeline p {
  margin: 0 0 16px;
}

.site-shell .toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
}

.site-shell .toast.show {
  opacity: 1;
}

.site-shell .pill.on {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}

.site-shell .menu-btn {
  display: none;
  background: #ffffff14;
  color: #fff;
}

@media (max-width: 1080px) {
  .site-shell .nav-links {
    display: none;
  }

  .site-shell .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 64px;
    background: #1A2A3A;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
  }

  .site-shell .nav-drop .menu {
    position: static;
    box-shadow: none;
    background: #243447;
  }

  .site-shell .nav-drop .menu a {
    color: #fff;
  }

  .site-shell .menu-btn {
    display: grid;
  }

  .site-shell .web-nav .row a:not(.btn) {
    display: inline-flex;
  }

  .site-stats,
  .site-grid-9,
  .site-grid-4,
  .site-footer-grid,
  .site-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .site-stats,
  .site-grid-9,
  .site-grid-4,
  .site-footer-grid,
  .site-grid-2,
  .site-hero-grid {
    grid-template-columns: 1fr;
  }
}

.hour-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 140px;
  margin-top: 12px;
}

.hour-chart .hour-bar {
  flex: 1;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
  min-height: 2px;
  transition: height 200ms ease;
}

.hour-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.notice-bar {
  background: #fff7ed;
  border: 1px solid #fdba74;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.alert-warn {
  color: #AD6800;
}

.alert-danger {
  color: #A8071A;
}

.alert-info {
  color: #0958D9;
}

.order-stream {
  max-height: 280px;
  overflow: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hour-chart .hour-bar {
    transition: none;
  }
}

.cs-root {
  position: relative;
  z-index: 60;
}

.phone .cs-root,
.cs-root[data-mode="sheet"] {
  position: absolute;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.phone .cs-root.is-open,
.cs-root[data-mode="sheet"].is-open {
  pointer-events: auto;
}

.cs-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 61;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  display: grid;
  place-items: center;
}

.cs-root.is-open .cs-fab {
  display: none;
}

.phone .cs-fab {
  position: absolute;
  right: 16px;
  bottom: 72px;
}

.cs-win {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 62;
  width: 400px;
  height: 600px;
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  background: #F5F6FA;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
}

.phone .cs-win,
.cs-root[data-mode="sheet"] .cs-win {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  max-height: none;
  right: auto;
  bottom: auto;
  border-radius: 0;
  z-index: 50;
}

.cs-root[data-mode="embed"] {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
}

.cs-root[data-mode="embed"] .cs-win {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  box-shadow: none;
  border: 0;
}

.cs-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1A2A3A;
  color: #fff;
  padding: 10px 12px;
  min-height: 52px;
}

.cs-hd-t {
  flex: 1;
  min-width: 0;
}

.cs-hd-t b {
  display: block;
  font-size: 14px;
}

.cs-hd-t span {
  font-size: 11px;
  color: #ffd9a8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cs-hd-a {
  display: flex;
  align-items: center;
  gap: 2px;
}

.cs-hd-a,
.cs-back,
.cs-min,
.cs-x {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  min-width: 32px;
  min-height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.cs-back:hover,
.cs-min:hover,
.cs-x:hover {
  background: #ffffff14;
}

.cs-log {
  flex: 1;
  overflow: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-empty {
  color: var(--muted);
  font-size: 13px;
}

.cs-row {
  display: flex;
  gap: 8px;
  max-width: 86%;
  align-items: flex-end;
}

.cs-row.me {
  margin-left: auto;
  flex-direction: row-reverse;
  max-width: 75%;
}

.cs-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.cs-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
  color: #1A2A3A;
  box-shadow: var(--shadow);
}

.cs-row.me .cs-bubble {
  background: #FF8C00;
  color: #fff;
  border-top-right-radius: 6px;
}

.cs-row.bot .cs-bubble {
  border-top-left-radius: 6px;
}

.cs-time {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.cs-row.me .cs-time {
  text-align: right;
}

.cs-cards {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.cs-card {
  text-align: left;
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  display: grid;
  gap: 2px;
  color: inherit;
  font-size: 12px;
}

.cs-row.me .cs-card {
  background: #ffffff22;
  border-color: #ffffff55;
  color: #fff;
}

.cs-related,
.cs-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 8px;
}

.cs-chip,
.cs-rel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  min-height: 32px;
}

.cs-chip.on,
.cs-rel:active {
  border-color: var(--orange);
  color: var(--orange);
}

.cs-in {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 8px 10px 10px;
}

.cs-in input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px 12px;
  font-size: 14px;
  min-height: 40px;
}

.cs-icon,
.cs-send {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--navy);
}

.cs-send {
  background: var(--orange);
  color: #fff;
}

.cs-rate {
  background: #fff;
  margin: 0 12px 8px;
  padding: 12px;
  border-radius: 12px;
}

.cs-stars {
  display: flex;
  gap: 6px;
  margin: 8px 0;
}

.cs-stars button {
  background: none;
  border: 0;
  color: #ccc;
  cursor: pointer;
  display: grid;
  place-items: center;
  min-width: 32px;
  min-height: 32px;
}

.cs-stars button.on {
  color: var(--orange);
}

.cs-stars button.on .ph-icon {
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 640px) {
  .cs-win {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .cs-fab {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* —— 官网门户：UI UX Pro Max · Swiss + V12 品牌 —— */
.site-shell.portal {
  --portal-brand: #FF8C00;
  --portal-brand-dark: #E67A00;
  --portal-brand-rgb: 255, 140, 0;
  --portal-bg: #F5F6FA;
  --portal-surface: #ffffff;
  --portal-text: #1A2A3A;
  --portal-muted: #666666;
  --portal-border: #E8E8E8;
  --portal-radius: 12px;
  --portal-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  background: var(--portal-bg);
  color: var(--portal-text);
}

.site-shell.portal.is-home {
  background: var(--portal-bg);
}

.site-shell.portal.is-home #site-main {
  background: transparent;
  color: var(--portal-text);
}

.site-shell.portal #site-main {
  padding: 0 0 64px;
}

.site-shell.portal:not(.is-home) #site-main {
  padding-top: 32px;
}

.site-shell.portal .site-wrap {
  max-width: 1200px;
}

.site-shell.portal {
  scroll-padding-top: 80px;
}

.site-shell.portal header {
  background: color-mix(in srgb, #fff 92%, transparent);
  border-bottom: 1px solid var(--portal-border);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
}

.site-shell.portal .site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 10px 0;
}

.site-shell.portal .site-nav .logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--portal-text);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.site-shell.portal .site-nav .logo em {
  font-style: normal;
  color: #fff;
  background: var(--portal-brand);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.site-shell.portal .logo-mark {
  background: transparent;
}

.site-shell.portal .site-nav .logo .logo-img {
  height: 48px;
}

.site-shell.portal .nav-drawer {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.site-shell.portal .nav-drawer-head,
.site-shell.portal .nav-mobile-actions {
  display: none;
}

.site-shell.portal .nav-primary {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-shell.portal .nav-primary>li {
  position: relative;
}

.site-shell.portal .nav-primary>li>a,
.site-shell.portal .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  padding: 8px 12px;
  border: 0;
  background: none;
  color: var(--portal-muted);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.site-shell.portal .nav-primary>li>a:hover,
.site-shell.portal .nav-trigger:hover {
  color: var(--portal-text);
  background: #F5F6FA;
}

.site-shell.portal .nav-primary>li>a.on,
.site-shell.portal .nav-trigger.on {
  color: var(--portal-brand);
}

.site-shell.portal .nav-mega,
.site-shell.portal .nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  background: #fff;
  border: 1px solid var(--portal-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.site-shell.portal .nav-item.is-open>.nav-mega,
.site-shell.portal .nav-item.is-open>.nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.site-shell.portal .nav-mega {
  width: min(640px, 86vw);
  padding: 16px;
}

.site-shell.portal .nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.site-shell.portal .nav-mega-grid a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  color: var(--portal-text);
  min-height: 48px;
  transition: background 180ms ease;
}

.site-shell.portal .nav-mega-grid a:hover {
  background: var(--orange-l);
}

.site-shell.portal .nav-mega-grid .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-l);
  color: var(--portal-brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.site-shell.portal .nav-mega-grid b {
  display: block;
  font-size: 14px;
}

.site-shell.portal .nav-mega-grid i {
  font-style: normal;
  font-size: 12px;
  color: var(--portal-muted);
}

.site-shell.portal .nav-mega-foot {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--portal-border);
}

.site-shell.portal .nav-panel {
  min-width: 220px;
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.site-shell.portal .nav-panel a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--portal-text);
  font-size: 14px;
}

.site-shell.portal .nav-panel a:hover,
.site-shell.portal .nav-panel a.on {
  background: var(--orange-l);
  color: var(--portal-brand-dark);
}

.site-shell.portal .nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-shell.portal .nav-text {
  border: 0;
  background: none;
  color: var(--portal-muted);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 8px;
}

.site-shell.portal .nav-text:hover {
  color: var(--portal-text);
}

.site-shell.portal .nav-lang {
  position: relative;
}

.site-shell.portal .nav-lang .nav-panel {
  left: auto;
  right: 0;
}

.site-shell.portal .nav-icon-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.site-shell.portal .nav-scrim {
  display: none;
}

.site-shell.portal .menu-btn {
  display: none;
}

body.nav-lock {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1081px) {

  .site-shell.portal .nav-item:hover>.nav-mega,
  .site-shell.portal .nav-item:hover>.nav-panel,
  .site-shell.portal .nav-item:focus-within>.nav-mega,
  .site-shell.portal .nav-item:focus-within>.nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .site-shell.portal .nav-mega,
  .site-shell.portal .nav-panel {
    transition: none;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-shell.portal .nav-drawer {
    display: none;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 92vw);
    background: #fff;
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 16px 24px;
    overflow: auto;
    box-shadow: var(--shadow-xl);
  }

  .site-shell.portal .nav-drawer.open {
    display: flex;
  }

  .site-shell.portal .nav-drawer-head,
  .site-shell.portal .nav-mobile-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-shell.portal .nav-mobile-actions {
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
  }

  .site-shell.portal .nav-mobile-actions .btn {
    flex: 1;
  }

  .site-shell.portal .nav-primary {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 12px;
  }

  .site-shell.portal .nav-primary>li>a,
  .site-shell.portal .nav-trigger {
    min-height: 48px;
    width: 100%;
    justify-content: space-between;
  }

  .site-shell.portal .nav-mega,
  .site-shell.portal .nav-panel {
    position: static;
    width: auto;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    display: none;
  }

  .site-shell.portal .nav-item.is-open>.nav-mega {
    display: block;
    pointer-events: auto;
  }

  .site-shell.portal .nav-item.is-open>.nav-panel {
    display: flex;
    pointer-events: auto;
  }

  .site-shell.portal .nav-mega-grid {
    grid-template-columns: 1fr;
  }

  .site-shell.portal .menu-btn {
    display: grid;
  }

  .site-shell.portal .nav-login,
  .site-shell.portal .nav-auth {
    display: none;
  }

  .site-shell.portal .nav-scrim:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(26, 42, 58, 0.4);
    z-index: 40;
  }
}

.site-shell.portal .btn {
  background: var(--portal-brand);
  color: #fff;
}

.site-shell.portal .btn:hover {
  background: var(--portal-brand-dark);
}

.site-shell.portal .btn.ghost,
.site-shell.portal .btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.site-shell.portal .btn.ghost:hover {
  background: var(--orange-l);
  border-color: var(--portal-brand);
  color: var(--portal-brand-dark);
}

.site-shell.portal .btn.navy {
  background: var(--navy);
  color: #fff;
}

.site-shell.portal .taxi-hero .btn.ghost,
.site-shell.portal .fleet-hero .btn.ghost,
.site-shell.portal .biz-hero .btn.ghost,
.site-shell.portal .lp-cta .btn.ghost {
  color: #FFB347;
  border-color: #FFB347;
  background: transparent;
}

.site-shell.portal .taxi-hero .btn.ghost:hover,
.site-shell.portal .fleet-hero .btn.ghost:hover,
.site-shell.portal .biz-hero .btn.ghost:hover,
.site-shell.portal .lp-cta .btn.ghost:hover {
  background: rgba(255, 140, 0, .16);
  color: #fff;
  border-color: #FFB347;
}

.site-shell.portal .menu-btn {
  background: #fff;
  color: var(--portal-text);
  border: 1px solid var(--portal-border);
}

.site-shell.portal a:focus-visible,
.site-shell.portal button:focus-visible {
  outline: 2px solid var(--portal-brand);
  outline-offset: 3px;
}

.site-shell.portal .card {
  background: var(--portal-surface);
  border: 1px solid var(--portal-border);
  border-radius: var(--portal-radius);
  box-shadow: var(--portal-shadow);
}

.site-shell.portal footer {
  background: #fff;
  color: var(--portal-muted);
  border-top: 1px solid var(--portal-border);
}

.site-shell.portal footer a {
  color: var(--navy);
  display: inline;
  margin: 0;
}

.site-shell.portal footer a:hover {
  color: var(--portal-brand);
}

.site-shell.portal .portal-foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 32px 0;
}

.site-shell.portal .foot-logo {
  margin-bottom: 12px;
}

.site-shell.portal .foot-logo .logo-img {
  height: 56px;
}

.site-shell.portal .portal-foot-grid h4 {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--portal-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-shell.portal .portal-foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-shell.portal .portal-foot-grid li {
  margin-bottom: 6px;
  font-size: 14px;
}

.site-shell.portal .portal-foot-grid a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 48px;
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--portal-brand-dark);
  background: var(--orange-l);
  border: 1px solid rgba(255, 140, 0, .28);
  padding: 6px 12px;
  border-radius: 999px;
}

.lp-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 16px 0 16px;
  font-weight: 800;
}

.lp-hero .lead {
  color: var(--portal-muted);
  font-size: 17px;
  max-width: 520px;
  line-height: 1.65;
}

.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  color: var(--navy-2);
  font-size: 13px;
}

.lp-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp-phone {
  width: 280px;
  height: 560px;
  margin: 0 auto;
  border-radius: 36px;
  padding: 12px;
  background: #0e1720;
  box-shadow: 0 30px 60px rgba(26, 42, 58, .28);
}

.lp-phone-screen {
  height: 100%;
  border-radius: 26px;
  background: #F5F6FA;
  padding: 20px 16px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-phone-bar {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-phone-bar .logo-img {
  height: 28px;
}

.lp-phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lp-phone-grid div {
  background: #fff;
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 10px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lp-phone-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--portal-shadow);
  font-size: 14px;
}

.lp-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-biz-grid .card {
  padding: 20px 18px;
  min-height: 148px;
  transition: box-shadow 200ms ease;
}

.lp-biz-grid .card:hover {
  box-shadow: var(--shadow-md);
}

.lp-biz-grid .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--portal-brand);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.lp-city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.lp-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-partners span {
  min-width: 120px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--portal-border);
  text-align: center;
  font-size: 13px;
}

.lp-news {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp-news .card {
  padding: 16px 18px;
}

.lp-phone-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--portal-brand);
  letter-spacing: -0.03em;
}

.lp-phone-cta {
  margin-top: auto;
  background: linear-gradient(180deg, #FF8C00, #E67A00);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 14px;
  font-weight: 700;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.lp-stats .card {
  padding: 16px 18px;
}

.lp-stats span {
  font-size: 13px;
  color: var(--portal-muted);
}

.lp-stats b {
  display: block;
  font-size: 28px;
  margin-top: 6px;
  letter-spacing: -0.03em;
}

.lp-section {
  margin: 48px 0;
}

.lp-section h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.lp-section .lp-sub {
  color: var(--portal-muted);
  margin-bottom: 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-grid .card {
  padding: 22px 18px;
  min-height: 168px;
  transition: box-shadow 200ms ease;
}

.why-grid .card:hover {
  box-shadow: var(--shadow-md);
}

.why-grid .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--portal-brand);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.home-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-matrix-grid li {
  margin: 0;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--portal-border);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.banner-carousel {
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.carousel-track {
  display: flex;
  transition: transform 400ms ease;
}

.carousel-slide {
  min-width: 100%;
  height: 280px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 48px;
}

.slide-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 10px;
  font-weight: 800;
  color: #fff;
}

.slide-content p {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 20px;
  color: #fff;
}

.slide-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .22);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
}

.slide-btn {
  display: inline-flex;
  background: #fff;
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  min-height: 44px;
  align-items: center;
}

.carousel-controls {
  position: absolute;
  bottom: 20px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: 0;
  cursor: pointer;
  padding: 0;
  min-width: 8px;
  min-height: 8px;
}

.carousel-dots .dot.active {
  background: #fff;
  width: 22px;
  border-radius: 999px;
}

.carousel-live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lp-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-quotes .card {
  background: #fff;
}

.lp-quotes blockquote {
  margin: 0;
  font-style: italic;
  color: #666;
  line-height: 1.65;
}

.lp-quote-who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.lp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}

.lp-stars {
  color: #FAAD14;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 8px;
}

.lp-cta {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-cta h2 {
  color: #fff;
  margin: 0 0 8px;
  font-size: 28px;
}

.lp-cta p {
  color: #c5d0db;
  margin: 0;
}

.biz-page .h2 {
  margin: 36px 0 14px;
}

.biz-page .lead {
  color: var(--portal-muted, var(--muted));
  font-size: 17px;
  max-width: 720px;
  line-height: 1.7;
  margin: 12px 0 20px;
}

.biz-intro {
  padding: 8px 0 8px;
}

.biz-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 20px;
}

.biz-filters .pill {
  min-height: 40px;
  padding: 8px 16px;
  font-weight: 600;
}

.biz-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.biz-card {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 200ms ease;
}

.biz-card:hover {
  box-shadow: var(--shadow-md);
}

.biz-card .h2 {
  margin: 0;
}

.biz-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.biz-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.biz-card-top .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--portal-brand, var(--orange));
  display: grid;
  place-items: center;
}

.biz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.biz-tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--navy);
}

.biz-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.biz-crumb {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 16px;
}

.biz-crumb a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.biz-crumb a:hover {
  color: var(--orange);
}

.biz-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 12px;
}

.biz-hero .h1 {
  color: #fff;
  margin: 12px 0 8px;
}

.biz-hero .lead {
  color: #c5d0db;
  max-width: none;
}

.biz-hero .muted {
  color: #9aa8b8;
}

.biz-hero .lp-kicker {
  background: rgba(255, 140, 0, .16);
  color: #FFB347;
  border-color: rgba(255, 140, 0, .35);
}

.biz-hero-visual {
  min-height: 220px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 140, 0, .35), transparent 42%),
    linear-gradient(160deg, #243447, #15202b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
}

.biz-hero-visual .ico {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(255, 140, 0, .18);
  color: #FF8C00;
  display: grid;
  place-items: center;
}

.biz-hero-visual .ico.logo-plate {
  width: auto;
  height: auto;
  background: #fff;
  border-radius: 12px;
  padding: 0;
}

.biz-hero-visual .ico.logo-plate .logo-img {
  height: 120px;
}

.biz-scenes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.biz-scenes span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff14;
  color: #fff;
  font-size: 13px;
}

.biz-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.biz-process li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
}

.biz-process b {
  color: var(--orange);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.biz-process span {
  color: var(--navy);
  line-height: 1.5;
}

.biz-price {
  padding: 22px 24px;
}

.biz-price p {
  color: var(--muted);
  line-height: 1.7;
  margin: 8px 0 0;
}

.biz-join {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.biz-join .card {
  padding: 20px 18px;
}

.biz-join ul,
.biz-join ol {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.biz-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.biz-related .card {
  padding: 18px;
  transition: box-shadow 200ms ease;
}

.biz-related .card:hover {
  box-shadow: var(--shadow-md);
}

.biz-related .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.biz-related p {
  margin: 6px 0 0;
}

.taxi-page section[id],
.taxi-page .taxi-block {
  scroll-margin-top: 88px;
}

.taxi-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 140, 0, .28), transparent 36%),
    linear-gradient(165deg, #1A2A3A 0%, #243447 55%, #15202b 100%);
  color: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  margin-bottom: 8px;
}

.taxi-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
  font-weight: 800;
}

.taxi-hero .lead {
  color: #c5d0db;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.7;
}

.taxi-hero .lp-kicker {
  background: rgba(255, 140, 0, .16);
  color: #FFB347;
  border-color: rgba(255, 140, 0, .35);
}

.taxi-hero .taxi-trust {
  color: #d5deea;
}

.taxi-hero .site-cta {
  margin-top: 24px;
}

.taxi-hero-demo {
  display: flex;
  justify-content: center;
}

.taxi-phone {
  transform: none;
}

.taxi-route {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  display: grid;
  gap: 12px;
  box-shadow: var(--portal-shadow);
}

.taxi-route div {
  display: grid;
  grid-template-columns: 14px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
}

.taxi-route i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  grid-row: 1 / span 2;
}

.taxi-route i.end {
  background: var(--navy);
}

.taxi-route b {
  font-size: 14px;
  color: var(--navy);
}

.taxi-route span {
  font-size: 11px;
  color: var(--muted);
}

.taxi-vchips {
  display: flex;
  gap: 6px;
}

.taxi-vchips span {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
}

.taxi-vchips span.on {
  background: var(--orange);
  color: #fff;
}

.taxi-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}

.taxi-jump .pill {
  min-height: 40px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.taxi-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 8px 0 8px;
}

.taxi-stats .card {
  padding: 16px 18px;
}

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

.taxi-stats b {
  display: block;
  font-size: 28px;
  margin-top: 6px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.taxi-block {
  margin-top: 8px;
}

.taxi-vehicles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.taxi-vehicles .card {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}

.taxi-vehicles .card:hover {
  box-shadow: var(--shadow-md);
}

.taxi-vehicles .h2 {
  margin: 0;
  font-size: 18px;
}

.taxi-vehicles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  font-size: 13px;
}

.taxi-vehicles b {
  color: var(--orange);
  font-size: 14px;
}

.taxi-vehicles .btn {
  margin-top: 6px;
  min-height: 40px;
}

.taxi-v-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.taxi-v-top .ico,
.taxi-bento .ico,
.taxi-safety .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
}

.taxi-vehicles .is-featured {
  border: 2px solid var(--orange);
  background: var(--orange-l);
}

.taxi-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.taxi-bento .card {
  padding: 22px 20px;
  transition: box-shadow 200ms ease;
}

.taxi-bento .card:hover {
  box-shadow: var(--shadow-md);
}

.taxi-bento .h2,
.taxi-safety .h2 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.taxi-bento p,
.taxi-safety p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.taxi-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.taxi-process li {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 128px;
}

.taxi-process b {
  color: var(--orange);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.taxi-process span {
  color: var(--navy);
  line-height: 1.5;
}

.taxi-fare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 12px;
}

.taxi-fare-grid div {
  background: var(--bg);
  border-radius: 12px;
  padding: 14px 16px;
}

.taxi-fare-grid span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.taxi-fare-grid b {
  display: block;
  font-size: 24px;
  color: var(--orange);
  margin: 6px 0 4px;
  letter-spacing: -0.03em;
}

.taxi-fare-grid em {
  font-style: normal;
  font-size: 12px;
  color: var(--navy);
}

.taxi-safety,
.taxi-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.taxi-quotes {
  grid-template-columns: 1fr 1fr;
}

.taxi-safety .card,
.taxi-quotes .card {
  padding: 22px 20px;
}

.taxi-quotes p {
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin: 12px 0;
}

.taxi-quotes b {
  display: block;
}

.taxi-quotes .muted {
  font-size: 13px;
}

.fleet-page section[id],
.fleet-page .taxi-block,
.fleet-page .site-form {
  scroll-margin-top: 88px;
}

.fleet-page .h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fleet-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 140, 0, .28), transparent 36%),
    linear-gradient(165deg, #1A2A3A 0%, #243447 55%, #15202b 100%);
  color: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  margin-bottom: 8px;
}

.fleet-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
  font-weight: 800;
}

.fleet-hero .lead {
  color: #c5d0db;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.7;
}

.fleet-hero .muted {
  color: #9aa8b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-hero .lp-kicker {
  background: rgba(255, 140, 0, .16);
  color: #FFB347;
  border-color: rgba(255, 140, 0, .35);
}

.fleet-hero .taxi-trust {
  color: #d5deea;
}

.fleet-hero .site-cta {
  margin-top: 24px;
}

.fleet-hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fleet-hero-demo {
  display: flex;
  justify-content: center;
}

.fleet-dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fleet-dash-stats div {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
}

.fleet-dash-stats span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.fleet-dash-stats b {
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.fleet-page .taxi-stats .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.fleet-need-grid,
.fleet-rights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.fleet-need-grid .card,
.fleet-rights .card,
.fleet-mode-grid .card {
  padding: 22px 20px;
  transition: box-shadow 200ms ease;
}

.fleet-need-grid .card:hover,
.fleet-rights .card:hover,
.fleet-mode-grid .card:hover {
  box-shadow: var(--shadow-md);
}

.fleet-need-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.fleet-need-top .h2 {
  margin: 0;
}

.fleet-rights .h2,
.fleet-mode-grid .h2 {
  margin: 12px 0 0;
}

.fleet-need-top .ico,
.fleet-rights .ico,
.fleet-mode-grid .ico,
.fleet-process .ico,
.fleet-page .h2>.ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.fleet-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.fleet-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.fleet-check-list .ico {
  color: var(--orange);
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  margin-top: 2px;
}

.fleet-mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fleet-mode-grid p,
.fleet-rights p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.fleet-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.fleet-process li {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
}

.fleet-process b {
  color: var(--orange);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.fleet-process span {
  color: var(--navy);
  line-height: 1.45;
}

.fleet-revenue,
.fleet-extra {
  margin: 8px 0 0;
}

.fleet-page .site-form {
  max-width: none;
  padding: 28px;
}

.fleet-form-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.fleet-form-head .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.fleet-form-head .h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.fleet-form-head .muted {
  margin: 0;
}

.fleet-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.fleet-form-sec h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--navy);
}

.fleet-sec-ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
}

.fleet-field-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
}

.fleet-req {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-l);
  border-radius: 999px;
  padding: 1px 7px;
}

.fleet-field-wrap {
  position: relative;
  display: block;
  margin-top: 6px;
}

.fleet-field-ico {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  pointer-events: none;
  display: grid;
  place-items: center;
}

.fleet-field-wrap.is-area .fleet-field-ico {
  top: 14px;
  transform: none;
}

.fleet-field-wrap .input {
  padding-left: 40px;
}

.join-field-wrap,
.fleet-field-wrap {
  overflow: visible;
}

.join-field-wrap:hover,
.join-field-wrap:focus-within,
.fleet-field-wrap:hover,
.fleet-field-wrap:focus-within {
  z-index: 5;
}

.join-field-hint {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 6;
  width: max-content;
  max-width: min(100%, 360px);
  padding: 8px 12px;
  border-radius: 10px;
  background: #1A2A3A;
  color: #fff;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(26, 42, 58, 0.22);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.join-field-hint::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -6px;
  border: 6px solid transparent;
  border-bottom-color: #1A2A3A;
  border-top-width: 0;
}

.join-field-wrap:hover .join-field-hint,
.join-field-wrap:focus-within .join-field-hint,
.fleet-field-wrap:hover .join-field-hint,
.fleet-field-wrap:focus-within .join-field-hint {
  opacity: 1;
  transform: none;
}

.join-field-wrap .input[aria-invalid="true"],
.fleet-field-wrap .input[aria-invalid="true"] {
  border-color: #FF8C00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.16);
}

.join-field-miss {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #E67A00;
  font-weight: 600;
}

.join-page .driver-form {
  max-width: none;
  padding: 28px;
}

.join-page .driver-form .fleet-form-foot .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}

.fleet-form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.fleet-form-foot .muted {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.fleet-form-foot .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}

.form-errors .err-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-decoration: underline;
}

.form-errors .err-link:hover {
  color: var(--orange);
}

.fleet-page .btn svg,
.fleet-page .lp-kicker svg {
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .fleet-hero {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .fleet-need-grid,
  .fleet-mode-grid,
  .fleet-form-grid,
  .fleet-rights,
  .fleet-process {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .fleet-page .taxi-phone {
    display: none;
  }

  .fleet-need-grid,
  .fleet-mode-grid,
  .fleet-form-grid,
  .fleet-rights,
  .fleet-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .taxi-hero {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .taxi-vehicles,
  .taxi-process,
  .taxi-stats,
  .taxi-fare-grid,
  .taxi-safety {
    grid-template-columns: 1fr 1fr;
  }

  .taxi-bento,
  .taxi-quotes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .taxi-phone {
    display: none;
  }

  .taxi-vehicles,
  .taxi-process,
  .taxi-stats,
  .taxi-fare-grid,
  .taxi-safety,
  .taxi-bento,
  .taxi-quotes {
    grid-template-columns: 1fr;
  }
}

.join-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 8px 0 28px;
}

.join-stats .card {
  padding: 16px 18px;
}

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

.join-stats b {
  display: block;
  font-size: 28px;
  margin-top: 6px;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.join-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.join-need-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.join-need-grid .card {
  padding: 20px 18px;
}

.join-need-grid .h2,
.join-role-grid .h2 {
  margin: 0 0 10px;
}

.join-need-list,
.join-need-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.join-role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.join-role-grid .card {
  padding: 20px 18px;
  transition: box-shadow 200ms ease;
}

.join-role-grid .card:hover {
  box-shadow: var(--shadow-md);
}

.join-page .site-form {
  max-width: 720px;
  padding: 24px;
  scroll-margin-top: 88px;
}

.join-page .site-form.driver-form,
.join-page .site-form.join-apply-form {
  max-width: none;
  padding: 28px;
}

.form-errors {
  background: #FFF2F0;
  border: 1px solid #FFCCC7;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  color: var(--navy);
}

.form-errors.is-warm {
  background: #FFF8F0;
  border-color: #FFD8A8;
}

.form-errors.is-warm .h2 {
  color: var(--navy);
}

.form-errors.is-warm .muted {
  margin: 0 0 8px;
}

.form-errors .h2 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--danger);
}

.form-errors ul {
  margin: 0;
  padding-left: 18px;
}

.form-errors a {
  color: var(--navy);
  font-weight: 600;
}

.form-errors:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.input[aria-invalid="true"] {
  border-color: var(--orange);
}

.about-page section[id] {
  scroll-margin-top: 88px;
}

.about-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}

.about-jump .pill {
  min-height: 40px;
  padding: 8px 14px;
  font-weight: 600;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 12px;
}

.about-story-card {
  padding: 24px 22px;
}

.about-story-card .h2 {
  margin-top: 0;
}

.about-story-card p {
  color: var(--muted);
  line-height: 1.7;
}

.about-story-points {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.about-story-points div {
  display: grid;
  gap: 4px;
}

.about-story-points b {
  color: var(--orange);
  font-size: 14px;
}

.about-story-points span {
  color: var(--navy);
  line-height: 1.55;
}

.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.about-mv .card {
  padding: 22px 20px;
}

.about-mv b {
  display: block;
  font-size: 22px;
  margin: 8px 0;
  letter-spacing: -0.02em;
}

.about-mv p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--orange);
}

.about-timeline li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 0 0 24px 20px;
  position: relative;
}

.about-timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-l);
}

.about-timeline b {
  color: var(--orange);
  font-size: 15px;
}

.about-timeline strong {
  display: block;
  margin-bottom: 4px;
}

.about-timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-team .card {
  padding: 22px 18px;
  transition: box-shadow 200ms ease;
}

.about-team .card:hover {
  box-shadow: var(--shadow-md);
}

.about-team p {
  color: var(--muted);
  line-height: 1.6;
  margin: 8px 0 0;
}

.about-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
}

.about-certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-certs .card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-certs .pill {
  align-self: flex-start;
  background: var(--orange-l);
  color: var(--navy);
  font-weight: 700;
}

.about-contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.about-contact-cards {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.about-contact-cards .card {
  padding: 16px 18px;
}

.about-contact-cards .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

.about-contact-cards b {
  display: block;
  margin: 4px 0;
}

.about-map {
  height: 220px;
  margin: 0;
}

.about-page .site-form {
  max-width: none;
  padding: 24px;
}

.news-search {
  max-width: 480px;
  margin: 8px 0 4px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 200ms ease;
}

.news-card:hover {
  box-shadow: var(--shadow-md);
}

.news-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-card-body b {
  font-size: 16px;
  line-height: 1.4;
  color: var(--navy);
}

.news-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.news-cover {
  min-height: 120px;
  display: grid;
  place-items: end start;
  padding: 14px 16px;
  background: linear-gradient(160deg, #243447, #1A2A3A);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.news-cover.lg {
  min-height: 200px;
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 14px;
}

.news-cover.orange {
  background: linear-gradient(160deg, #FF8C00, #E67A00);
}

.news-cover.navy {
  background: linear-gradient(160deg, #2C4058, #1A2A3A);
}

.news-cover.slate {
  background: linear-gradient(160deg, #3D5166, #1A2A3A);
}

.news-cover.mist {
  background: linear-gradient(160deg, #5A6B7C, #2C4058);
}

.news-cover.ink {
  background: linear-gradient(160deg, #1A2A3A, #0E1720);
}

.news-article {
  max-width: 760px;
}

.news-meta {
  color: var(--muted);
  margin: 8px 0 16px;
}

.news-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.news-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--body, #333);
  margin: 0 0 18px;
}

.jobs-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 8px 0 24px;
}

.jobs-benefits .card {
  padding: 18px 16px;
}

.jobs-benefits .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.jobs-benefits .h2 {
  margin: 0 0 6px;
  font-size: 16px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.job-card {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 200ms ease;
}

.job-card:hover {
  box-shadow: var(--shadow-md);
}

.job-card .h2 {
  margin: 0;
  font-size: 18px;
}

.job-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.job-pay,
.job-hero-pay {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.job-hero-pay {
  font-size: 28px;
  margin: 12px 0 0;
}

.jobs-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.jobs-detail-grid .site-form {
  max-width: none;
  padding: 24px;
  scroll-margin-top: 88px;
}

.jobs-detail-grid ul {
  margin: 0 0 8px;
}

@media (max-width: 1080px) {

  .biz-catalog,
  .biz-join,
  .biz-related,
  .biz-process,
  .join-catalog,
  .join-need-grid,
  .join-role-grid,
  .join-stats,
  .about-team,
  .about-certs,
  .news-grid,
  .jobs-grid,
  .jobs-benefits,
  .cs-channel-grid,
  .cs-faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .biz-hero {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .about-split,
  .about-mv,
  .about-contact,
  .jobs-detail-grid,
  .cs-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {

  .biz-catalog,
  .biz-join,
  .biz-related,
  .biz-process,
  .join-catalog,
  .join-need-grid,
  .join-role-grid,
  .join-stats,
  .about-team,
  .about-certs,
  .news-grid,
  .jobs-grid,
  .jobs-benefits,
  .cs-channel-grid,
  .cs-faq-grid,
  .cs-promise {
    grid-template-columns: 1fr;
  }

  .about-timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.home-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.home-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--portal-border);
  background: #fff;
  color: var(--navy);
  font-weight: 600;
}

.home-quick-links a:hover {
  border-color: var(--portal-brand);
  color: var(--portal-brand-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 350ms ease, transform 350ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .carousel-track {
    transition: none;
  }
}

@media (max-width: 1080px) {

  .lp-hero,
  .lp-stats,
  .why-grid,
  .lp-quotes,
  .home-matrix-grid,
  .lp-biz-grid,
  .lp-news {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-slide {
    padding: 0 24px;
    height: 240px;
  }
}

@media (max-width: 720px) {

  .lp-hero,
  .lp-stats,
  .why-grid,
  .lp-quotes,
  .home-matrix-grid,
  .lp-biz-grid,
  .lp-news {
    grid-template-columns: 1fr;
  }

  .lp-phone {
    display: none;
  }

  .lp-hero {
    padding: 32px 0 24px;
  }

  .city-map-leaf {
    height: min(360px, 58vh) !important;
    min-height: 240px;
  }

  .cover-legend {
    left: 16px;
    right: auto;
    bottom: 12px;
  }
}

html.locale-ug,
html[dir="rtl"] {
  --font: var(--font-ug);
  --font-display: var(--font-ug);
  font-size: 16px;
  line-height: 1.7;
}

html.locale-ug body,
html[dir="rtl"] body,
body.uyghur-locale {
  font-family: var(--font-ug);
}

html.locale-ug .h1,
html.locale-ug .h2,
html.locale-ug .logo,
html.locale-ug .btn,
html.locale-ug .card,
html.locale-ug .pill,
html.locale-ug .tag,
html[dir="rtl"] .h1,
html[dir="rtl"] .h2,
html[dir="rtl"] .logo,
html[dir="rtl"] .btn,
html[dir="rtl"] .card {
  font-family: var(--font-ug);
}

html.locale-ug table,
html.locale-ug .table-wrap,
html.locale-ug pre,
html.locale-ug code,
html.locale-ug .order-no,
html.locale-ug input[inputmode="numeric"],
html.locale-ug input[inputmode="decimal"],
html.locale-ug input[type="tel"],
html[dir="rtl"] table,
html[dir="rtl"] .table-wrap,
html[dir="rtl"] pre,
html[dir="rtl"] code,
html[dir="rtl"] .order-no {
  font-family: var(--font-data);
}

html[dir="rtl"] .nav .back svg,
html[dir="rtl"] .cs-back {
  transform: scaleX(-1);
}

html[dir="rtl"] .map,
html[dir="rtl"] .nav-mini,
html[dir="rtl"] .map-box,
html[dir="rtl"] .letter-rail,
html[dir="rtl"] .otp,
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[inputmode="numeric"],
html[dir="rtl"] input[inputmode="decimal"] {
  direction: ltr;
  unicode-bidi: isolate;
}

.lang-picker {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.lang-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  min-height: 48px;
  cursor: pointer;
  width: 100%;
  text-align: start;
}

.lang-opt.on {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.lang-opt b {
  flex: 1;
  min-width: 0;
  white-space: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.lang-opt span {
  flex-shrink: 0;
  max-width: 42%;
  white-space: normal;
  text-align: end;
}

html.locale-ru .h2,
html.locale-ru .me-row,
html.locale-ru .city-row b {
  overflow-wrap: anywhere;
}

.country-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 4px;
  -webkit-overflow-scrolling: touch;
}

.country-chips .pill {
  flex: 0 0 auto;
  min-height: 48px;
}

.city-region {
  margin-top: 8px;
}

.city-region summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}

.switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-bottom: 10px;
}

.traffic-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}

.lang-select {
  width: auto;
  min-height: 36px;
  padding: 4px 10px;
}

.dl-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  cursor: pointer;
  background:
    radial-gradient(120px 80px at 100% 0%, rgba(255, 140, 0, .35), transparent 70%),
    linear-gradient(135deg, #1A2A3A 0%, #24384c 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.dl-home .h2 {
  color: #fff;
}

.dl-home p {
  margin-top: 4px;
  font-size: 12px;
  color: #ffd9a8;
}

.dl-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.dl-home-actions,
.dl-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dl-chip {
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dl-chip.android {
  background: #E8F8EE;
  color: #1A2A3A;
}

.dl-home .dl-chip.android {
  background: #fff;
}

.dl-chip.ghost {
  background: #ffffff22;
  color: #fff;
}

.dl-products {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

.dl-product {
  padding: 14px 0 4px;
  border-top: 1px solid #e6ebf1;
}

.dl-product:first-child {
  border-top: 0;
  padding-top: 0;
}

.dl-product-head {
  margin-bottom: 10px;
}

.dl-product-head .h2 {
  margin: 0 0 4px;
}

.ops-app-pair {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

@media (min-width: 960px) {
  .ops-app-pair {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.ops-app-pair > .card {
  margin: 0;
  box-shadow: none;
  border: 1px solid #e6ebf1;
}

.dl-hero {
  margin: 12px 0;
  padding: 18px 16px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(180px 120px at 90% 10%, rgba(255, 140, 0, .28), transparent 60%),
    linear-gradient(165deg, #1A2A3A 0%, #2C4058 100%);
}

.dl-hero .h1 {
  color: #fff;
  font-size: 28px;
  margin: 4px 0;
}

.dl-hero p {
  color: #c5d0db;
  font-size: 13px;
}

.dl-hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dl-device {
  width: 72px;
  height: 112px;
  flex-shrink: 0;
  border-radius: 14px;
  padding: 5px;
  background: #0e1720;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.dl-device-screen {
  height: 100%;
  border-radius: 10px;
  background: #F5F6FA;
  color: var(--navy);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
}

.dl-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 8px 0 4px;
  color: var(--orange);
}

.dl-stars span {
  color: #ffd9a8;
  font-size: 12px;
  margin-left: 4px;
}

.dl-ver {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff18;
  color: #fff;
  font-size: 12px;
}

.dl-hint {
  margin-top: 12px;
  font-size: 12px;
  color: #ffd9a8;
}

.dl-tabs {
  margin: 4px 0 12px;
}

.dl-tabs .pill.on {
  background: var(--navy);
  color: #fff;
}

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

.dl-grid.one {
  grid-template-columns: 1fr;
}

.dl-store {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dl-store.off {
  opacity: .55;
}

.dl-store-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dl-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}

.dl-store.android .dl-badge {
  background: #3DDC84;
  color: #1A2A3A;
}

.dl-qr-wrap {
  text-align: center;
}

.dl-qr {
  width: 168px;
  height: 168px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.dl-qr svg,
.dl-qr img {
  width: 148px;
  height: 148px;
  display: block;
}

.dl-notes {
  font-size: 13px;
  color: var(--body);
  line-height: 1.55;
}

.dl-foot {
  margin: 16px 4px 0;
  text-align: center;
}

.ops-app-wrap {
  display: grid;
  gap: 12px;
}

.ops-app-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ops-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 180px;
  gap: 10px 12px;
  align-items: start;
}

.ops-app-grid label {
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.ops-app-grid .ops-span {
  grid-column: 1 / 3;
}

.ops-qr-col {
  grid-column: 3;
  grid-row: 1 / span 5;
  text-align: center;
}

.ops-qr-col .dl-qr {
  width: 160px;
  height: 160px;
}

.ops-qr-col .dl-qr svg,
.ops-qr-col .dl-qr img {
  width: 140px;
  height: 140px;
}

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

  .ops-app-grid,
  .ops-app-grid .ops-span,
  .ops-qr-col {
    grid-column: 1;
    grid-row: auto;
  }

  .ops-app-grid {
    grid-template-columns: 1fr;
  }
}

.site-modal .dl-grid {
  margin: 12px 0;
  grid-template-columns: 1fr;
}

.site-modal .dl-store {
  box-shadow: none;
  border: 1px solid var(--line);
}

.site-modal .card {
  width: min(480px, 100%);
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(480px, 1.08fr);
  min-height: calc(100vh - 88px);
  background: #F5F6FA;
}

.auth-brand {
  background:
    radial-gradient(640px 320px at 20% 0%, rgba(255, 140, 0, .28), transparent 58%),
    linear-gradient(165deg, #1A2A3A 0%, #243447 70%, #3a2a18 160%);
  color: #fff;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-brand .logo-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 28px;
}

.auth-brand .logo-img {
  height: 120px;
}

.auth-brand h2 {
  color: #fff;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.auth-brand p {
  color: #d7e0ea;
  max-width: 420px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.auth-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 440px;
}

.auth-brand-list span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
  color: #ffd9a8;
}

.auth-brand .cv-copy {
  margin-top: 40px;
  color: #9aa8b6;
}

.auth-panel {
  display: grid;
  place-items: center;
  padding: 48px 40px;
}

.auth-card {
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid var(--portal-border, #e8edf2);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--portal-shadow, 0 8px 24px rgba(26, 42, 58, .06));
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.auth-tabs a {
  flex: 1;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
  background: #F5F6FA;
}

.auth-tabs a[aria-selected="true"] {
  background: var(--navy);
  color: #fff;
}

.auth-tabs a:hover {
  box-shadow: var(--shadow-md);
}

.auth-card h1 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.auth-card .lead {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.auth-card .site-field {
  margin-top: 14px;
}

.auth-card .captcha-row,
.auth-card .sms-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
}

.auth-card .captcha-row .input,
.auth-card .sms-row .input {
  flex: 1;
  min-width: 0;
}

.auth-card .captcha-img {
  flex: 0 0 120px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #1A2A3A;
  cursor: pointer;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.auth-card .captcha-img:hover {
  box-shadow: var(--shadow-md);
}

.auth-card .captcha-img svg {
  display: block;
}

.auth-card .captcha-hint {
  margin: 6px 0 0;
  font-size: 12px;
}

.auth-card .auth-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--navy);
}

.auth-card .auth-agree input {
  margin-top: 3px;
}

.auth-card .btn.lg.block {
  width: 100%;
  margin-top: 20px;
}

.auth-card .auth-switch {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
}

.auth-card .form-errors.is-ok {
  background: #F6FFED;
  border-color: #B7EB8F;
}

.auth-card .form-errors.is-ok .h2 {
  color: #237804;
}

.auth-card .err-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
}

.site-nav .nav-user {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  transition: color 0.15s ease;
}
.site-nav .nav-user:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .auth-page {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auth-brand {
    padding: 36px 24px 28px;
  }

  .auth-brand h2 {
    font-size: 28px;
  }

  .auth-panel {
    padding: 24px 16px 48px;
    align-items: start;
  }
}

/* —— Download landing (/download/) —— */
.dl-landing {
  margin: 0;
  min-height: 100vh;
  background: #0e1720;
  color: #fff;
  font-family: "Noto Sans SC", "UKIJ CJK", sans-serif;
}

.dl-landing .skip-link {
  position: absolute;
  left: -999px;
}

.dl-landing .skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 40;
  background: #fff;
  color: var(--navy);
  padding: 8px 12px;
}

.dl-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: rgba(14, 23, 32, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dl-top-brand .logo-lockup {
  color: #fff;
}

.dl-top-brand .logo-lockup em {
  color: #ffd9a8;
  font-style: normal;
  margin-left: 8px;
  font-weight: 600;
}

.dl-top-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.dl-top-nav > a {
  color: #c5d0db;
  text-decoration: none;
  font-size: 14px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.dl-top-nav > a:hover {
  color: #fff;
}

.dl-top-nav .btn {
  color: #fff;
}

.dl-lang {
  position: relative;
}

.dl-lang-btn {
  min-height: 44px;
  min-width: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dl-lang-btn:hover,
.dl-lang.open .dl-lang-btn {
  border-color: var(--orange);
  background: rgba(255, 140, 0, 0.12);
}

.dl-lang-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.dl-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 168px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(14, 23, 32, 0.22);
  z-index: 30;
}

.dl-lang-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.dl-lang-menu a:hover,
.dl-lang-menu a.on {
  background: #fff4e8;
  color: var(--orange);
}

html[dir="rtl"] .dl-top-brand .logo-lockup em,
html[dir="rtl"] .dl-landing-brand .logo-lockup em {
  margin-left: 0;
  margin-right: 8px;
}

.dl-landing-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  overflow: hidden;
  padding: 48px 6vw 56px;
  isolation: isolate;
}

.dl-landing-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(255, 140, 0, 0.28), transparent 58%),
    radial-gradient(700px 480px at 88% 70%, rgba(74, 106, 138, 0.35), transparent 55%),
    linear-gradient(165deg, #1A2A3A 0%, #0e1720 55%, #152433 100%);
  animation: dlHeroGlow 10s ease-in-out infinite alternate;
}

@keyframes dlHeroGlow {
  from { filter: saturate(1); }
  to { filter: saturate(1.15); }
}

.dl-landing-hero-inner {
  max-width: 560px;
  padding-bottom: 24px;
  animation: dlRise 0.7s ease both;
}

@keyframes dlRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.dl-landing-brand {
  margin-bottom: 18px;
}

.dl-landing-brand .logo-lockup {
  color: #fff;
}

.dl-landing-brand .logo-lockup em {
  color: #ffd9a8;
  font-style: normal;
  margin-left: 10px;
  font-size: 1.15em;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.dl-landing-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.dl-landing-hero p {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #c5d0db;
  max-width: 34rem;
}

.dl-landing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dl-landing-ctas .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.dl-landing-ctas .btn.ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.dl-landing-device {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: dlPhoneIn 0.9s 0.15s ease both;
}

@keyframes dlPhoneIn {
  from { opacity: 0; transform: translateY(36px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dl-landing-phone {
  width: min(280px, 42vw);
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #2a3a4c, #0a1018);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dl-landing-screen {
  height: 100%;
  border-radius: 28px;
  background:
    radial-gradient(120px 80px at 70% 20%, rgba(255, 140, 0, 0.35), transparent 70%),
    linear-gradient(180deg, #F5F6FA 0%, #e8edf3 100%);
  display: grid;
  place-items: center;
  color: var(--navy);
}

.dl-landing-main {
  background: var(--bg);
  color: var(--text);
  padding: 36px 6vw 64px;
  scroll-margin-top: 80px;
}

.dl-landing-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.dl-landing-hint {
  margin: 0 0 18px;
}

.dl-landing-list {
  display: grid;
  gap: 28px;
  max-width: 1100px;
}

.dl-landing-product-head h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  color: var(--navy);
}

.dl-landing-product-head p {
  margin: 0 0 14px;
  color: var(--muted);
}

.dl-landing-stores {
  display: grid;
  gap: 14px;
}

@media (min-width: 820px) {
  .dl-landing-stores {
    grid-template-columns: 1fr 1fr;
  }
}

.dl-landing-store {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dl-landing-store:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.dl-landing-store-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dl-landing-store h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}

.dl-landing-store .muted {
  margin: 2px 0 0;
  font-size: 13px;
}

.dl-landing-store.android .dl-badge {
  background: #e8f5e9;
  color: #2e7d32;
}

.dl-landing-foot {
  background: #0e1720;
  color: #9aabbc;
  text-align: center;
  padding: 28px 16px 40px;
  font-size: 13px;
}

.dl-landing-foot a {
  color: #ffd9a8;
  text-decoration: none;
}

.dl-landing-foot a:hover {
  text-decoration: underline;
}

/* —— 服务端 / 司机端 详细功能对比报告 —— */
.dl-compare {
  background: var(--bg);
  color: var(--text);
  padding: 0 6vw 72px;
}
.dl-compare-inner {
  max-width: 1100px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.dl-compare-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.dl-compare-ico {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), #f0912a);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.dl-compare-head h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  color: var(--navy);
}
.dl-compare-head .muted {
  margin: 0;
  font-size: 13px;
}
.dl-compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.dl-compare-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
}
.dl-compare-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.dl-compare-table thead th:nth-child(1) {
  width: 15%;
}
.dl-compare-table thead th:nth-child(2),
.dl-compare-table thead th:nth-child(3) {
  width: 42.5%;
}
.dl-compare-table .dl-cmp-cat-head th {
  background: linear-gradient(180deg, rgba(240, 145, 42, 0.12), rgba(240, 145, 42, 0.04));
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 9px 16px;
  position: relative;
}
.dl-cmp-cat-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #f0912a);
  margin-right: 8px;
}
.dl-compare-table th[scope="row"] {
  text-align: left;
  padding: 13px 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f0912a);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  vertical-align: top;
}
.dl-compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  vertical-align: top;
  line-height: 1.5;
}

.dl-compare-table tbody tr:last-child th,
.dl-compare-table tbody tr:last-child td {
  border-bottom: none;
}
.dl-compare-table tbody tr:hover td {
  background: rgba(240, 145, 42, 0.05);
}
.dl-compare-table tbody tr:hover th[scope="row"] {
  background: linear-gradient(135deg, #f0912a, var(--orange));
}
.dl-cmp-cell {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}
.dl-cmp-mark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}
.dl-cmp-mark svg {
  display: block;
}
.dl-cmp-mark.full {
  background: #e6f4ea;
  color: #1e7e3c;
  border: 1px solid #c2e5cc;
}
.dl-cmp-mark.part {
  background: #fff4de;
  color: #a86a00;
  border: 1px solid #f6dfae;
}
.dl-cmp-mark.none {
  background: #eef1f5;
  color: #8695a6;
  border: 1px solid #dfe5eb;
}
.dl-cmp-text {
  font-size: 13.5px;
}
.dl-cmp-text.strong {
  font-weight: 700;
  color: var(--navy);
}
.dl-compare-note {
  margin: 16px 0 0;
  font-size: 12.5px;
}

@media (max-width: 640px) {
  .dl-compare-inner {
    padding: 18px 14px;
  }
  .dl-compare-head {
    flex-direction: column;
  }
  .dl-compare-ico {
    width: 44px;
    height: 44px;
  }
  .dl-compare-head h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 860px) {
  .dl-landing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 20px 40px;
    gap: 28px;
  }

  .dl-landing-device {
    order: -1;
  }

  .dl-landing-phone {
    width: min(200px, 55vw);
  }

  .dl-top-nav > a:not(.btn) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dl-landing-hero-bg,
  .dl-landing-hero-inner,
  .dl-landing-device,
  .dl-landing-store {
    animation: none !important;
    transition: none !important;
  }
}

/* —— H5 用户端欢迎页 / 浅色登录 —— */
.app-splash {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: default;
}
.app-splash[hidden] { display: none !important; }
.app-splash-logo {
  position: relative;
  width: min(72vw, 280px);
  height: min(72vw, 280px);
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.app-splash-sun {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 8deg, rgba(255, 140, 0, 0.42) 0 3deg, transparent 3deg 36deg);
  filter: blur(0.2px);
  animation: splash-spin 24s linear infinite;
  pointer-events: none;
}
.app-splash-sun::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.2), transparent 70%);
}
.app-splash-logo img {
  position: relative;
  z-index: 1;
  width: 72%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(255, 140, 0, 0.25));
}
.app-splash p {
  margin: 8px 0 0;
  color: var(--body);
  font-size: 16px;
  font-weight: 500;
}
@keyframes splash-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .app-splash-sun { animation: none; }
}

.login-light {
  height: 100%;
  background: var(--bg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.login-light .login-brand {
  text-align: center;
  margin-bottom: 8px;
}
.login-light .login-brand img { height: 72px; width: auto; }
.login-light .login-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 8px 0 4px;
}
.login-light .login-sub {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 24px;
}
.login-light .field-row {
  height: 48px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #D0D8E0;
  border-radius: 8px;
  margin-bottom: 12px;
}
.login-light .field-row:focus-within { border-color: var(--orange); border-width: 1.5px; }
.login-light .field-row select,
.login-light .field-row input {
  border: 0;
  background: transparent;
  min-height: 46px;
  font-size: 15px;
}
.login-light .otp input {
  background: #fff;
  color: var(--navy);
  border: 1px solid #D0D8E0;
}
.login-light .otp input:focus { border-color: var(--orange); }
.login-light .agree-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  color: var(--placeholder);
  margin: 16px 0 8px;
}
.diamond .ico { color: var(--orange); }
.phone .nav {
  background: #fff;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.phone .nav b { color: var(--navy); }
.phone .nav .back { color: var(--navy); }
.phone .nav .back:hover { background: var(--orange-l); }

/* —— H5 /app/ UI UX Pro Max（品牌色锁定，轻玻璃 + Swiss） —— */
.phone {
  --h5-radius: 16px;
  --h5-pad: 16px;
  font-family: var(--font);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  letter-spacing: -0.011em;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.phone .phone-body {
  background:
    radial-gradient(420px 180px at 100% -40px, rgba(255, 140, 0, 0.08), transparent 70%),
    var(--bg);
}

.phone .pad {
  padding: 10px 16px calc(20px + env(safe-area-inset-bottom));
}

.phone .h1 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: -0.035em;
  color: var(--navy);
}

.phone .h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: var(--lh-title);
  letter-spacing: -0.02em;
  color: var(--navy);
}

.phone .muted {
  font-size: var(--fs-sm);
  line-height: var(--lh-muted);
}

.phone .price {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.phone p {
  line-height: var(--lh-body);
}

html.locale-ru .phone,
html.locale-ru .phone .h1,
html.locale-ru .phone .h2,
html.locale-ru .phone .nav b {
  letter-spacing: 0;
}

html.locale-ru .phone .h1 {
  font-size: 22px;
  line-height: 1.28;
}

.phone .nav {
  min-height: 56px;
  padding: 6px 8px 6px 4px;
  padding-top: max(6px, env(safe-area-inset-top));
  background: color-mix(in srgb, var(--card) 86%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.phone .nav .back {
  min-width: 48px;
  min-height: 48px;
  border-radius: 12px;
  gap: 2px;
  padding: 0 8px;
}

.phone .nav b {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.phone .tabbar {
  min-height: 56px;
  padding-top: 6px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--card) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  box-shadow: 0 -8px 24px rgba(26, 42, 58, 0.06);
}

.phone .tabbar button {
  gap: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  min-height: 48px;
  border-radius: 12px;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease;
}

.phone .tabbar button:active {
  opacity: 0.72;
}

.phone .tabbar button.on {
  color: var(--orange);
  background: var(--orange-l);
  font-weight: 700;
}

.phone .btn {
  min-height: 48px;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.phone .btn.sm {
  min-height: 40px;
  height: 40px;
  border-radius: 10px;
}

.phone .btn.lg {
  border-radius: 14px;
  letter-spacing: 0.02em;
}

.phone .btn.link {
  min-height: 44px;
  height: auto;
  padding: 8px 10px;
  box-shadow: none;
  background: transparent;
}

.phone .btn:active:not(:disabled) {
  opacity: 0.86;
}

.phone .card {
  border-radius: var(--h5-radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm, var(--shadow));
  padding: 12px 14px;
}

.phone .card:has(.map),
.phone .card:has(.amap-host) {
  padding: 10px;
}

.phone .card:active:not(:has(.map)) {
  opacity: 0.96;
}

.phone .input {
  font-size: 16px;
  border-radius: 12px;
  min-height: 48px;
  border-color: var(--line);
}

.phone .input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}

.phone .list-item {
  min-height: 52px;
  align-items: center;
  padding: 10px 2px;
  border-radius: 12px;
  gap: 10px;
  transition: background 160ms ease;
}

.phone .list-item .h2 {
  font-size: 15px;
}

.phone .list-item .muted {
  margin-top: 2px;
}

.phone .list-item:active {
  background: var(--orange-l);
}

.phone .pill {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.phone .kind-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.phone .kind-tabs::-webkit-scrollbar {
  display: none;
}

.phone .kind-tabs .pill {
  flex: 0 0 auto;
}

.phone .sheet {
  padding-top: 10px;
}

.phone .ride-full .sheet::before {
  content: "";
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 99px;
  background: var(--line);
  margin: 4px auto 12px;
}

.phone .modal-mask {
  background: rgba(13, 21, 32, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.phone .modal-sheet {
  border-radius: 20px 20px 0 0;
  padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
}

.phone .toast {
  bottom: 96px;
  padding: 10px 16px;
  font-size: 13px;
  box-shadow: var(--shadow-lg);
}

.phone .grid-5 {
  gap: 10px 6px;
}

.phone .diamond .ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #fff6eb 100%);
  box-shadow: 0 6px 16px rgba(26, 42, 58, 0.08);
  color: var(--orange);
}

.phone .diamond:active .ico {
  opacity: 0.82;
}

.phone .diamond span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.phone .search {
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: none;
}

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

.phone .home-head .avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.phone .city-head {
  cursor: pointer;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phone .city-head .h2 {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone .icon-btn,
.phone .bell {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--card);
  color: var(--navy);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  position: relative;
}

.phone .banner {
  min-height: 112px;
  border-radius: 18px;
  padding: 18px 16px;
}

.phone .quick-grid .btn {
  min-height: 44px;
  font-size: 13px;
}

.phone .shop-thumb {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.phone .shop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone .sec-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 16px 0 8px;
}

.phone .me-hero {
  border-radius: 20px;
  padding: 20px 16px 16px;
  box-shadow: 0 12px 28px rgba(26, 42, 58, 0.18);
}

.phone .me-hero .me-avatar {
  width: 64px;
  height: 64px;
  overflow: hidden;
  color: #fff;
}

.phone .me-grid .cell {
  min-height: 76px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 4px;
  font: inherit;
  color: inherit;
}

.phone .me-grid .ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: inherit;
}

.phone .me-row {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 2px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.phone .me-row:last-child {
  border-bottom: 0;
}

.phone .me-row .left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.phone .me-row .left .ph-icon {
  color: var(--orange);
  flex-shrink: 0;
}

.phone .order-card {
  margin-bottom: 12px;
}

.phone .order-card .row {
  gap: 10px;
}

.phone .msg-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--orange-l);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.phone .login-light {
  min-height: 100%;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
}

.phone .login-light .login-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.phone .login-light .otp input {
  min-height: 48px;
  font-size: 20px;
}

.phone .agree-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
}

/* —— 登录页 UI UX Pro Max：品牌 Hero + 玻璃卡片 —— */
.login-light .login-hero {
  position: relative;
  text-align: center;
  margin: -28px -24px 20px;
  padding: 30px 24px 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #1677FF 0%, #4096FF 100%);
}
.login-light .login-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(240px 120px at 18% -20px, rgba(255, 255, 255, 0.35), transparent 70%),
    radial-gradient(280px 150px at 100% -30px, rgba(255, 204, 128, 0.35), transparent 70%);
}
.login-light .login-hero .login-brand { position: relative; margin-bottom: 10px; }
.login-light .login-hero .login-brand img {
  height: 84px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(20, 40, 80, 0.28));
}
.login-light .login-hero .login-title {
  position: relative;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 4px 0 6px;
  text-shadow: 0 2px 8px rgba(10, 30, 60, 0.25);
}
.login-light .login-hero .login-sub {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}
.login-light .login-hero .login-tag {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
}
.login-light .login-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(20, 40, 80, 0.08);
  padding: 16px;
  margin: 0 0 4px;
}
.login-light .login-card .field-row {
  background: var(--card-alt, #f7f9fb);
  border-radius: 12px;
  height: 52px;
}
.login-light .login-card .field-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 14px;
  color: var(--orange);
}
.login-light .login-card .field-row select,
.login-light .login-card .field-row input {
  min-height: 50px;
}
.login-light .login-card .oauth-demo {
  display: flex;
  gap: 6px;
  background: var(--card-alt, #f2f5f8);
  border-radius: 12px;
  padding: 4px;
}
.login-light .login-card .oauth-demo span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--placeholder);
  cursor: pointer;
  transition: all 0.18s ease;
}
.login-light .login-card .oauth-demo span.on {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 2px 8px rgba(20, 40, 80, 0.1);
  font-weight: 700;
}
.login-light .login-card .chan-ic { display: inline-flex; }
.login-light .login-card .btn.lg {
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(230, 122, 0, 0.28);
}
.login-light .login-card .carrier .carrier-ic { display: inline-flex; color: var(--orange); }
.login-light .login-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 6px;
  font-size: 12px;
  color: var(--placeholder);
}
.login-light .login-trust .trust-ic { display: inline-flex; color: #34a853; }

[data-theme="dark"] .login-light .login-card {
  background: #1b2530;
  border-color: #2a3644;
}
[data-theme="dark"] .login-light .login-card .field-row,
[data-theme="dark"] .login-light .login-card .oauth-demo {
  background: #232f3c;
}
[data-theme="dark"] .login-light .login-card .oauth-demo span.on {
  background: #2c3a49;
  color: var(--orange);
}

@media (max-width: 600px) {
  .login-light .login-hero { margin: -28px -20px 18px; }
}

.phone .empty-state {
  padding: 56px 20px;
}

.phone .addr-box {
  min-height: 56px;
}

@media (hover: hover) and (pointer: fine) {
  .phone .tabbar button:hover {
    background: var(--orange-l);
  }
  .phone .list-item:hover,
  .phone .me-row:hover,
  .phone .me-grid .cell:hover {
    background: color-mix(in srgb, var(--orange-l) 70%, var(--card));
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone .banner-track,
  .phone .tabbar button,
  .phone .btn,
  .phone .list-item,
  .phone .diamond .ico {
    transition: none !important;
  }
}

[data-theme="dark"] .phone .diamond .ico {
  background: linear-gradient(180deg, #24384c, #1A2A3A);
}

[data-theme="dark"] .phone .tabbar button.on {
  background: rgba(255, 140, 0, 0.16);
}

[data-theme="dark"] .phone .shop-thumb,
[data-theme="dark"] .phone .me-grid .ico,
[data-theme="dark"] .phone .msg-ico {
  background: rgba(255, 140, 0, 0.16);
}

.phone button.pill {
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--card);
  color: inherit;
}

.phone button.pill.on {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-l);
}

.phone :focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.phone .hist-item {
  min-height: 48px;
  align-items: center;
  gap: 8px;
}

.phone .hist-item button[data-word] {
  flex: 1;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
}

.phone .veh-card {
  min-width: 124px;
  min-height: 108px;
  padding: 12px;
  border-radius: 16px;
}

.phone .wait-top,
.phone .track-top {
  background: color-mix(in srgb, var(--card) 90%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.phone .food-sticky {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.phone .food-merchant {
  border-radius: 16px;
  border: 1px solid var(--line);
}

.phone .food-merchant:active {
  opacity: 0.92;
  transform: none;
}

.phone .dish-thumb {
  border-radius: 14px;
  color: var(--orange);
  background: var(--orange-l);
  overflow: hidden;
}

.phone .dish-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone .dish-add {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
}

.phone .shop-hero .shop-hero-mark {
  font-size: inherit;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.phone .shop-hero .shop-hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone .oauth-acc {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  min-height: 64px;
  margin-top: 8px;
}

.phone .login-light .field-row {
  min-height: 52px;
  border-radius: 14px;
}

.phone .me-set {
  background: var(--card);
  border-radius: var(--h5-radius);
  border: 1px solid var(--line);
  padding: 4px 12px;
}

.phone .tag.navy {
  background: transparent;
  color: var(--navy, #1A2A3A);
  border: 1px solid var(--navy, #1A2A3A);
}

.phone .tag.retail {
  background: transparent;
  color: #FF8C00;
  border: 1px solid #FF8C00;
}

.phone .trade-cover {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #FFF3E0;
  color: #FF8C00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- 用户详情弹层 ---- */
.ud-overlay { position: fixed; inset: 0; background: rgba(9, 14, 26, 0.55); display: flex; align-items: flex-start; justify-content: center; padding: 6vh 4vw; z-index: 1200; backdrop-filter: blur(2px); overflow: auto; }
.ud-box { background: var(--bg, #fff); border-radius: 18px; width: 100%; max-width: 880px; box-shadow: 0 24px 70px rgba(0,0,0,0.28); overflow: hidden; }
.ud-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line, #e7ecf3); position: sticky; top: 0; background: var(--bg, #fff); z-index: 2; }
.ud-body { padding: 18px 20px 24px; max-height: 76vh; overflow: auto; }
.ud-box .card { border-radius: 14px; }
.btn.danger { background: #e03131; border-color: #e03131; color: #fff; }

