/* pc pack: wide process strips, cyan + slate */
:root {
  --cyan: #0e7490;
  --slate: #334155;
  --bg: #f1f5f9;
  --line: #cbd5e1;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: "Consolas", "Segoe UI", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--slate);
  line-height: 1.7;
}
a { color: var(--cyan); }
.site-header { background: #0f172a; color: #e2e8f0; }
.wrap { width: min(1360px, calc(100% - 24px)); margin: 0 auto; }
.header-inner { display: flex; justify-content: space-between; align-items: center; min-height: 58px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: #67e8f9; letter-spacing: .04em; }
.nav a { color: #94a3b8; margin-left: 16px; text-decoration: none; font-size: 14px; }
.nav a.current { color: #67e8f9; }
.hero { padding: 28px 0 10px; display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.hero h1 { font-size: 28px; margin: 0 0 10px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 8px; }
.btn { display: inline-block; padding: 10px 14px; background: var(--cyan); color: #fff; text-decoration: none; font-weight: 700; }
.btn-sub { background: #fff; color: var(--cyan); border: 1px solid var(--cyan); }
.strip { display: grid; grid-template-columns: 90px 1fr; gap: 18px; background: #fff; border: 1px solid var(--line); margin: 14px 0; padding: 18px; }
.strip .num { font-size: 36px; font-weight: 800; color: var(--cyan); }
section { padding: 8px 0 18px; }
section h2 { font-size: 22px; color: #155e75; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card { background: #fff; border: 1px solid var(--line); padding: 12px 14px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
th { background: #cffafe; }
tr:nth-child(even) td { background: #f8fafc; }
.steps { display: flex; gap: 0; padding: 0; }
.steps li {
  list-style: none;
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px;
  position: relative;
}
.steps li + li::before {
  content: ">";
  position: absolute;
  left: -8px;
  top: 12px;
  color: var(--cyan);
  font-weight: 800;
}
.news-item { display: grid; grid-template-columns: 120px 1fr; gap: 12px; background: #fff; border: 1px solid var(--line); padding: 10px 12px; margin-bottom: 8px; }
.news-date { color: var(--cyan); font-weight: 700; }
.faq dt { font-weight: 700; margin-top: 10px; }
.faq dd { margin: 4px 0 0; }
.cta-band { background: #155e75; color: #fff; padding: 16px 18px; }
.cta-band a { color: #a5f3fc; }
.site-footer { background: #0f172a; color: #94a3b8; padding: 22px 0; font-size: 13px; }
.foot-safe { color: #67e8f9; }
@media (max-width: 900px) {
  .hero, .strip, .grid-2, .news-item { grid-template-columns: 1fr; }
  .steps { display: grid; }
  .steps li + li::before { content: ""; }
}
