/* SCRMO website design system */
:root {
  --color-primary: #164fd6;
  --color-primary-hover: #2864e8;
  --color-primary-active: #1849a9;
  --color-primary-light: #f0f5ff;
  --color-purple: #4e5ba6;
  --color-cyan: #0b6f78;
  --color-success: #087443;
  --color-warning: #c97912;
  --color-error: #d92d20;
  --color-text-1: #0b1220;
  --color-text-2: #3f4d63;
  --color-text-3: #697586;
  --bg-white: #fff;
  --bg-gray-1: #f7f9fc;
  --bg-gray-2: #edf1f6;
  --bg-blue-light: #f4f7fc;
  --border-1: #dfe5ee;
  --border-strong: #c8d1df;
  --border-soft: rgba(20, 87, 245, .12);
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .04);
  --shadow-md: 0 10px 24px rgba(16, 24, 40, .055);
  --shadow-lg: 0 22px 54px rgba(16, 24, 40, .09);
  --shadow-blue: 0 16px 36px rgba(23, 92, 211, .12);
  --gradient-brand: linear-gradient(135deg, #164fd6 0%, #2f61d9 100%);
  --gradient-ink: linear-gradient(135deg, #0b1220 0%, #24344d 100%);
  --gradient-light: linear-gradient(180deg, #f5f8ff 0%, #fff 100%);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text-1);
  font-family: "Inter", "MiSans", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  line-height: 1.68;
  font-feature-settings: "tnum";
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand, .btn, .tab { font-family: "Inter", "MiSans", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 44px 0; }
.section.compact { padding: 42px 0 92px; }
.section.alt { background: var(--bg-gray-1); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border: 1px solid rgba(20, 87, 245, .16);
  border-radius: 6px;
  color: var(--color-primary);
  background: rgba(20, 87, 245, .07);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.section-head { max-width: 940px; margin-bottom: 44px; }
.section-head.center { max-width: 1040px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { margin: 16px 0 13px; font-size: clamp(32px, 4vw, 44px); line-height: 1.16; letter-spacing: 0; font-weight: 700; }
.section-head p { margin: 0; max-width: 820px; color: var(--color-text-2); font-size: 17px; }
.section-head.center p { margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: rgba(230,234,240,.9); background: rgba(255,255,255,.94); box-shadow: 0 10px 34px rgba(16,24,40,.06); }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; white-space: nowrap; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center; color: #fff; background: var(--gradient-brand);
  box-shadow: 0 12px 24px rgba(20,87,245,.26);
}
.brand-logo-img {
  width: 52px;
  height: 38px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(20,87,245,.16));
}
.brand span::after {
  content: "企业微信SCRM·私域客户资产运营平台";
  display: none;
  margin-top: -3px;
  color: var(--color-text-3);
  font-size: 11px;
  font-weight: 600;
}
.brand-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(22,79,214,.20);
  background: linear-gradient(135deg, rgba(22,79,214,.08), rgba(8,138,178,.05));
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.3;
  white-space: nowrap;
}
.brand-partner-badge .badge-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(22,79,214,.12);
}
.brand-partner-badge svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-menu { display: flex; align-items: center; gap: 2px; color: var(--color-text-2); }
.nav-item { position: relative; padding: 25px 9px; font-size: 15px; font-weight: 650; }
.nav-item > a, .nav-item > button {
  display: inline-flex; align-items: center; gap: 5px; border: 0; background: transparent; color: inherit; cursor: pointer;
}
.nav-item:hover { color: var(--color-primary); }
.mega {
  position: absolute; top: 70px; left: 50%; transform: translateX(-50%) translateY(8px);
  width: 590px; padding: 14px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
  border: 1px solid rgba(228,231,236,.95); border-radius: 8px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden; transition: .18s ease;
}
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega a { display: flex; gap: 12px; padding: 13px; border-radius: 8px; }
.mega a:hover { background: var(--bg-blue-light); }
.mega b { display: block; margin-bottom: 2px; color: var(--color-text-1); }
.mega span { color: var(--color-text-3); font-size: 13px; line-height: 1.5; }
.mega-icon {
  flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 8px; color: var(--color-primary); background: rgba(21,94,239,.07);
}
.mega-icon svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-actions { display: flex; align-items: center; gap: 4px; }
.nav-actions .icon-btn, .nav-actions .hotline { display: none; }
.nav-util-link {
  border: 0; background: transparent;
  color: var(--color-text-2);
  font-family: inherit;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  padding: 0 9px;
  white-space: nowrap;
  line-height: 40px;
  letter-spacing: inherit;
}
.nav-util-link:hover, .nav-util-link.is-active { color: var(--color-primary); }
.nav-auth { display: inline-flex; align-items: center; gap: 12px; margin-left: 4px; }
/* 未判定登录态前先藏起来，避免闪一下错误按钮 */
html:not(.auth-ready) [data-nav-auth] { visibility: hidden; }
/* 已登录：绝对不能再出现登录 / 免费试用 */
html.is-logged-in [data-action="login"], html.is-logged-in [data-action="trial"], html.is-logged-in .login-link:not(.enter-admin-btn), html.is-logged-in .trial-btn, html.is-logged-in [data-auth-guest], html.is-guest [data-action="enter-admin"], html.is-guest [data-auth-user], html:not(.is-logged-in) [data-action="enter-admin"], html:not(.is-logged-in) [data-auth-user], .nav-auth .is-auth-hidden, .nav-auth [hidden], [data-auth-guest].is-auth-hidden, [data-auth-guest][hidden], [data-auth-user].is-auth-hidden, [data-auth-user][hidden] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
html.is-logged-in [data-action="enter-admin"], html.is-logged-in [data-auth-user], html.is-logged-in .enter-admin-btn {
  display: inline-flex !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.login-link {
  border: 0; background: transparent; color: var(--color-text-2);
  font-family: inherit; font-size: 15px; font-weight: 650;
  cursor: pointer; padding: 0 9px; letter-spacing: inherit;
}
.login-link:hover { color: var(--color-primary); }
.nav-auth .trial-btn {
  min-height: 40px; padding: 0 16px; font-size: 14px;
  color: var(--color-primary); border-color: rgba(22,79,214,.45); background: #fff;
}
.nav-auth .enter-admin-btn {
  min-height: 40px; padding: 0 16px; font-size: 14px;
  color: var(--color-primary); border-color: rgba(22,79,214,.45);
}
.menu-toggle {
  width: 38px; height: 38px; border: 1px solid var(--border-1); border-radius: 8px; background: #fff; cursor: pointer;
}
.menu-toggle { display: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 19px; border: 1px solid var(--border-1); border-radius: 8px;
  background: #fff; color: var(--color-text-1); font-weight: 700; cursor: pointer;
  letter-spacing: 0;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(20,87,245,.3); box-shadow: var(--shadow-md); }
.btn.primary { border: 0; color: #fff; background: var(--color-primary); box-shadow: 0 12px 26px rgba(22,79,214,.18); }
.btn.ghost { color: var(--color-primary); border-color: rgba(22,79,214,.20); background: #fff; }
.btn.light { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.12); }

.hero {
  position: relative;
  padding: 128px 0 64px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f9fd 0%, #fff 78%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(11,18,32,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11,18,32,.045) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: linear-gradient(180deg, rgba(0,0,0,.7) 0%, transparent 66%);
}
.hero::after {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20,87,245,.18), transparent);
}
.hero .hero-redesign-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .44fr) minmax(0, .56fr);
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero .hero-title-v2 {
  margin: 26px 0 22px;
  color: var(--color-text-1);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 780;
}
.hero .hero-copy p {
  margin: 0 0 28px;
  color: var(--color-text-2);
  font-size: 18px;
  max-width: 590px;
}
.signal-line.alt {
  stroke: #38d6c4;
  opacity: .72;
}
.command-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.command-metrics div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.command-metrics b { display: block; color: #fff; font-size: 24px; }
.command-metrics span { color: #9aa8bd; font-size: 13px; }

.hero-elegant {
  padding: 132px 0 64px;
  background:
    radial-gradient(circle at 12% 14%, rgba(22,79,214,.11), transparent 40%),
    radial-gradient(circle at 90% 6%, rgba(78,91,166,.10), transparent 38%),
    radial-gradient(circle at 80% 66%, rgba(11,111,120,.08), transparent 42%),
    linear-gradient(rgba(11,18,32,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,18,32,.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8faff 0%, #fff 84%);
  background-size: auto, auto, auto, 48px 48px, 48px 48px, auto;
}
.elegant-copy {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .hero-title-elegant {
  margin: 22px 0 18px;
  max-width: 560px;
  color: var(--color-text-1);
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.16;
  font-weight: 700;
}
.hero .hero-title-elegant em {
  font-style: normal;
  background: linear-gradient(120deg, #164fd6 0%, #4e5ba6 55%, #0b6f78 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .elegant-copy p {
  margin: 0 0 18px;
  max-width: 540px;
  color: var(--color-text-2);
  font-size: 17px;
}
.hero .elegant-copy p.hero-proof-line {
  margin: 0 0 22px;
  max-width: 540px;
  color: var(--color-text-3);
  font-size: 13.5px;
  font-weight: 600;
}
.hero .elegant-copy p.hero-proof-line b {
  color: var(--color-primary);
  font-weight: 800;
}
.hero-value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}
.hero-value-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(22,79,214,.14);
  border-radius: 6px;
  color: var(--color-primary);
  background: rgba(22,79,214,.06);
  font-size: 13px;
  font-weight: 800;
}
.btn-stacked {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.22;
}
.btn-stacked span {
  font-size: 12px;
  font-weight: 600;
  opacity: .82;
}
.hero-actions .btn-stacked {
  min-height: 58px;
  justify-content: center;
}

.brand-visual {
  position: relative;
  min-height: 540px;
  height: 100%;
  display: grid;
  place-items: center;
}
.brand-visual::before {
  content: "";
  position: absolute;
  inset: 58px 26px 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22,93,255,.10), rgba(255,255,255,0));
  transform: rotate(-2deg);
}
.image-hero {
  min-height: 520px;
}
.image-hero::before {
  inset: 54px 24px 34px;
  background: linear-gradient(135deg, rgba(22,93,255,.14), rgba(219,230,245,.3));
}
.image-hero::after {
  content: "";
  position: absolute;
  inset: 30px 4px 4px 30px;
  border-radius: 10px;
  border: 1px solid rgba(22,93,255,.14);
  background-image: radial-gradient(rgba(22,93,255,.18) 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 0;
  pointer-events: none;
}
.image-hero > img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(92%, 730px);
  height: auto;
  border: 1px solid rgba(219,230,245,.9);
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(22, 51, 115, .16), 0 8px 22px rgba(22, 51, 115, .08);
  background: #fff;
}
.image-hero > .product-mockup {
  position: relative;
  z-index: 1;
  width: min(92%, 640px);
  margin: 60px auto 68px;
}
.hero-visual-badge {
  position: absolute;
  z-index: 2;
  left: 6%;
  bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(219,230,245,.9);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 40px rgba(22,51,115,.16);
}
.hero-visual-badge b {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  white-space: nowrap;
}
.hero-visual-badge span {
  max-width: 108px;
  color: var(--color-text-2);
  font-size: 12px;
  line-height: 1.35;
}
.hero-visual-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(219,230,245,.9);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 30px rgba(22,51,115,.12);
  color: var(--color-text-1);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}
.hero-visual-tag svg { width: 14px; height: 14px; fill: none; stroke: var(--color-primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-visual-tag.tag-tl { top: 16px; left: 2%; }
.hero-visual-tag.tag-tr { top: 16px; right: 0%; }
.hero-visual-tag.tag-br { bottom: 20px; right: 2%; }
.hero .container { position: relative; display: grid; grid-template-columns: minmax(0, .46fr) minmax(0, .54fr); gap: 48px; align-items: stretch; }
.hero h1 { margin: 20px 0 22px; font-size: clamp(42px, 4.7vw, 58px); line-height: 1.08; letter-spacing: 0; max-width: 620px; font-weight: 700; }
.hero p { margin: 0 0 26px; color: var(--color-text-2); font-size: 17px; max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }

.hero-metric-overlap {
  position: relative;
  z-index: 3;
  margin-top: -54px;
}
.metric-band {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--border-1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(22,51,115,.10);
  overflow: hidden;
}
.metric-intro {
  padding: 28px 30px;
  border-right: 1px solid var(--border-1);
  background: #fbfcfe;
}
.metric-intro span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
}
.metric-intro b {
  display: block;
  color: var(--color-text-1);
  font-size: 18px;
  line-height: 1.5;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; overflow: hidden; background: #fff; box-shadow: none; }
.stat { position: relative; padding: 30px 30px; border: 0; border-right: 1px solid var(--border-1); border-radius: 0; background: #fff; box-shadow: none; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--color-primary); font-size: 42px; line-height: 1.05; letter-spacing: 0; font-weight: 800; }
.stat span { color: var(--color-text-2); font-weight: 650; }
.stat em { display: block; margin-top: 8px; color: var(--color-text-3); font-size: 13px; font-style: normal; line-height: 1.5; }
.stat.featured { background: linear-gradient(180deg, #f6f9ff, #fff); }
.stat.featured strong { font-size: 46px; }
.trust-slab { padding: 28px 0 78px; background: #fff; }
.trust-slab-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--border-1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.trust-slab b { display: block; margin-bottom: 4px; }
.trust-slab span { color: var(--color-text-3); font-size: 14px; }
.trust-mini-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.trust-mini-logos span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--border-1);
  border-radius: 8px;
  color: var(--color-text-2);
  background: var(--bg-gray-1);
  font-weight: 800;
}
.pain-pairs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pain-pairs article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border-1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pain-bad, .pain-good {
  padding: 20px;
}
.pain-bad {
  border-right: 1px solid rgba(223,229,238,.9);
  background: #fef3f2;
}
.pain-good {
  background: #f0f5ff;
}
.pain-bad span, .pain-good span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.pain-bad span { background: var(--color-error); }
.pain-good span { background: var(--color-primary); }
.pain-pairs b { display: block; margin-bottom: 6px; font-size: 17px; }
.pain-pairs p { margin: 0; color: var(--color-text-2); font-size: 14px; line-height: 1.55; }
.pain-command {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  gap: 24px;
  align-items: stretch;
}
.pain-list {
  display: grid;
  gap: 10px;
}
.pain-list article {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(223,229,238,.92);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pain-list article.active {
  border-color: rgba(22,79,214,.28);
  background: linear-gradient(90deg, #f8fbff, #fff);
}
.pain-list article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--color-primary);
  background: var(--color-primary-light);
  font-weight: 800;
}
.pain-list b {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}
.pain-list p {
  margin: 0;
  color: var(--color-text-2);
  font-size: 14px;
  line-height: 1.55;
}
.pain-list em {
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--color-text-3);
  background: var(--bg-gray-1);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.resolution-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  padding: 28px;
  border: 1px solid rgba(22,79,214,.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 18%, rgba(22,79,214,.13), transparent 28%),
    linear-gradient(180deg, #fff, #f3f7ff);
  box-shadow: var(--shadow-lg);
}
.resolution-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,79,214,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,79,214,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.resolution-panel > * { position: relative; z-index: 1; }
.resolution-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--color-text-3);
  font-size: 13px;
}
.resolution-top b {
  color: var(--color-text-1);
}
.resolution-core {
  display: grid;
  justify-items: center;
  margin: 38px 0 30px;
  text-align: center;
}
.core-ring {
  width: 156px;
  height: 156px;
  margin-bottom: 18px;
  border: 28px solid rgba(22,79,214,.10);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(22,79,214,.16);
}
.resolution-core strong {
  font-size: 30px;
  line-height: 1.1;
}
.resolution-core p {
  max-width: 420px;
  margin: 10px auto 0;
  color: var(--color-text-2);
}
.resolution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.resolution-grid div {
  padding: 15px;
  border: 1px solid rgba(223,229,238,.92);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
}
.resolution-grid b {
  display: block;
  margin-bottom: 5px;
}
.resolution-grid span {
  color: var(--color-text-3);
  font-size: 13px;
}
.module-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--border-1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.module-cta span {
  margin-right: 6px;
  color: var(--color-text-1);
  font-weight: 800;
}
