/* 鲜视运 · 官网/帮助中心 公共样式
   与 xsy-download/assets/css/style.css 同一套设计令牌（--brand #0080F5 等），改品牌色只改 :root。
   零外部依赖：不引字体/CDN，断网也能看，审核与内网环境都稳。 */
:root {
  --brand: #0080F5;
  --brand-dark: #0068CC;
  --brand-soft: rgba(0, 128, 245, .1);
  --bg: #F0F4F8;
  --card: #FFFFFF;
  --text: #1A1D21;
  --text-2: #374151;
  --muted: #6B7280;
  --line: #EBEEF2;
  --warn: #F3AF2B;
  --ok: #00A870;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(16, 34, 56, .04), 0 6px 18px rgba(16, 34, 56, .05);
  --wrap: 760px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { background: var(--bg); scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.65 -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px calc(32px + env(safe-area-inset-bottom));
}

/* ---------- 顶栏 ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__logo { width: 30px; height: 30px; border-radius: 8px; flex: none; }
.topbar__name { font-size: 15px; font-weight: 600; letter-spacing: .2px; white-space: nowrap; }
.topbar__nav { margin-left: auto; display: flex; gap: 14px; font-size: 13.5px; }
.topbar__nav a { color: var(--text-2); }
@media (max-width: 420px) { .topbar__nav { gap: 10px; font-size: 12.5px; } }

/* ---------- Hero ---------- */
.hero {
  margin: 16px 0 0;
  padding: 22px 20px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #0080F5 0%, #1E93FF 55%, #43A8FF 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.hero__kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255, 255, 255, .2);
}
.hero__title { margin: 0 0 8px; font-size: 22px; line-height: 1.35; font-weight: 700; letter-spacing: .2px; }
.hero__sub { margin: 0; font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, .9); }
.hero__actions { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- 区块 ---------- */
.sec { margin-top: 22px; }
.sec__title { margin: 0 0 4px; font-size: 17px; font-weight: 600; }
.sec__desc { margin: 0 0 12px; font-size: 13px; color: var(--muted); }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card + .card { margin-top: 12px; }
.card__title { margin: 0 0 6px; font-size: 15.5px; font-weight: 600; }
.card__text { margin: 0; font-size: 13.5px; color: var(--text-2); }

.grid { display: grid; gap: 12px; }
@media (min-width: 620px) { .grid--2 { grid-template-columns: 1fr 1fr; } }

/* 能力卡 */
.feature { display: flex; gap: 12px; }
.feature__icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon svg { width: 20px; height: 20px; }
.feature__t { margin: 0 0 3px; font-size: 15px; font-weight: 600; }
.feature__d { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s, background .15s;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(0, 128, 245, .22); }
.btn--primary:active { background: var(--brand-dark); }
.btn--outline { background: #fff; color: var(--brand); border: 1px solid rgba(0, 128, 245, .45); }
.btn--on-hero { background: #fff; color: var(--brand); }
.btn--on-hero-outline { background: rgba(255, 255, 255, .14); color: #fff; border: 1px solid rgba(255, 255, 255, .55); }
.btn--block { width: 100%; }
.btn--lg { min-height: 52px; font-size: 16.5px; }
.btn--tel { font-variant-numeric: tabular-nums; letter-spacing: .3px; }
.btn__icon { width: 18px; height: 18px; flex: none; }

/* ---------- 联系方式卡 ---------- */
.contact { background: var(--card); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.contact__label { margin: 0 0 2px; font-size: 12.5px; color: var(--muted); }
.contact__phone { margin: 0 0 4px; font-size: 21px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: .5px; }
.contact__meta { margin: 0 0 14px; font-size: 13px; color: var(--text-2); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- 提示条 ---------- */
.notice {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.6;
}
.notice--info { background: var(--brand-soft); color: #0B4C86; border: 1px solid rgba(0, 128, 245, .22); }
.notice--warn { background: rgba(243, 175, 43, .12); color: #8A5B00; border: 1px solid rgba(243, 175, 43, .45); }
.notice__icon { flex: none; width: 18px; height: 18px; margin-top: 2px; }
.notice p { margin: 0; }

/* ---------- FAQ ---------- */
.faq-group { background: var(--card); border-radius: var(--radius); padding: 6px 16px; box-shadow: var(--shadow); }
.faq-group + .faq-group { margin-top: 12px; }
.faq-group__title {
  margin: 14px 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .4px;
}
.faq { border-top: 1px solid var(--line); padding: 12px 0; }
.faq:first-of-type { border-top: 0; }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding-right: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
}
.faq[open] summary::after { content: "−"; }
.faq[open] summary { color: var(--brand); }
.faq__body { margin: 8px 0 2px; font-size: 13.5px; color: var(--text-2); }
.faq__body p { margin: 0 0 6px; }
.faq__body p:last-child { margin-bottom: 0; }
.faq__body ol, .faq__body ul { margin: 0 0 6px; padding-left: 20px; }
.faq__body li { margin-bottom: 3px; }
.faq__body code {
  font-size: 12.5px;
  background: var(--bg);
  padding: 1px 5px;
  border-radius: 5px;
  color: var(--text-2);
}

/* ---------- 步骤 ---------- */
.steps { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.steps__item { display: flex; gap: 10px; }
.steps__no {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps__t { margin: 0 0 2px; font-size: 14px; font-weight: 600; }
.steps__d { margin: 0; font-size: 13px; color: var(--muted); }

/* ---------- 视频列表 ---------- */
.video-list { display: grid; gap: 12px; }
@media (min-width: 620px) { .video-list { grid-template-columns: 1fr 1fr; } }
.video { display: flex; gap: 12px; align-items: center; }
.video__thumb {
  flex: none;
  width: 92px;
  height: 62px;
  border-radius: var(--radius-sm);
  background: var(--bg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.video__thumb svg { width: 24px; height: 24px; }
.video__t { margin: 0 0 3px; font-size: 14.5px; font-weight: 600; }
.video__d { margin: 0; font-size: 12.5px; color: var(--muted); }

/* ---------- 页脚 ---------- */
.foot { margin-top: 26px; text-align: center; }
.foot__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; font-size: 13px; margin-bottom: 8px; }
.foot__links a { color: var(--text-2); }
.foot__support { margin: 0 0 4px; font-size: 13px; color: var(--text-2); }
.foot__support a { font-variant-numeric: tabular-nums; }
.foot__copyright { margin: 0; font-size: 11.5px; color: #9AA0A6; line-height: 1.7; }

/* ---------- 工具 ---------- */
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
[hidden] { display: none !important; }
@media (max-width: 340px) {
  body { font-size: 14px; }
  .hero__title { font-size: 19px; }
}

/* =========================================================================
   官网（面向货主/车队的公开站点）—— 所有规则限定在 body.pg 下
   帮助中心 / 视频教程页不加 .pg，完全不受这里影响。
   ========================================================================= */
.pg { background: #fff; }
.pg a:hover { text-decoration: none; }
.pg .wrapw { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- 顶栏 ---------- */
.tb { position: sticky; top: 0; z-index: 30; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.tb__in { max-width: 1120px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; gap: 14px; }
.tb__brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.tb__logo { width: 34px; height: 34px; border-radius: 9px; flex: none; }
.tb__name { font-size: 16px; font-weight: 700; letter-spacing: .2px; }
.tb__tag { font-size: 12px; color: var(--muted); border-left: 1px solid var(--line); padding-left: 10px; margin-left: 2px; }
.tb__nav { margin-left: auto; display: none; gap: 26px; font-size: 14.5px; }
.tb__nav a { color: var(--text-2); font-weight: 500; }
.tb__nav a:hover { color: var(--brand); }
.tb__nav a[aria-current="page"] { color: var(--brand); }
.tb__cta { display: none; }
.tb__menu { margin-left: auto; position: relative; }
.tb__menu summary { list-style: none; cursor: pointer; width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.tb__menu summary::-webkit-details-marker { display: none; }
.tb__menu summary span { display: block; width: 16px; height: 1.8px; background: var(--text-2); border-radius: 2px; }
.tb__menu[open] summary { border-color: var(--brand); }
.tb__drop { position: absolute; right: 0; top: 48px; min-width: 190px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 30px rgba(16, 34, 56, .12); padding: 8px; display: flex; flex-direction: column; }
.tb__drop a { padding: 11px 12px; border-radius: 9px; font-size: 14.5px; color: var(--text-2); }
.tb__drop a:hover { background: var(--bg); color: var(--brand); }
@media (min-width: 900px) {
  .tb__nav { display: flex; }
  .tb__cta { display: inline-flex; }
  .tb__menu { display: none; }
}
@media (max-width: 720px) { .tb__tag { display: none; } }

/* ---------- Hero ---------- */
.hero-pg { position: relative; overflow: hidden; padding: 48px 0 36px; background: linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 100%); }
.hero-pg::after { content: ""; position: absolute; z-index: 0; right: -160px; top: -180px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 128, 245, .14) 0%, rgba(0, 128, 245, 0) 68%); }
.hero-pg__in { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; padding: 0 20px; display: grid; gap: 32px; }
@media (min-width: 960px) { .hero-pg__in { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; } }
.hk { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: var(--brand-soft); color: #0B4C86; font-size: 12.5px; font-weight: 600; }
.h1 { margin: 16px 0 14px; font-size: 30px; line-height: 1.28; font-weight: 800; letter-spacing: -.2px; }
.h1 em { font-style: normal; color: var(--brand); }
.lead { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--text-2); max-width: 560px; }
.hbtns { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.hnote { margin: 14px 0 0; font-size: 12.5px; color: var(--muted); }
@media (min-width: 900px) { .h1 { font-size: 40px; } .lead { font-size: 17px; } }

/* 手机视觉 */
.vis { display: flex; justify-content: center; }
.vis__phone { position: relative; width: 250px; }
.vis__phone img { display: block; width: 100%; height: auto; border-radius: 26px; box-shadow: 0 24px 50px rgba(16, 34, 56, .18); }
.vis__chip { position: absolute; background: #fff; border-radius: 14px; padding: 10px 14px; box-shadow: 0 12px 28px rgba(16, 34, 56, .14); font-size: 12.5px; font-weight: 600; color: var(--text-2); white-space: nowrap; }
.vis__chip b { display: block; font-size: 15px; color: var(--text); }
.vis__chip--a { left: -34px; top: 22%; }
.vis__chip--b { right: -30px; bottom: 16%; }
@media (max-width: 780px) { .vis__chip { display: none; } .vis__phone { width: 210px; } }

/* ---------- 事实条 ---------- */
.facts { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); margin-top: 36px; padding-top: 22px; }
@media (min-width: 900px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.facts__i b { display: block; font-size: 15.5px; font-weight: 700; margin-bottom: 3px; }
.facts__i span { font-size: 12.5px; color: var(--muted); }

/* ---------- 区块 ---------- */
.band { padding: 52px 0; }
.band--soft { background: #F6F9FD; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band--dark { background: #0E1726; }
.band__hd { max-width: 720px; margin-bottom: 28px; }
.band--ct { text-align: center; }
.band--ct .band__hd { margin-left: auto; margin-right: auto; }
.h2 { margin: 0 0 10px; font-size: 24px; line-height: 1.35; font-weight: 800; letter-spacing: -.2px; }
.h2--light { color: #fff; }
.band__desc { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted); }
.band--dark .band__desc { color: rgba(255, 255, 255, .72); }
@media (min-width: 900px) { .h2 { font-size: 30px; } }

/* ---------- 能力/场景卡 ---------- */
.cards { display: grid; gap: 16px; }
@media (min-width: 620px) { .cards--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

.fc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.fc:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(0, 128, 245, .35); }
.fc__ic { width: 40px; height: 40px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.fc__ic svg { width: 21px; height: 21px; }
.fc__t { margin: 0 0 7px; font-size: 16.5px; font-weight: 700; }
.fc__d { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--muted); }
.fc__m { margin: 12px 0 0; font-size: 12px; color: var(--text-2); }

/* ---------- 双入口 ---------- */
.entry { display: grid; gap: 16px; }
@media (min-width: 760px) { .entry { grid-template-columns: 1fr 1fr; } }
.entry__c { border-radius: var(--radius); padding: 26px; border: 1px solid var(--line); background: #fff; }
.entry__c--b { background: linear-gradient(150deg, #0080F5 0%, #2E9BFF 100%); border-color: transparent; color: #fff; }
.entry__t { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.entry__d { margin: 0 0 18px; font-size: 14px; line-height: 1.7; color: var(--text-2); }
.entry__c--b .entry__d { color: rgba(255, 255, 255, .9); }
.entry__l { margin: 0 0 18px; padding: 0; list-style: none; font-size: 13.5px; color: var(--text-2); }
.entry__c--b .entry__l { color: rgba(255, 255, 255, .92); }
.entry__l li { position: relative; padding-left: 18px; margin-bottom: 7px; }
.entry__l li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.entry__c--b .entry__l li::before { background: #fff; }

/* ---------- 流程 ---------- */
.flow { display: grid; gap: 20px; counter-reset: st; }
@media (min-width: 700px) { .flow { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .flow { grid-template-columns: repeat(5, 1fr); } }
.flow__s { position: relative; padding-top: 34px; }
.flow__s::before { counter-increment: st; content: counter(st); position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 12.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.flow__s::after { content: ""; position: absolute; left: 32px; top: 11px; right: 8px; height: 1px; background: linear-gradient(90deg, rgba(0, 128, 245, .35), rgba(0, 128, 245, .06)); }
.flow__s:last-child::after { display: none; }
@media (max-width: 699px) { .flow__s::after { left: 32px; right: auto; width: 1px; top: 30px; bottom: -14px; height: auto; background: linear-gradient(180deg, rgba(0, 128, 245, .35), rgba(0, 128, 245, .06)); } }
.flow__t { margin: 0 0 5px; font-size: 15.5px; font-weight: 700; }
.flow__d { margin: 0; font-size: 13px; line-height: 1.65; color: var(--muted); }

/* ---------- 场景（解决方案）---------- */
.sol { display: grid; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.sol:first-of-type { border-top: 0; padding-top: 0; }
@media (min-width: 900px) { .sol { grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; } }
.sol__t { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.sol__d { margin: 0; font-size: 14px; line-height: 1.7; color: var(--text-2); }
.sol__pain { margin: 12px 0 0; padding: 12px 14px; border-radius: var(--radius-sm); background: #FFF7E6; border: 1px solid rgba(243, 175, 43, .4); font-size: 13px; color: #7A5100; line-height: 1.65; }
.sol__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.sol__list li { position: relative; padding-left: 26px; font-size: 14px; line-height: 1.65; color: var(--text-2); }
.sol__list li::before { content: ""; position: absolute; left: 6px; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-soft); border: 2px solid var(--brand); }
.sol__list b { color: var(--text); }

/* ---------- 手机截图 ---------- */
.phones { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .phones { grid-template-columns: repeat(4, 1fr); } }
.ph { text-align: center; }
.ph img { display: block; width: 100%; height: auto; border-radius: 20px; border: 5px solid #10131A; box-shadow: 0 18px 36px rgba(16, 34, 56, .2); }
.ph figcaption { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------- 模块标签 ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chips li { font-size: 12.5px; padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--text-2); }

/* ---------- CTA 条 ---------- */
.cta { border-radius: 20px; padding: 34px 28px; background: linear-gradient(150deg, #0071DC 0%, #0080F5 55%, #3AA6FF 100%); color: #fff; text-align: center; }
.cta__t { margin: 0 0 8px; font-size: 23px; font-weight: 800; }
.cta__d { margin: 0 auto 20px; max-width: 560px; font-size: 14.5px; line-height: 1.7; color: rgba(255, 255, 255, .9); }
.cta__b { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- 页脚 ---------- */
.foot-pg { background: #F6F8FB; border-top: 1px solid var(--line); padding: 40px 0 22px; margin-top: 0; }
.foot-pg__grid { display: grid; gap: 26px; }
@media (min-width: 760px) { .foot-pg__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.foot-pg__t { margin: 0 0 12px; font-size: 13px; font-weight: 700; color: var(--text); }
.foot-pg__l { margin: 0; padding: 0; list-style: none; font-size: 13px; line-height: 2; }
.foot-pg__l a { color: var(--text-2); }
.foot-pg__l a:hover { color: var(--brand); }
.foot-pg__about { margin: 10px 0 0; font-size: 12.5px; line-height: 1.8; color: var(--muted); }
.foot-pg__brand { display: flex; align-items: center; gap: 10px; }
.foot-pg__brand img { width: 34px; height: 34px; border-radius: 9px; }
.foot-pg__brand b { font-size: 15.5px; }
.foot-pg__bottom { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; font-size: 12px; color: #9AA0A6; }
.foot-pg__bottom a { color: #9AA0A6; }
[data-site-hide-if-empty][data-empty="1"] { display: none; }

/* ---------- 内容页 ---------- */
.page-hd { padding: 40px 0 26px; background: linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 100%); border-bottom: 1px solid var(--line); }
.page-hd .lead { max-width: 680px; }
.crumb { font-size: 12.5px; color: var(--muted); margin: 0 0 12px; }
.crumb a { color: var(--muted); }
.mod { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.mod__hd { padding: 14px 18px; background: #F6F9FD; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.mod__hd b { font-size: 15.5px; }
.mod__hd span { font-size: 12px; color: var(--muted); }
.mod__bd { padding: 16px 18px; }
.mod__bd p { margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--text-2); }
.mod__bd p + p { margin-top: 8px; }
.mod__bd .chips { margin-top: 12px; }
.contact-grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: 1.2fr .8fr; } }
.kv { margin: 0; padding: 0; list-style: none; font-size: 14px; }
.kv li { display: flex; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.kv li:last-child { border-bottom: 0; }
.kv b { flex: none; width: 84px; color: var(--muted); font-weight: 500; font-size: 13.5px; }
.kv span { color: var(--text); }
.todo-mark { color: #C2410C; background: #FFF7ED; border: 1px dashed #FDBA74; border-radius: 6px; padding: 0 6px; font-size: 12.5px; }
