/* ============================================================
   dl_composite · home.css
   紫罗兰 + 青绿 · 多 Tab 全屏切换大幕
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Inter:wght@400;600;800&display=swap');

:root {
  --cp-violet: #8b5cf6;
  --cp-violet-deep: #6d28d9;
  --cp-cyan: #06b6d4;
  --cp-cyan-deep: #0e7490;
  --cp-pink: #ec4899;
  --cp-amber: #f59e0b;
  --cp-emerald: #10b981;
  --cp-bg: #0f0f17;
  --cp-bg-2: #161624;
  --cp-bg-3: #1f1f30;
  --cp-text: #f5f3ff;
  --cp-muted: #a78bfa;
}

/* ===== Hero · 多 Tab 全屏大幕 ===== */
.hero-cp {
  position: relative;
  min-height: 720px;
  padding: 0 0 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(139, 92, 246, .35), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(6, 182, 212, .28), transparent 55%),
    linear-gradient(135deg, #0f0f17 0%, #1a1530 60%, #0a1620 100%);
}

/* 网格背景 */
.hero-cp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, .07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* 隐藏 radio */
.cp-tab-input { position: absolute; left: -9999px; opacity: 0; }

/* Tab 横幅栏 */
.cp-tabbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 24px 16px;
  background: rgba(15, 15, 23, .55);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(139, 92, 246, .15);
}
.cp-tabbar-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 1px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, .08);
  border: 1px solid rgba(139, 92, 246, .18);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.cp-tabbar-label i {
  font-size: 13px;
  color: var(--cp-cyan);
}
.cp-tabbar-label:hover {
  background: rgba(139, 92, 246, .15);
  color: #fff;
}

/* tab 激活样式 */
#cp-tab-1:checked ~ .cp-tabbar [for="cp-tab-1"],
#cp-tab-2:checked ~ .cp-tabbar [for="cp-tab-2"],
#cp-tab-3:checked ~ .cp-tabbar [for="cp-tab-3"],
#cp-tab-4:checked ~ .cp-tabbar [for="cp-tab-4"],
#cp-tab-5:checked ~ .cp-tabbar [for="cp-tab-5"],
#cp-tab-6:checked ~ .cp-tabbar [for="cp-tab-6"] {
  background: linear-gradient(135deg, var(--cp-violet), var(--cp-cyan));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(139, 92, 246, .35);
}
#cp-tab-1:checked ~ .cp-tabbar [for="cp-tab-1"] i,
#cp-tab-2:checked ~ .cp-tabbar [for="cp-tab-2"] i,
#cp-tab-3:checked ~ .cp-tabbar [for="cp-tab-3"] i,
#cp-tab-4:checked ~ .cp-tabbar [for="cp-tab-4"] i,
#cp-tab-5:checked ~ .cp-tabbar [for="cp-tab-5"] i,
#cp-tab-6:checked ~ .cp-tabbar [for="cp-tab-6"] i { color: #fff8db; }

/* 大幕舞台 */
.cp-stage {
  position: relative;
  z-index: 5;
  margin: 40px auto 0;
  max-width: 1200px;
  padding: 0 16px;
}

.cp-pane {
  display: none;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(31, 31, 48, .85), rgba(15, 15, 23, .9));
  border: 1px solid rgba(139, 92, 246, .25);
  border-radius: 24px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .5),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
}
.cp-pane::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--cp-violet) 0%, transparent 70%);
  opacity: .25;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.cp-pane::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--cp-cyan) 0%, transparent 70%);
  opacity: .22;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

/* 切换 */
#cp-tab-1:checked ~ .cp-stage .cp-pane-1,
#cp-tab-2:checked ~ .cp-stage .cp-pane-2,
#cp-tab-3:checked ~ .cp-stage .cp-pane-3,
#cp-tab-4:checked ~ .cp-stage .cp-pane-4,
#cp-tab-5:checked ~ .cp-stage .cp-pane-5,
#cp-tab-6:checked ~ .cp-stage .cp-pane-6 {
  display: grid;
  animation: paneIn .5s ease;
}

@keyframes paneIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cp-pane-text { position: relative; z-index: 2; }
.cp-pane-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--cp-cyan);
  background: rgba(6, 182, 212, .12);
  border: 1px solid rgba(6, 182, 212, .35);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.cp-pane-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 50px;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, var(--cp-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cp-pane-sub {
  color: #d8b4fe;
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 22px;
}
.cp-pane-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.cp-pane-stat {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(139, 92, 246, .18);
  border-radius: 10px;
  padding: 12px 14px;
}
.cp-pane-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--cp-cyan);
  line-height: 1.1;
}
.cp-pane-stat span {
  display: block;
  font-size: 11.5px;
  color: var(--cp-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}
.cp-pane-actions { display: inline-flex; gap: 10px; flex-wrap: wrap; }
.cp-pane-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 1px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s;
}
.cp-pane-btn.primary {
  background: linear-gradient(135deg, var(--cp-violet), var(--cp-cyan));
  color: #fff;
  box-shadow: 0 8px 24px rgba(139, 92, 246, .4);
}
.cp-pane-btn.primary:hover { transform: translateY(-2px); color: #fff; }
.cp-pane-btn.ghost {
  background: transparent;
  color: #e9d5ff;
  border: 1px solid rgba(196, 181, 253, .35);
}
.cp-pane-btn.ghost:hover { background: rgba(139, 92, 246, .14); color: #fff; }

/* 大幕右侧视觉 */
.cp-pane-visual {
  position: relative;
  z-index: 2;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, .14), rgba(6, 182, 212, .12));
  border: 1px solid rgba(139, 92, 246, .25);
}
.cp-pane-visual-icon {
  font-size: 130px;
  color: var(--cp-violet);
  filter: drop-shadow(0 12px 30px rgba(139, 92, 246, .55));
  opacity: .85;
}
.cp-pane-visual-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(15, 15, 23, .8);
  border: 1px solid rgba(6, 182, 212, .4);
  color: var(--cp-cyan);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 2px;
}
.cp-pane-visual-counter {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-family: 'Space Grotesk', monospace;
  font-size: 13px;
  color: #c4b5fd;
  background: rgba(15, 15, 23, .8);
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 2px;
}

/* 顶部公告条 */
.cp-marquee {
  position: relative;
  z-index: 6;
  background: rgba(139, 92, 246, .12);
  border-bottom: 1px solid rgba(139, 92, 246, .2);
  color: #ddd6fe;
  font-family: 'Space Grotesk', monospace;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-align: center;
  padding: 8px 16px;
}
.cp-marquee i { color: var(--cp-cyan); margin-right: 8px; }

/* ===== Section 通用 ===== */
.cp-sec {
  padding: 70px 0;
  position: relative;
}
.cp-sec-alt {
  background:
    radial-gradient(circle at 50% 0, rgba(139, 92, 246, .08), transparent 60%),
    var(--cp-bg-2);
  border-top: 1px solid rgba(139, 92, 246, .12);
  border-bottom: 1px solid rgba(139, 92, 246, .12);
}

.cp-sec-head { text-align: center; margin-bottom: 44px; }
.cp-sec-en {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--cp-cyan);
  margin-bottom: 8px;
}
.cp-sec-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #fff;
  margin: 0;
  letter-spacing: -.5px;
}
.cp-sec-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cp-violet), var(--cp-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== 6 大产品线快捷卡 ===== */
.cp-products {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cp-product {
  background: linear-gradient(180deg, var(--cp-bg-3), var(--cp-bg-2));
  border: 1px solid rgba(139, 92, 246, .18);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  text-decoration: none;
  color: var(--cp-text);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.cp-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(6, 182, 212, .15) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.cp-product:hover {
  transform: translateY(-4px);
  border-color: var(--cp-cyan);
  box-shadow: 0 18px 36px rgba(6, 182, 212, .25);
  color: #fff;
}
.cp-product:hover::before { opacity: 1; }
.cp-product-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cp-violet), var(--cp-cyan));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(139, 92, 246, .35);
}
.cp-product h5 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: 1px;
}
.cp-product span {
  display: block;
  font-size: 11px;
  color: var(--cp-muted);
  letter-spacing: 1.5px;
}

/* ===== APP 4 端图片墙 ===== */
.cp-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cp-app {
  background: linear-gradient(180deg, var(--cp-bg-2), var(--cp-bg));
  border: 1px solid rgba(139, 92, 246, .2);
  border-radius: 20px;
  padding: 24px 18px 22px;
  text-align: center;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.cp-app::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cp-violet), var(--cp-cyan));
}
.cp-app:hover {
  transform: translateY(-5px);
  border-color: var(--cp-cyan);
  box-shadow: 0 18px 38px rgba(139, 92, 246, .25);
}
.cp-app-shot {
  width: 100%;
  height: 360px;
  border-radius: 14px;
  background: rgba(139, 92, 246, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  padding: 4px;
}
.cp-app-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(139, 92, 246, .35));
}
.cp-app h5 {
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 6px;
  letter-spacing: 1px;
}
.cp-app p { color: var(--cp-muted); font-size: 12.5px; margin: 0 0 10px; }
.cp-app-dl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--cp-cyan);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
}
.cp-app-dl:hover { color: var(--cp-violet); }

/* ===== 牌照资质墙（imgzz 9 张） ===== */
.cp-licenses {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
}
.cp-license {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(139, 92, 246, .18);
  border-radius: 12px;
  padding: 8px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.cp-license:hover {
  transform: translateY(-3px);
  border-color: var(--cp-cyan);
  background: rgba(6, 182, 212, .08);
  box-shadow: 0 10px 24px rgba(6, 182, 212, .2);
}
.cp-license img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}
.cp-licenses-foot {
  text-align: center;
  margin-top: 22px;
  color: var(--cp-muted);
  font-size: 13px;
}
.cp-licenses-foot i { color: var(--cp-cyan); margin-right: 4px; }

/* ===== 数据统计带 ===== */
.cp-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, .12), rgba(6, 182, 212, .1));
  border: 1px solid rgba(139, 92, 246, .25);
  border-radius: 18px;
  overflow: hidden;
}
.cp-stat-item {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px dashed rgba(139, 92, 246, .25);
}
.cp-stat-item:last-child { border-right: 0; }
.cp-stat-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 38px;
  background: linear-gradient(135deg, var(--cp-violet), var(--cp-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.cp-stat-item span {
  display: block;
  color: var(--cp-muted);
  font-size: 13px;
  letter-spacing: 2px;
}

/* ===== 资讯 ===== */
.cp-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cp-news-card {
  background: var(--cp-bg-2);
  border: 1px solid rgba(139, 92, 246, .15);
  border-radius: 14px;
  padding: 24px;
  transition: all .2s;
}
.cp-news-card:hover {
  transform: translateY(-3px);
  border-color: var(--cp-cyan);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .4);
}
.cp-news-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--cp-cyan);
  background: rgba(6, 182, 212, .12);
  border: 1px solid rgba(6, 182, 212, .35);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.cp-news-card h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
}
.cp-news-card h4 a { color: inherit; text-decoration: none; }
.cp-news-card h4 a:hover { color: var(--cp-cyan); }
.cp-news-card p {
  color: var(--cp-muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.cp-news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--cp-muted);
  border-top: 1px dashed rgba(139, 92, 246, .15);
  padding-top: 10px;
}

/* ===== 响应式 ===== */
@media (max-width: 1199.98px) {
  .cp-pane { grid-template-columns: 1fr; padding: 32px; }
  .cp-pane-title { font-size: 40px; }
  .cp-pane-visual { height: 280px; }
  .cp-products { grid-template-columns: repeat(3, 1fr); }
  .cp-apps { grid-template-columns: repeat(2, 1fr); }
  .cp-licenses { grid-template-columns: repeat(5, 1fr); }
  .cp-news { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .hero-cp { min-height: 580px; }
  .cp-tabbar { padding: 16px 8px; gap: 6px; }
  .cp-tabbar-label { padding: 8px 14px; font-size: 12.5px; letter-spacing: .5px; }
  .cp-pane { padding: 22px; }
  .cp-pane-title { font-size: 30px; }
  .cp-pane-visual { height: 220px; }
  .cp-pane-visual-icon { font-size: 90px; }
  .cp-pane-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cp-pane-stat { padding: 10px; }
  .cp-pane-stat strong { font-size: 17px; }
  .cp-sec { padding: 50px 0; }
  .cp-sec-title { font-size: 24px; }
  .cp-products { grid-template-columns: repeat(2, 1fr); }
  .cp-apps { grid-template-columns: 1fr; }
  .cp-licenses { grid-template-columns: repeat(3, 1fr); }
  .cp-license { height: 150px; padding: 6px; }
  .cp-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cp-stat-item { border-right: 0; border-bottom: 1px dashed rgba(139, 92, 246, .25); }
  .cp-stat-item strong { font-size: 28px; }
  .cp-news { grid-template-columns: 1fr; }
}


/* =================================================== */
/* MOBILE ENHANCED · 旧模板通用 H5 自适应规则           */
/* =================================================== */
.cp-hero img, .cp-solutions img, .cp-data img, .cp-news img, .cp-tiers img { max-width: 100%; height: auto; }

@media (max-width: 991.98px) {
  .cp-hero { padding: 80px 20px 60px; }
  .cp-hero h1, .cp-hero .cp-h1 { font-size: 48px !important; line-height: 1.05 !important; }
  .cp-hero-lead, .cp-hero p { font-size: 16px !important; line-height: 1.7 !important; }
}

@media (max-width: 768px) {
  /* Hero 放大 */
  .cp-hero { padding: 72px 20px 56px; }
  .cp-hero h1, .cp-hero .cp-h1 { font-size: 40px !important; line-height: 1.1 !important; }
  .cp-hero h1 em, .cp-hero .cp-h1 em { font-size: 40px !important; }
  .cp-hero-tag { font-size: 12px !important; padding: 8px 14px !important; margin-bottom: 24px !important; }
  .cp-hero-lead, .cp-hero p { font-size: 15px !important; line-height: 1.75 !important; margin-bottom: 24px !important; }
  .cp-hero-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
  .cp-hero-cta a { padding: 16px 20px !important; font-size: 15px !important; width: 100%; box-sizing: border-box; text-align: center; border-radius: 10px !important; min-height: 48px; }
  /* Stats 改 2 列 */
  .cp-hero-stats, .cp-hero-numbers { grid-template-columns: 1fr 1fr !important; gap: 0 !important; margin-top: 32px !important; }
  .cp-hero-stats div, .cp-num-cell { padding: 18px 14px !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .cp-hero-stats strong, .cp-hero-stats b, .cp-num-cell strong { font-size: 28px !important; }
  .cp-hero-stats span, .cp-num-cell span { font-size: 12px !important; }
  /* Sections 网格改单列 */
  .cp-solutions, .cp-data, .cp-tiers, .cp-news, .cp-final, .cp-features { padding: 56px 0 !important; }
  .cp-sol-grid, .cp-tier-grid, .cp-news-grid, .cp-sol, .cp-cabs, .cp-tokens, .cp-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .cp-sol-card, .cp-tier-card, .cp-news-card, .cp-sol, .cp-cab, .cp-tok { padding: 24px 20px !important; border-radius: 12px !important; }
  .cp-sol-card h3, .cp-tier-card h3, .cp-news-card h3 { font-size: 18px !important; }
  .cp-sol-card p, .cp-tier-card p, .cp-news-card p { font-size: 14px !important; line-height: 1.7 !important; }
  /* Section title */
  .cp-sec-title, .cp-sec-head h2, .cp-final h2 { font-size: 26px !important; line-height: 1.25 !important; }
  .cp-sec-sub, .cp-sec-head p { font-size: 14px !important; }
  /* Final CTA 竖排 */
  .cp-final { padding: 56px 20px !important; }
  .cp-final-actions { flex-direction: column; gap: 10px; }
  .cp-final-actions a, .cp-final-actions .btn { width: 100%; box-sizing: border-box; padding: 14px 20px !important; font-size: 15px !important; min-height: 48px; border-radius: 10px !important; }
  /* Keywords chips */
  .cp-chip-grid { gap: 6px; }
  .cp-chip { padding: 8px 14px !important; font-size: 13px !important; }
  /* 表格横滚 */
  .cp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cp-table th, .cp-table td { font-size: 13px !important; padding: 10px 8px !important; }
}

@media (max-width: 480px) {
  .cp-hero h1, .cp-hero .cp-h1 { font-size: 32px !important; }
  .cp-hero h1 em, .cp-hero .cp-h1 em { font-size: 32px !important; }
  .cp-hero-stats strong, .cp-hero-stats b { font-size: 22px !important; }
}
