/* ============================================================
   MES EQUIPMENT LIMITED · 官网设计系统
   深钢蓝 + 炭黑 + 信号橙 ｜ 工业直角版式 ｜ 工程编号系统
   ============================================================ */

/* 数字/工程字体：纯系统字体栈（无外部请求，弱网/无外网环境秒开）
   Bahnschrift: Win10+ 自带冷凝字体；Arial Narrow: Win/Mac 常见 */

:root {
  /* 工业黑 + 信号黄（参考 MES 广告牌配色） */
  --navy: #1c1c1c;        /* 主深色：深炭黑（深色表面 / 标题 / 表头 / 按钮底） */
  --navy-deep: #0e0e0e;   /* 更深的黑 */
  --navy-line: #34352f;   /* 深色区描边 */
  --accent: #ffc400;      /* 信号黄：主强调色 */
  --accent-dark: #e3aa00; /* 深黄：hover */
  --on-accent: #161616;   /* 黄底之上的文字 / 图标色 */
  --ink: #1a1d21;
  --gray: #5a6470;
  --gray-light: #8b94a0;
  --paper: #f5f5f2;
  --line: #e3e4df;
  --white: #ffffff;
  --num-font: Bahnschrift, "Barlow Condensed", "Arial Narrow", "Liberation Sans Narrow", "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  --success: #1d7a3e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  /* 运营填的长型号（PC7000-8-…）、粘贴的长网址、长邮箱都是不可断的连续串，
     没有这条就会顶破卡片、进而把整页拉出横向滚动条——手机上最明显。
     break-word 只在真的放不下时才断，正常文字排版不受影响。 */
  overflow-wrap: break-word;
}

/* 英文版正文优先西文字体（base.html 输出的是 lang="en"，无 class，故用属性选择器） */
html[lang="en"] body { font-family: "Segoe UI", Arial, "Helvetica Neue", "Microsoft YaHei", sans-serif; }
html[lang="en"] .main-nav a { padding: 0 16px; font-size: 14.5px; }

/* 对视觉隐藏但屏幕阅读器仍能读到（用 clip 而非 display:none，后者会被朗读器跳过） */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* 跳过导航直达正文：平时藏在视口上方，键盘聚焦时滑下来 */
.skip-link {
  position: fixed;
  top: 0; left: 50%;
  transform: translate(-50%, -110%);
  z-index: 999;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  padding: 12px 24px;
  transition: transform 0.16s;
}
.skip-link:focus { transform: translate(-50%, 0); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* 键盘导航焦点环（不影响鼠标点击） */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- 工业纹理 ---------- */
.tex-stripe {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px,
    transparent 1px, transparent 9px
  );
}
.tex-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ============================================================
   顶部信息条
   ============================================================ */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  height: 36px;
  display: flex;
  align-items: center;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.topbar-contacts { display: flex; gap: 28px; }
.topbar-contacts span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-contacts svg { width: 14px; height: 14px; stroke: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-search { display: inline-flex; align-items: center; gap: 6px; }
.topbar-search svg { width: 14px; height: 14px; stroke: var(--accent); }
.topbar-search:hover { color: #fff; }
.topbar-lang { display: flex; gap: 4px; align-items: center; letter-spacing: 0.05em; }
.topbar-lang .lang-on { color: #fff; font-weight: 700; }
.topbar-lang .lang-sep { opacity: 0.35; margin: 0 4px; }
.topbar-lang a:hover { color: #fff; }

/* ============================================================
   主导航
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 46px; width: auto; display: block; }
.footer-brand .brand-logo { height: 44px; }

.main-nav { display: flex; height: 100%; }
.main-nav a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  height: 100%;
  transition: color 0.18s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 22px; right: 22px; bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.on { color: var(--navy); }
.main-nav a.on::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 18px;
  align-self: center;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 14.5px;
  font-weight: 700;
  padding: 11px 22px;
  letter-spacing: 0.04em;
  transition: background 0.18s;
}
.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: background-color 0.2s, transform 0.2s;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { left: 0; top: -6px; }
.nav-toggle span::after { left: 0; top: 6px; }

/* ============================================================
   首页 Hero
   ============================================================ */
.hero {
  background: linear-gradient(118deg, var(--navy-deep) 0%, var(--navy) 58%, #2a2a2a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 48px;
  align-items: center;
  padding: 92px 0 132px;
}
/* 运营没配主图时模板不渲染 .hero-art，两栏收成单栏——否则文案缩在左轨，右轨空白 */
.hero-inner.no-art { grid-template-columns: 1fr; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--num-font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--on-accent);
  background: var(--accent);
  padding: 6px 14px;
  margin-bottom: 26px;
}
.hero-eyebrow::before { content: ""; width: 16px; height: 2px; background: var(--on-accent); }
.hero h1 {
  font-size: 50px;
  line-height: 1.22;
  letter-spacing: -0.015em;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  /* 枚举过渡属性（不用 all）：均为合成/绘制层属性，避免误伤布局属性 */
  transition: background-color 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.btn svg { width: 16px; height: 16px; }
/* 首屏按钮不带 btn-solid / btn-line，改由位置决定：模板只渲染填了文字的按钮，
   所以 DOM 里的 :first-child 就是真正的第一个，不会像 forloop.first 那样指错。 */
.btn-solid,
.hero-actions .btn:first-child { background: var(--accent); color: var(--on-accent); }
.btn-solid:hover,
.hero-actions .btn:first-child:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-line,
.hero-actions .btn:not(:first-child) { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.45); }
.btn-line:hover,
.hero-actions .btn:not(:first-child):hover { box-shadow: inset 0 0 0 1.5px #fff; transform: translateY(-2px); }
/* 箭头全渲染、非首个用 display:none 收掉——它不再是 flex item，.btn 的 gap 也不会多留 */
.hero-actions .btn:not(:first-child) svg { display: none; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* Hero 右侧工程线稿框 / 实拍图框 */
.hero-art { position: relative; min-height: 320px; }
.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  /* 全站唯一没有裁切约束的图位：换成竖版图会按比例撑到七八百像素高，把首屏顶散。
     封顶后 object-fit 负责裁切；横版图算出来才 330 左右，够不到这个上限，观感不变。 */
  max-height: 420px;
  object-fit: cover;
}
.hero-art::before {
  content: "";
  position: absolute;
  right: -12px; top: -12px;
  width: 72px; height: 72px;
  border: 3px solid var(--accent);
}
.hero-art-tag {
  position: absolute;
  left: 0; bottom: -8px;
  font-family: var(--num-font);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
}

/* Hero 底部数据带 */
.hero-stats {
  position: relative;
  /* 勿加 backdrop-filter：深色渐变底上模糊不可辨，滚动时却每帧重合成（卡顿源） */
  background: rgba(0, 0, 0, 0.5);
  border-top: 3px solid var(--accent);
}
.hero-stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 26px 8px 24px;
  text-align: left;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 28px;
}
.stat:first-child { border-left: none; padding-left: 8px; }
.stat-num {
  font-family: var(--num-font);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}
.stat-num sup {
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
  margin-left: 2px;
}
.stat-label { font-size: 13.5px; color: rgba(255, 255, 255, 0.62); margin-top: 6px; letter-spacing: 0.06em; }

/* ============================================================
   内页横幅
   ============================================================ */
.page-hero {
  background: linear-gradient(112deg, var(--navy-deep) 0%, var(--navy) 70%, #2a2a2a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
}
.page-hero-mark {
  position: absolute;
  right: 24px; bottom: -14px;
  font-family: var(--num-font);
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.crumbs {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: 0.5; }
.page-hero h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.01em; }
.page-hero p { margin-top: 12px; color: rgba(255, 255, 255, 0.68); max-width: 640px; font-size: 16px; }

/* ============================================================
   区块与标题系统
   ============================================================ */
.section { padding: 96px 0; }
.section.alt { background: var(--paper); }
.section.dark {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.section-head { margin-bottom: 52px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--num-font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-accent);
  background: var(--accent);
  padding: 5px 12px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 16px; height: 2px; background: var(--on-accent); }
.section.dark .eyebrow { color: var(--on-accent); background: var(--accent); }
.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.section.dark .section-head h2 { color: #fff; }
.section-head .lead { margin-top: 14px; color: var(--gray); max-width: 700px; font-size: 16px; }
.section.dark .section-head .lead { color: rgba(255, 255, 255, 0.66); }
/* ============================================================
   首页 · 简介区
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}
/* 运营没配图时模板会去掉图框，两栏就只剩一栏内容——不收成单栏的话正文会缩在左半边 */
.intro-grid.no-figure { grid-template-columns: 1fr; }
.figure-block { position: relative; }
.figure-ph {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 10px),
    linear-gradient(135deg, #2a2a2a, #0e0e0e);
  min-height: 380px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  /* 图加载失败时浏览器在这里用继承色画 alt 文字，而正文色是近黑、底色也是近黑，
     等于 alt 白写。给深色图位单独定一个浅色，图正常时被图盖住、看不见影响。 */
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-align: center;
  padding: 12px;
}
.figure-ph .ph-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.figure-block::after {
  content: "";
  position: absolute;
  right: -14px; bottom: -14px;
  width: 120px; height: 120px;
  border: 3px solid var(--accent);
  z-index: -1;
}
.figure-cap {
  position: absolute;
  left: -1px; top: -1px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--num-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 8px 14px;
  text-transform: uppercase;
}

/* 段落题用 h2：它是章节级标题，用 h3 会让 h1 后直接跳级 */
.intro-copy h2 { font-size: 26px; font-weight: 800; margin-bottom: 18px; line-height: 1.45; }
.intro-copy h2 em { font-style: normal; color: var(--ink); background-image: linear-gradient(transparent 60%, rgba(255, 196, 0, 0.5) 0); }
h2 em, h3 em { font-style: normal; color: var(--ink); background-image: linear-gradient(transparent 60%, rgba(255, 196, 0, 0.5) 0); }
.section.dark h2 em, .section.dark h3 em, .page-hero h1 em { background-image: none; color: var(--accent); }
.intro-copy p { color: var(--gray); margin-bottom: 16px; }
.intro-points { margin: 26px 0 34px; display: grid; gap: 13px; }
.intro-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink);
}
.intro-points li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  background: var(--accent);
  margin-top: 9px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 15.5px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}
/* 原实现 hover 改 gap(8→14px) 会逐帧触发布局；
   改为箭头 transform 平移 6px，位移观感一致且只走合成层 */
.text-link svg { transition: transform 0.18s; }
.text-link:hover svg { transform: translateX(6px); }

/* ============================================================
   产品卡
   ============================================================ */
/* 自适应列数：列宽下限按「内容区 1176px + gap 24px」倒推，落在 (216, 276] 才能保证
   桌面仍是 4 列、且第 5 张不会挤进同一行。240 取区间中段，留足两侧余量。
   列数改由容器宽度决定后，原先手写的 1080/640 两档断点就不需要了。

   必须是 auto-fill 而不是 auto-fit：auto-fit 会折叠空轨道，卡片删到 2 张时
   剩下两张会被拉成两倍宽（576px）；auto-fill 保留空轨道，始终维持 276px。 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  padding: 34px 28px 30px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--accent);
  box-shadow: var(--shadow);
}
.product-card .p-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: 22px;
  padding: 12px;
  background: var(--accent);
  color: var(--on-accent);
}
.product-card:hover .p-icon { background: var(--accent-dark); color: var(--on-accent); }
.product-card .p-icon svg { width: 100%; height: 100%; }
.product-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.product-card .p-en {
  font-family: var(--num-font);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gray-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-card p { font-size: 14.5px; color: var(--gray); flex: 1; }
.product-card .p-more {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.product-card:hover .p-more { color: var(--navy); }

/* ============================================================
   编号优势卡
   ============================================================ */
.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}
.num-card {
  padding: 42px 32px 38px;
  border-left: 1px solid var(--line);
  position: relative;
  transition: background 0.2s;
}
/* 分隔线是用 border 画的，所以必须知道列数：首列要去掉左边框（否则与容器左边框叠成
   双线），第二行起要补上边框（否则换行处两排粘在一起）。桌面 4 列一套、≤1080 两列一套、
   ≤640 单列一套，缺哪一档就在那一档换行时露馅。 */
.num-card:nth-child(4n + 1) { border-left: none; }
.num-card:nth-child(n + 5) { border-top: 1px solid var(--line); }
.num-card:hover { background: var(--paper); }
.num-card .n {
  font-family: var(--num-font);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.2s;
}
.num-card:hover .n { color: var(--accent-dark); }
.num-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.num-card p { font-size: 14.5px; color: var(--gray); }

/* ============================================================
   成功案例卡（深色区）
   ============================================================ */
/* 三列网格的下限区间与四列不同：需 (276, 376] 才能保证桌面仍是 3 列而不挤成 4 列。
   照搬四列那个 240 会当场多出一列，这里取 320。 */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.case-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  transition: background-color 0.2s, transform 0.2s;
}
.case-card:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-3px); }
/* 同 .figure-ph：深底上的 alt 文字要能看见 */
.case-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; color: rgba(255, 255, 255, 0.75); font-size: 13px; display: grid; place-items: center; padding: 12px; }
.case-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.case-kpi {
  font-family: var(--num-font);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.case-kpi i { font-style: normal; color: var(--accent); font-size: 20px; margin-left: 2px; }
.case-client {
  font-family: var(--num-font);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 7px 0 14px;
}
.case-card h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.case-card p { font-size: 14px; color: rgba(255, 255, 255, 0.62); flex: 1; line-height: 1.7; }

/* ============================================================
   品牌适配条
   ============================================================ */
.brands-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; background: var(--white); }
.brands-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.brands-row .b-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  font-weight: 700;
}
.brands-row .b-name {
  font-family: var(--num-font);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #aab0a9;
  text-transform: uppercase;
}

/* ============================================================
   新闻卡
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.news-date {
  font-family: var(--num-font);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 14px;
}
.news-card h3, .news-card h2 { font-size: 17.5px; font-weight: 800; line-height: 1.5; margin-bottom: 12px; }
.news-card p { font-size: 14.5px; color: var(--gray); flex: 1; }
.news-card .n-tag {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--gray-light);
  letter-spacing: 0.08em;
}

/* 新闻详情：hero 为深底，日期行改浅色（.news-date 默认 --ink 在深底上不可读） */
.page-hero .news-date { color: rgba(255, 255, 255, 0.72); margin-bottom: 0; margin-top: 14px; }

/* .section-head 之外直接置于 .wrap 的导语（新闻详情 excerpt / 列表空状态），补默认排版 */
.section > .wrap > .lead { font-size: 17px; line-height: 1.9; color: var(--gray); margin-bottom: 26px; }

/* 新闻列表页 */
.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  margin-bottom: 40px;
}
.news-feature .figure-ph { min-height: 300px; }
.news-feature-body { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; }
.news-feature-body .badge {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.news-feature-body h2 { font-size: 24px; font-weight: 800; line-height: 1.5; margin-bottom: 14px; }
.news-feature-body p { color: var(--gray); font-size: 15px; }

.news-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.news-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s;
}
.news-row:hover { background: var(--paper); }
.news-row .d {
  text-align: center;
  font-family: var(--num-font);
  border-right: 2px solid var(--accent);
}
.news-row .d b { display: block; font-size: 30px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.news-row .d span { font-size: 13px; color: var(--gray-light); letter-spacing: 0.08em; }
.news-row h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 6px; }
.news-row p { font-size: 14.5px; color: var(--gray); }
.news-row .go {
  font-family: var(--num-font);
  color: var(--gray-light);
  font-size: 22px;
  transition: color 0.18s, transform 0.18s;
}
.news-row:hover .go { color: var(--navy); transform: translateX(4px); }

/* ============================================================
   CTA 通栏
   ============================================================ */
.cta-band {
  background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 0 14px, transparent 14px 28px), var(--accent);
  color: var(--on-accent);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
}
.cta-band h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; color: var(--on-accent); }
.cta-band p { color: rgba(0, 0, 0, 0.72); font-size: 15.5px; }
.cta-band .btn-solid { background: var(--on-accent); color: var(--accent); }
.cta-band .btn-solid:hover { background: #000; color: var(--accent); }

/* ============================================================
   关于页 · 时间轴 / 资质
   ============================================================ */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin-top: 36px;
  background: var(--white);
}
.fact {
  padding: 26px 22px;
  border-left: 1px solid var(--line);
}
.fact:first-child { border-left: none; }
.fact b {
  display: block;
  font-family: var(--num-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.fact b i { font-style: normal; color: var(--gray); font-size: 19px; }
.fact span { font-size: 13px; color: var(--gray); }

.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -36px; top: 7px;
  width: 16px; height: 16px;
  background: var(--white);
  border: 4px solid var(--accent);
}
.tl-item .y {
  font-family: var(--num-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.tl-item h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.tl-item p { font-size: 14.5px; color: var(--gray); }

.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.cert-item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.cert-item:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-3px); }
.cert-item .c-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 9px; background: var(--accent); color: var(--on-accent); flex: none; }
.cert-item .c-icon svg { width: 100%; height: 100%; }
.cert-item h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; }
.cert-item p { font-size: 14px; color: var(--gray); }

/* ============================================================
   产品页
   ============================================================ */
.anchor-nav {
  position: sticky;
  top: 76px;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.anchor-nav .wrap { display: flex; gap: 0; overflow-x: auto; }
.anchor-nav a {
  padding: 17px 26px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  /* 滚动过程中 JS 会切换 .on，枚举纯绘制属性避免 all 过渡 */
  transition: color 0.16s, border-bottom-color 0.16s;
}
.anchor-nav a:hover, .anchor-nav a.on { color: var(--navy); border-bottom-color: var(--accent); }

.psec { padding: 84px 0; }
.psec.alt { background: var(--paper); }
.psec-head {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-bottom: 38px;
}
.psec-head .p-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; padding: 14px; background: var(--accent); color: var(--on-accent); flex: none; }
.psec-head .p-icon svg { width: 100%; height: 100%; }
.psec-head h2 { font-size: 28px; font-weight: 800; }
.psec-head .p-en {
  font-family: var(--num-font);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gray-light);
  text-transform: uppercase;
}
.psec-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: start;
}
.psec-desc p { color: var(--gray); font-size: 15px; margin-bottom: 16px; }
.model-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.model-tags b { width: 100%; font-size: 13.5px; color: var(--ink); margin-bottom: 2px; }
.model-tags span {
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--num-font);
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 6px 13px;
  color: var(--gray);
}

.parts-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); }
.parts-table th {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  padding: 13px 18px;
  letter-spacing: 0.05em;
}
.parts-table td {
  padding: 12px 18px;
  font-size: 14.5px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.parts-table td.mono { font-family: var(--num-font); letter-spacing: 0.04em; color: var(--gray); }
.parts-table tr:hover td { background: var(--paper); }

/* ============================================================
   实力页
   ============================================================ */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: flow;
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 28px 32px;
  position: relative;
  counter-increment: flow;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background-color 0.2s;
}
.flow-step:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.flow-step::before {
  content: "0" counter(flow);
  font-family: var(--num-font);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 18px;
}
.flow-step:hover::before { color: var(--accent-dark); }
.flow-step h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 8px; }
.flow-step p { font-size: 14.5px; color: var(--gray); }

.dark .flow-step { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.14); }
.dark .flow-step h3 { color: #fff; }
.dark .flow-step p { color: rgba(255, 255, 255, 0.62); }
.dark .flow-step::before { color: rgba(255, 255, 255, 0.18); }
.dark .flow-step:hover { background: rgba(255, 255, 255, 0.09); box-shadow: none; }
.dark .flow-step:hover::before { color: var(--accent); }

.promise-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); }
.promise-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  font-size: 14.5px;
  padding: 15px 22px;
  letter-spacing: 0.05em;
}
.promise-table td { padding: 15px 22px; border-top: 1px solid var(--line); font-size: 15px; }
.promise-table td:first-child { font-weight: 700; width: 26%; }
.promise-table td b { color: var(--ink); font-family: var(--num-font); font-size: 17px; letter-spacing: 0.03em; }

/* 表格的最小宽度由内容里最长的不可断词决定（表格布局不吃 body 的 break-word），
   「7×24」「48h」这类承诺值拼上三列内边距，在 360 宽的手机上就能顶破 .wrap。
   套一层横滚容器：放得下时零表现差异，放不下时表格自己滚，不把整页拉出横向滚动条。 */
.table-scroll { overflow-x: auto; }

/* ============================================================
   招聘页
   ============================================================ */
.job-list { display: grid; gap: 16px; }
.job-card { background: var(--white); border: 1px solid var(--line); transition: border-color 0.2s; }
.job-card.open { border-color: var(--navy); }
.job-head {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) 1fr 1fr 0.8fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
}
.job-head .j-title { font-size: 17.5px; font-weight: 800; color: var(--ink); }
.job-head .j-title small {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--gray-light);
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.job-head .j-meta { font-size: 14.5px; color: var(--gray); }
.job-head .j-meta b { display: block; font-size: 12px; color: var(--gray-light); font-weight: 400; margin-bottom: 2px; }
.job-toggle {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition: background-color 0.18s, border-color 0.18s;
}
.job-toggle::before, .job-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: background-color 0.18s, opacity 0.18s;
}
.job-toggle::before { width: 14px; height: 2px; }
.job-toggle::after { width: 2px; height: 14px; }
.job-card.open .job-toggle { background: var(--navy); border-color: var(--navy); }
.job-card.open .job-toggle::before { background: #fff; }
.job-card.open .job-toggle::after { opacity: 0; }

.job-body { display: none; padding: 4px 28px 30px; border-top: 1px dashed var(--line); }
.job-card.open .job-body { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 48px; }
.job-body h3 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy);
  margin: 22px 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.job-body h3::before { content: ""; width: 14px; height: 2.5px; background: var(--accent); }
.job-body ul { display: grid; gap: 7px; }
.job-body li {
  font-size: 14.5px;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}
.job-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  background: var(--line);
}
.job-apply { grid-column: 1 / -1; margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.job-apply .mail { font-family: var(--num-font); font-size: 15px; color: var(--navy); font-weight: 700; letter-spacing: 0.03em; }

.welfare-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.welfare-item {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.welfare-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.welfare-item .w-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; padding: 8px; background: var(--accent); color: var(--on-accent); margin-bottom: 16px; }
.welfare-item .w-icon svg { width: 100%; height: 100%; }
.welfare-item h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.welfare-item p { font-size: 13.5px; color: var(--gray); }

/* ============================================================
   联系页
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-card .c-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; padding: 9px; background: var(--accent); color: var(--on-accent); flex: none; margin-top: 2px; }
.contact-card .c-icon svg { width: 100%; height: 100%; }
.contact-card h3 { font-size: 15px; font-weight: 800; color: var(--gray-light); margin-bottom: 5px; letter-spacing: 0.06em; }
.contact-card .big { font-size: 18px; font-weight: 800; color: var(--ink); font-family: var(--num-font); letter-spacing: 0.02em; }
.contact-card p { font-size: 14.5px; color: var(--gray); }

.form-panel { background: var(--white); border: 1px solid var(--line); padding: 44px 46px; }
.form-panel h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.form-panel .f-sub { color: var(--gray); font-size: 14.5px; margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 700; }
.form-field label i { color: var(--ink); font-style: normal; }
.form-field input, .form-field textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.16s, background-color 0.16s, box-shadow 0.16s;
  width: 100%;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.22);
}
/* ============================================================
   页脚
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  border-top: 4px solid var(--accent);
  color: rgba(255, 255, 255, 0.66);
  padding: 72px 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p { margin-top: 20px; max-width: 320px; line-height: 1.8; }
/* 页脚栏目题用 h2：正文最后一级是 h2，用 h4 会让每个页面都出现 h2→h4 跳级。
   全局 * 已重置 margin，改标签后渲染与原 h4 完全一致。 */
.f-col h2 {
  color: #fff;
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.f-col h2::before { content: ""; width: 16px; height: 2.5px; background: var(--accent); }
.f-col ul { display: grid; gap: 11px; }
/* 原实现 hover 改 padding-left 会逐帧触发布局；
   改为 inline-block + transform 平移 4px，位移观感一致且只走合成层 */
.f-col a { display: inline-block; transition: color 0.16s, transform 0.16s; }
.f-col a:hover { color: #fff; transform: translateX(4px); }
.f-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; }
.f-contact svg { width: 16px; height: 16px; stroke: var(--accent); flex: none; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   返回顶部
   ============================================================ */
.back-top {
  position: fixed;
  right: 26px; bottom: 30px;
  width: 46px; height: 46px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  /* 滚动阈值切换 .show 时触发，枚举 opacity/transform 等合成属性 */
  transition: opacity 0.22s, visibility 0.22s, transform 0.22s, background-color 0.22s, color 0.22s;
  z-index: 90;
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--on-accent); color: var(--accent); }
.back-top svg { width: 18px; height: 18px; }

/* ============================================================
   入场动效（克制）
   ============================================================ */
/* 只有 JS 可用时才先藏起来（.js 由 base.html 头部的同步脚本加）。
   否则 main.js 加载失败就等于整站白屏——实测新闻列表页 94% 的正文靠这条藏着。 */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1080px) {
  /* 其余网格已改 auto-fill 自行降列；num-grid 例外——它 gap:0，靠 num-card 的
     border-left 画分隔线，换行时还得补 border-top，而这条只有在列数已知时才写得出来。 */
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .num-card:nth-child(2n + 1) { border-left: none; }
  .num-card:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .hero h1 { font-size: 42px; }
}

@media (max-width: 960px) {
  /* 汉堡键只在 JS 可用时才出现——没有 JS 它点了也没反应，摆着反而误导 */
  .js .nav-toggle { display: block; }
  .main-nav {
    flex-direction: column;
    height: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  /* 无 JS 时菜单直接平铺在页头下方（页头允许换行撑开），保证手机上仍能导航；
     有 JS 时才收成「绝对定位的下拉」，由汉堡键控制——与改前表现完全一致。 */
  .site-header .wrap { flex-wrap: wrap; height: auto; padding-top: 10px; padding-bottom: 10px; }
  .main-nav { flex: 1 0 100%; order: 3; }
  .js .site-header .wrap { flex-wrap: nowrap; height: 76px; padding-top: 0; padding-bottom: 0; }
  .js .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex: initial;
    box-shadow: var(--shadow);
  }
  .js .main-nav.show { display: flex; }
  .main-nav a { padding: 16px 32px; border-bottom: 1px solid var(--paper); height: auto; }
  .main-nav a::after { display: none; }
  .main-nav a.on { color: var(--navy); }
  /* 移动端保留转化入口：紧凑版报价按钮，贴靠汉堡键 */
  .nav-cta { margin-left: auto; margin-right: 12px; padding: 9px 16px; font-size: 13.5px; }

  .hero-inner { grid-template-columns: 1fr; padding: 56px 0 88px; gap: 36px; }
  /* 移动端保留设备实拍图（B2B 信任证据），缩小置于文案下方 */
  .hero-art { min-height: 0; max-width: 520px; }
  .hero-art::before { right: -8px; top: -8px; width: 48px; height: 48px; border-width: 2px; }
  .hero-art-tag { position: static; display: block; margin-top: 10px; }
  .hero-stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 8px 18px 20px; border-top: 1px solid rgba(255,255,255,0.08); }
  .stat:first-child { padding-left: 20px; }
  .stat:nth-child(odd) { border-left: none; }

  .intro-grid, .psec-body, .contact-grid, .news-feature { grid-template-columns: 1fr; }
  .intro-grid { gap: 44px; }
  .news-grid { grid-template-columns: 1fr; }
  .job-head { grid-template-columns: 1fr auto; }
  .job-head .j-meta { display: none; }
  .job-card.open .job-body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section { padding: 64px 0; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .brand-logo { height: 36px; }
  .topbar-contacts span:nth-child(2) { display: none; }
  .nav-cta { padding: 8px 12px; font-size: 12.5px; margin-right: 10px; letter-spacing: 0.02em; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15.5px; }
  .section-head h2 { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero-mark { font-size: 64px; }
  .num-grid { grid-template-columns: 1fr; }
  .num-card { border-left: none; }
  .num-card:nth-child(n + 2) { border-top: 1px solid var(--line); }
  .hero-stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-panel { padding: 30px 24px; }
  .news-row { grid-template-columns: 80px 1fr; }
  .news-row .go { display: none; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact { border-left: none; border-top: 1px solid var(--line); }
  .fact:first-child { border-top: none; }
  .promise-table th, .promise-table td { padding: 12px 12px; font-size: 13.5px; }
  .promise-table td b { font-size: 15px; }
}
