/* =========================================================
   信安世纪 · Secdriver  —  Premium Minimalism (Apple 风格)
   ========================================================= */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-soft: #fbfbfd;
  --bg-dark: #000000;
  --bg-dark-2: #1d1d1f;
  --text: #1d1d1f;
  --text-2: #6e6e73;
  --text-3: #86868b;
  --text-invert: #f5f5f7;
  --text-invert-2: #a1a1a6;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-deep: #006edb;
  --link: #0066cc;
  --link-invert: #2997ff;
  --border: #d2d2d7;
  --border-soft: #e8e8ed;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 980px;
  --nav-h: 48px;
  --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 6px 24px rgba(0,0,0,.06);
  --shadow-card-hover: 0 2px 4px rgba(0,0,0,.05), 0 18px 48px rgba(0,0,0,.12);
  --ease: cubic-bezier(.22,.61,.36,1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; }
em, i { font-style: normal; }
::selection { background: rgba(0,113,227,.2); }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 860px; }

.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;
}

/* ============ 顶部导航 ============ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(251,251,253,.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-nav.scrolled { border-bottom-color: var(--border-soft); }
.site-nav.on-dark { background: rgba(22,22,23,.65); }
.site-nav.on-dark .nav-links > a, .site-nav.on-dark .drop-toggle { color: var(--text-invert); }
.site-nav.on-dark .nav-links > a:hover, .site-nav.on-dark .drop-toggle:hover { color: #fff; }
.site-nav.on-dark .logo-text { color: #fff; }
.site-nav.on-dark .logo-text em { color: var(--text-invert-2); }
.site-nav.on-dark .nav-toggle span { background: #fff; }

.nav-inner {
  height: 100%; max-width: 1100px; margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: inline-flex; align-items: center; gap: 9px; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 8px; flex: none;
  background: linear-gradient(135deg, #0a84ff, #0060df);
  color: #fff; font-weight: 700; font-size: 15px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,113,227,.35);
}
.logo-text { font-size: 16px; font-weight: 600; letter-spacing: 0; line-height: 1.05; color: var(--text); }
.logo-text em {
  display: block; font-size: 9.5px; font-weight: 500;
  letter-spacing: .16em; color: var(--text-3); margin-top: 2px;
}
.nav-logo .logo-img { height: 30px; width: auto; display: block; }
.footer .nav-logo .logo-img { height: 38px; }
.site-nav.on-dark .logo-img { filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a, .drop-toggle {
  font-size: 12.5px; font-weight: 400; letter-spacing: 0;
  color: var(--text); padding: 7px 13px; border-radius: 980px;
  display: inline-flex; align-items: center; gap: 3px;
  transition: color .2s, background .2s; background: none; border: none; cursor: pointer;
}
.nav-links > a:hover, .drop-toggle:hover { color: var(--text); background: rgba(0,0,0,.045); }
.nav-links > a.active { color: var(--text); background: rgba(0,0,0,.06); }

.has-dropdown { position: relative; }
.drop-toggle .chev { width: 10px; height: 10px; transition: transform .25s var(--ease); }
.has-dropdown:hover .chev, .has-dropdown.open .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 176px; padding: 7px;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,.14);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 9px;
  font-size: 14px; color: var(--text);
}
.dropdown a:hover { background: #f2f2f4; }
.dropdown a.active { color: var(--link); font-weight: 500; }

.nav-toggle {
  display: none; flex: none; width: 40px; height: 40px; margin-right: -8px;
  background: none; border: none; cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  width: 18px; height: 1.5px; background: var(--text);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ Hero ============ */
.hero { position: relative; overflow: hidden; background: var(--bg-dark); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(1100px 560px at 50% -12%, rgba(41,151,255,.30), transparent 62%),
    radial-gradient(820px 480px at 88% 112%, rgba(0,113,227,.22), transparent 60%),
    radial-gradient(640px 420px at 8% 100%, rgba(94,92,230,.16), transparent 60%);
}
.hero-inner {
  position: relative; max-width: 900px; margin: 0 auto;
  padding: 168px 22px 128px; text-align: center;
}
.hero .eyebrow {
  font-size: 15px; font-weight: 500; color: var(--link-invert);
  margin-bottom: 20px; letter-spacing: 0;
}
.hero h1 {
  font-size: clamp(44px, 7.4vw, 82px); line-height: 1.04;
  font-weight: 600; letter-spacing: -0.022em; margin-bottom: 26px;
}
.hero .sub {
  font-size: clamp(18px, 2.4vw, 24px); line-height: 1.45;
  font-weight: 400; color: #c7c7cc; letter-spacing: -0.01em;
  max-width: 640px; margin: 0 auto 38px;
}
.hero .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 浅色 hero（子页面） */
.hero-light { background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%); color: var(--text); }
.hero-light::before { background: radial-gradient(900px 460px at 50% -20%, rgba(0,113,227,.08), transparent 60%); }
.hero-light .eyebrow { color: var(--blue); }
.hero-light h1 { color: var(--text); }
.hero-light .sub { color: var(--text-2); }

/* ============ 通用区块 ============ */
.section { padding: 108px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-tight { padding: 80px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 62px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head .eyebrow {
  font-size: 14px; font-weight: 600; color: var(--blue);
  letter-spacing: .02em; margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(32px, 4.6vw, 52px); line-height: 1.1;
  font-weight: 600; letter-spacing: -0.022em; margin-bottom: 18px;
}
.section-head p { font-size: 19px; line-height: 1.5; color: var(--text-2); }

.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: var(--text-invert-2); }
.section-dark .section-head .eyebrow { color: var(--link-invert); }
.section-dark .check-list li { color: #fff; }
.section-dark .check-list .tick { color: var(--link-invert); }

/* ============ 按钮与链接 ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  font-size: 16px; font-weight: 500; line-height: 1.2;
  border: none; cursor: pointer; transition: transform .2s var(--ease), background .25s, border-color .25s, color .25s;
  will-change: transform;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.42); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }
.btn-ghost { background: transparent; color: var(--link); border: 1px solid var(--link); }
.btn-ghost:hover { background: rgba(0,113,227,.08); }
.btn-lg { padding: 15px 34px; font-size: 17px; }
.btn .chev { width: 12px; height: 12px; }

.link-more { color: var(--link); font-size: 16px; font-weight: 400; display: inline-flex; align-items: center; gap: 5px; }
.link-more .chev { width: 12px; height: 12px; transition: transform .22s var(--ease); }
.link-more:hover { text-decoration: underline; }
.link-more:hover .chev { transform: translateX(3px); }
.section-dark .link-more { color: var(--link-invert); }

/* ============ 卡片网格 ============ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,.04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column; gap: 14px; text-align: left;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.section-alt .card { background: #fff; }
.section-dark .card { background: #161617; border-color: rgba(255,255,255,.08); color: #fff; }
.section-dark .card p { color: var(--text-invert-2); }

.card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.card p { font-size: 15.5px; line-height: 1.5; color: var(--text-2); }
.card .icon-tile { margin-bottom: 4px; }

.icon-tile {
  width: 48px; height: 48px; border-radius: 14px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue); background: rgba(0,113,227,.09);
}
.icon-tile svg { width: 24px; height: 24px; }
.section-dark .icon-tile { color: var(--link-invert); background: rgba(41,151,255,.14); }

/* 小标签列表（产品分类内条目） */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12.5px; color: var(--text-2); background: var(--bg-alt);
  border: 1px solid var(--border-soft); padding: 5px 11px; border-radius: 980px;
}
.section-dark .tag { color: var(--text-invert-2); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }

/* ============ 数据指标 ============ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 10px 8px; }
.stat .num {
  font-size: clamp(34px, 4.4vw, 56px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1;
  background: linear-gradient(180deg, #1d1d1f, #4a4a4e);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .label { font-size: 14px; color: var(--text-2); margin-top: 10px; }
.section-dark .stat .num { background: linear-gradient(180deg, #fff, #a1a1a6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-dark .stat .label { color: var(--text-invert-2); }

/* ============ 两栏特性 ============ */
.feature-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature {
  display: flex; gap: 18px; padding: 30px 28px; border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-card); align-items: flex-start;
}
.feature .icon-tile { margin-top: 2px; }
.feature h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.feature p { font-size: 15.5px; color: var(--text-2); line-height: 1.55; }
.section-dark .feature { background: #161617; border: 1px solid rgba(255,255,255,.08); }
.section-dark .feature p { color: var(--text-invert-2); }

/* ============ 列表（勾选） ============ */
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.check-list li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 16px; line-height: 1.5; color: var(--text);
}
.check-list .tick {
  width: 20px; height: 20px; flex: none; margin-top: 2px;
  color: var(--blue); display: inline-flex;
}
.check-list .tick svg { width: 20px; height: 20px; }

/* ============ 招聘 ============ */
.job-list { display: flex; flex-direction: column; gap: 16px; }
.job {
  background: #fff; border-radius: var(--radius); padding: 28px 30px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,.04);
  display: grid; grid-template-columns: 1fr auto; gap: 12px 24px; align-items: start;
}
.job h3 { font-size: 20px; font-weight: 600; }
.job .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.job .meta span { font-size: 13px; color: var(--text-2); background: var(--bg-alt); padding: 5px 12px; border-radius: 980px; border: 1px solid var(--border-soft); }
.job .apply { align-self: center; }
.job-body { grid-column: 1 / -1; border-top: 1px solid var(--border-soft); padding-top: 20px; display: grid; gap: 16px; }
.job-body h4 { font-size: 14px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.job-body ul { display: grid; gap: 7px; }
.job-body ul li { font-size: 15px; color: var(--text-2); line-height: 1.55; padding-left: 18px; position: relative; }
.job-body ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* ============ 页脚 ============ */
.footer { background: #f5f5f7; border-top: 1px solid var(--border-soft); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1fr; gap: 40px; padding: 68px 0 56px; }
.footer .brand p { font-size: 14.5px; color: var(--text-2); line-height: 1.6; margin-top: 16px; max-width: 260px; }
.footer h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 18px; letter-spacing: .01em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-2); transition: color .2s; }
.footer-links a:hover { color: var(--text); text-decoration: underline; }
.footer-contact { display: grid; gap: 10px; font-size: 14px; color: var(--text-2); }
.footer-contact .hot { font-size: 20px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.footer-contact a:hover { text-decoration: underline; }
.footer-qr { text-align: center; }
.footer-qr img { width: 108px; border-radius: 12px; margin: 0 auto 10px; }
.footer-qr p { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }

.footer-bottom { border-top: 1px solid var(--border-soft); padding: 22px 0 26px; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; justify-content: space-between; }
.footer-bottom p, .footer-bottom a { font-size: 12.5px; color: var(--text-3); }
.footer-bottom a:hover { color: var(--text-2); text-decoration: underline; }
.footer-bottom .beian { display: inline-flex; align-items: center; gap: 6px; }
.footer-bottom .beian img { width: 14px; height: 14px; }

/* ============ 动效 ============ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ 响应式 ============ */
@media (max-width: 900px) {
  .grid-4, .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 833px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
    background: rgba(251,251,253,.98);
    -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 18px 22px 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .38s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links > a, .drop-toggle {
    font-size: 24px; font-weight: 600; padding: 17px 0;
    border-radius: 0; border-bottom: 1px solid var(--border-soft);
    justify-content: space-between; width: 100%;
  }
  .nav-links > a:hover, .drop-toggle:hover { background: none; }
  .has-dropdown { width: 100%; }
  .dropdown {
    position: static; transform: none; min-width: 0; padding: 0 0 6px;
    background: transparent; box-shadow: none; border-radius: 0;
    opacity: 1; visibility: visible; pointer-events: auto; display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a { font-size: 18px; padding: 12px 4px 12px 12px; border-bottom: 1px solid var(--border-soft); border-radius: 0; }
  .dropdown a:last-child { border-bottom: none; }
  .grid-2, .grid-3, .feature-row, .check-list { grid-template-columns: 1fr; }
  .job { grid-template-columns: 1fr; }
  .job .apply { align-self: start; }
}

@media (max-width: 560px) {
  .grid-4, .stats, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .hero-inner { padding: 132px 20px 96px; }
  .section { padding: 80px 0; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

/* ============ 重点宣传（认证 CISP / 岗前培训） ============ */
.hot-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--blue);
  background: rgba(0,113,227,.1); padding: 5px 13px; border-radius: 980px;
  letter-spacing: .01em; margin-bottom: 14px;
}
.spotlight {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0053c7 0%, #0071e3 52%, #3da5ff 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 52px 48px;
  box-shadow: 0 24px 64px rgba(0,113,227,.30);
}
.spotlight h3 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin: 8px 0 14px; letter-spacing: -0.01em; }
.spotlight p { color: rgba(255,255,255,.92); font-size: 17px; line-height: 1.6; max-width: 560px; }
.spotlight .badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.spotlight .badges .tag { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.32); color: #fff; font-size: 14px; padding: 9px 18px; }
@media (max-width: 560px) { .spotlight { padding: 36px 26px; } }

/* ============ 证书海报弹窗（深海蓝 · Apple 风格） ============ */
.poster-modal { position: fixed; inset: 0; z-index: 300; display: none; }
.poster-modal.open { display: block; }
.poster-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.62); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.poster-wrap { position: relative; height: 100%; overflow-y: auto; padding: 76px 20px 60px; }
.poster-close {
  position: fixed; top: 18px; right: 22px; z-index: 320;
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 24px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: background .2s;
}
.poster-close:hover { background: rgba(255,255,255,.28); }
.poster {
  position: relative; overflow: hidden; width: 100%; max-width: 760px; margin: 0 auto;
  background: linear-gradient(165deg, #001432 0%, #00244f 42%, #003d82 78%, #0052b5 100%);
  color: #fff; border-radius: 28px; padding: 56px 54px 48px;
  box-shadow: 0 44px 120px rgba(0,0,0,.55);
}
.poster::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 420px at 88% -8%, rgba(41,151,255,.35), transparent 60%),
              radial-gradient(560px 360px at -6% 108%, rgba(0,113,227,.28), transparent 60%);
}
.poster > * { position: relative; }
.poster .p-label { font-size: 13px; font-weight: 500; letter-spacing: .02em; color: #7ab8ff; margin-bottom: 18px; }
.poster .p-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.poster .p-tags span { font-size: 13px; font-weight: 500; padding: 7px 15px; border-radius: 980px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #fff; }
.poster h3 { font-size: clamp(30px, 5vw, 44px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; color: #fff; margin-bottom: 14px; }
.poster .p-sub { font-size: 18px; color: #a9c8ef; margin-bottom: 30px; }
.poster .p-desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.86); padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.16); }
.poster .p-sec { margin-top: 30px; }
.poster .p-sec-head { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 600; color: #fff; margin-bottom: 18px; }
.poster .p-sec-head svg { width: 20px; height: 20px; color: #7ab8ff; }
.poster .p-benefits { display: grid; gap: 14px; }
.poster .p-benefit { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 16px 18px; }
.poster .p-benefit .p-num { flex: none; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, #2997ff, #0071e3); color: #fff; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }
.poster .p-benefit b { display: block; font-size: 15.5px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.poster .p-benefit span { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.82); }
.poster .p-people { display: flex; flex-wrap: wrap; gap: 10px; }
.poster .p-people span { font-size: 13.5px; padding: 8px 16px; border-radius: 980px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; }
.poster .p-foot { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); text-align: center; font-size: 17px; font-weight: 600; color: #fff; }
.card[data-poster] { cursor: pointer; }
@media (max-width: 560px) { .poster { padding: 40px 26px 36px; } }

/* ============ 能力清单（轻量列表，替代多卡片） ============ */
.cap-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: 64px; row-gap: 0; max-width: 880px; margin: 0 auto;
}
.cap-list li {
  display: flex; align-items: center; gap: 15px;
  padding: 17px 4px; border-bottom: 1px solid var(--border-soft);
  font-size: 17px; font-weight: 500; letter-spacing: -0.01em; color: var(--text);
}
.cap-list li:nth-last-child(-n+2) { border-bottom: none; }
.cap-icon {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue); background: rgba(0,113,227,.08);
}
.cap-icon svg { width: 20px; height: 20px; }
.section-dark .cap-list li { color: #fff; border-color: rgba(255,255,255,.12); }
.section-dark .cap-icon { color: var(--link-invert); background: rgba(41,151,255,.14); }
@media (max-width: 833px) { .cap-list { grid-template-columns: 1fr; max-width: 520px; } }
