/* 沧云小工程 EPMS 落地页 — 作用域隔离，避免与 site.css 产品页 .epms-* 冲突 */
.theme-epms-landing {
  --epms-primary: #1677ff;
  --epms-primary-dark: #0958d9;
  --epms-primary-light: #4096ff;
  --epms-primary-bg: #e8f4ff;
  --epms-text: #1e293b;
  --epms-muted: #64748b;
  --epms-bg: #f5f8fc;
  --epms-card: #fff;
  background: var(--epms-bg);
  color: var(--epms-text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.theme-epms-landing a {
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.theme-epms-landing h1,
.theme-epms-landing h2,
.theme-epms-landing h3,
.theme-epms-landing h4,
.theme-epms-landing h5,
.theme-epms-landing h6 {
  font-weight: 700;
  line-height: 1.35;
}

.theme-epms-landing p {
  margin: 0;
}

.theme-epms-landing ul {
  list-style: none;
}

.theme-epms-landing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Hero 科技蓝深色 ===== */
.theme-epms-landing .epms-hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, #000c1a 0%, #001529 45%, #0a2540 100%);
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.theme-epms-landing .epms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(24, 144, 255, 0.28) 0%, transparent 65%),
    radial-gradient(circle at 15% 25%, rgba(54, 207, 201, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.theme-epms-landing .epms-hero > .container {
  position: relative;
  z-index: 1;
}

.theme-epms-landing .epms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 1rem;
  background: rgba(24, 144, 255, 0.15);
  border: 1px solid rgba(24, 144, 255, 0.45);
  color: #69c0ff;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.theme-epms-landing .epms-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
}

.theme-epms-landing .epms-hero h1 em {
  font-style: normal;
  color: #69c0ff;
}

.theme-epms-landing .epms-hero-lead {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.theme-epms-landing .epms-hero-lead strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.theme-epms-landing .epms-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.theme-epms-landing .epms-btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--epms-primary);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(22, 119, 255, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.theme-epms-landing .epms-btn-primary:hover {
  background: var(--epms-primary-dark);
  transform: translateY(-1px);
}

.theme-epms-landing .epms-btn-outline {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 1px solid var(--epms-primary);
  color: var(--epms-primary);
  background: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.theme-epms-landing .epms-btn-outline:hover {
  background: var(--epms-primary);
  color: #fff;
}

.theme-epms-landing .epms-hero .epms-btn-primary {
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(24, 144, 255, 0.5);
}

.theme-epms-landing .epms-hero .epms-btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.theme-epms-landing .epms-hero .epms-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.theme-epms-landing .epms-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .theme-epms-landing .epms-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.theme-epms-landing .epms-stat-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(24, 144, 255, 0.25);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  box-shadow: none;
}

.theme-epms-landing .epms-hero .epms-stat-num {
  color: #69c0ff;
}

.theme-epms-landing .epms-hero .epms-stat-label {
  color: rgba(255, 255, 255, 0.65);
}

.theme-epms-landing .epms-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--epms-primary);
  line-height: 1.2;
}

.theme-epms-landing .epms-stat-num span {
  font-size: 1.25rem;
}

.theme-epms-landing .epms-stat-label {
  font-size: 0.8125rem;
  color: var(--epms-muted);
  margin-top: 0.35rem;
}

/* ===== 功能模块（参考 CRM qd-serves-module，区块高度 +25%） ===== */
.theme-epms-landing .epms-serves-module {
  padding: 6.25rem 0;
  background: var(--epms-bg);
}

.theme-epms-landing .epms-serves-module--alt {
  background: #f8fafc;
}

.theme-epms-landing .epms-serves-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
  min-height: 380px;
}

@media (max-width: 992px) {
  .theme-epms-landing .epms-serves-item {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 2.5rem;
  }

  .theme-epms-landing .epms-serves-item .epms-serves-copy {
    order: 1;
  }

  .theme-epms-landing .epms-serves-item .epms-serves-visual {
    order: 2;
  }
}

.theme-epms-landing .epms-serves-visual {
  min-width: 0;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .theme-epms-landing .epms-serves-visual {
    min-height: 0;
  }
}

.theme-epms-landing .epms-serves-copy {
  position: relative;
}

.theme-epms-landing .epms-module-num {
  display: block;
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(22, 119, 255, 0.1);
  user-select: none;
}

.theme-epms-landing .epms-serves-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.theme-epms-landing .epms-module-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--epms-primary);
  background: rgba(22, 119, 255, 0.08);
  border: 1px solid rgba(22, 119, 255, 0.2);
}

.theme-epms-landing .epms-feature-line {
  margin-bottom: 1.25rem;
}

.theme-epms-landing .epms-feature-line .label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

.theme-epms-landing .epms-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--epms-primary);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.15);
}

.theme-epms-landing .epms-feature-line .desc {
  display: block;
  color: var(--epms-muted);
  font-size: 0.875rem;
  line-height: 1.75;
  padding-left: 1.25rem;
}

.theme-epms-landing .epms-feature-line--intro .desc {
  padding-left: 0;
  font-size: 0.9375rem;
  line-height: 1.85;
  max-width: 520px;
}

.theme-epms-landing .epms-btn-fill {
  margin-top: 2rem;
}

.theme-epms-landing .epms-btn-fill a {
  display: inline-block;
  padding: 0.625rem 2rem;
  background: var(--epms-primary);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 4px 14px rgba(22, 119, 255, 0.3);
  transition: background 0.2s, transform 0.2s;
}

.theme-epms-landing .epms-btn-fill a:hover {
  background: var(--epms-primary-dark);
  transform: translateY(-1px);
}

/* ===== 界面示意（CSS Mock） ===== */
.theme-epms-landing .epms-mock {
  position: relative;
  background: var(--epms-card);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  min-height: 350px;
  width: 100%;
}

.theme-epms-landing .epms-mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.theme-epms-landing .epms-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.theme-epms-landing .epms-mock-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  font-size: 10px;
}

.theme-epms-landing .epms-mock-nav span {
  padding: 4px 8px;
  border-radius: 4px;
  color: #94a3b8;
}

.theme-epms-landing .epms-mock-nav span.is-on {
  background: rgba(22, 119, 255, 0.1);
  color: var(--epms-primary);
  font-weight: 600;
}

.theme-epms-landing .epms-mock-body {
  padding: 15px;
}

.theme-epms-landing .epms-mock-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.theme-epms-landing .epms-mock-card {
  background: #f8fafc;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}

.theme-epms-landing .epms-mock-card b {
  display: block;
  font-size: 16px;
  color: var(--epms-primary);
}

.theme-epms-landing .epms-mock-card small {
  font-size: 9px;
  color: #94a3b8;
}

.theme-epms-landing .epms-mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.theme-epms-landing .epms-mock-table th {
  background: #f1f5f9;
  color: #64748b;
  font-weight: 600;
  text-align: left;
  padding: 8px 10px;
}

.theme-epms-landing .epms-mock-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.theme-epms-landing .epms-mock-tag {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
}

.theme-epms-landing .epms-mock-tag--ok { background: #dbeafe; color: #1d4ed8; }
.theme-epms-landing .epms-mock-tag--warn { background: #ffedd5; color: #c2410c; }
.theme-epms-landing .epms-mock-tag--danger { background: #fee2e2; color: #b91c1c; }

.theme-epms-landing .epms-mock-pill {
  position: absolute;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #1677ff, #6366f1);
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.4);
  z-index: 2;
}

.theme-epms-landing .epms-mock-pill--tr { top: 12px; right: 12px; }
.theme-epms-landing .epms-mock-pill--bl { bottom: 16px; left: 12px; }

.theme-epms-landing .epms-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 10px 0;
}

.theme-epms-landing .epms-mock-chart span {
  flex: 1;
  background: linear-gradient(180deg, #93c5fd, #1677ff);
  border-radius: 4px 4px 0 0;
  min-height: 20%;
}

.theme-epms-landing .epms-mock-chart span:nth-child(2) { height: 55%; }
.theme-epms-landing .epms-mock-chart span:nth-child(3) { height: 75%; }
.theme-epms-landing .epms-mock-chart span:nth-child(4) { height: 45%; }
.theme-epms-landing .epms-mock-chart span:nth-child(5) { height: 90%; }
.theme-epms-landing .epms-mock-chart span:nth-child(6) { height: 60%; }

.theme-epms-landing .epms-mock--dark {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 100%);
  border-color: #334155;
}

.theme-epms-landing .epms-mock--dark .epms-mock-bar {
  background: rgba(0, 0, 0, 0.3);
  border-color: #334155;
}

.theme-epms-landing .epms-mock--dark .epms-mock-card {
  background: rgba(255, 255, 255, 0.08);
}

.theme-epms-landing .epms-mock--dark .epms-mock-card b {
  color: #7dd3fc;
}

.theme-epms-landing .epms-mock--dark .epms-mock-card small {
  color: #94a3b8;
}

/* ===== 客户成功方法论 ===== */
.theme-epms-landing .epms-method {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff 0%, #eef4ff 100%);
  text-align: center;
}

.theme-epms-landing .epms-section-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.theme-epms-landing .epms-section-title::before,
.theme-epms-landing .epms-section-title::after {
  content: "⌜";
  color: var(--epms-primary);
  margin-right: 0.25rem;
}

.theme-epms-landing .epms-section-title::after {
  content: "⌟";
  margin-left: 0.25rem;
  margin-right: 0;
}

.theme-epms-landing .epms-method-formula {
  color: var(--epms-muted);
  font-size: 0.9375rem;
  margin-bottom: 2.5rem;
}

.theme-epms-landing .epms-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

@media (max-width: 768px) {
  .theme-epms-landing .epms-method-grid {
    grid-template-columns: 1fr;
  }
}

.theme-epms-landing .epms-method-card {
  background: var(--epms-card);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
}

.theme-epms-landing .epms-method-card h3 {
  font-size: 1.125rem;
  color: var(--epms-primary);
  margin-bottom: 0.5rem;
}

.theme-epms-landing .epms-method-card .sub {
  font-size: 0.8125rem;
  color: var(--epms-muted);
  margin-bottom: 0.75rem;
}

.theme-epms-landing .epms-method-card p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
}

/* ===== 开放平台三卡片 ===== */
.theme-epms-landing .epms-platform {
  padding: 5rem 0;
  background: var(--epms-bg);
  text-align: center;
}

.theme-epms-landing .epms-platform-sub {
  color: var(--epms-muted);
  font-size: 0.9375rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.theme-epms-landing .epms-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .theme-epms-landing .epms-platform-grid {
    grid-template-columns: 1fr;
  }
}

.theme-epms-landing .epms-platform-card {
  position: relative;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.theme-epms-landing .epms-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22, 119, 255, 0.15);
}

.theme-epms-landing .epms-platform-card.is-active {
  background: linear-gradient(135deg, #1677ff 0%, #0958d9 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 32px rgba(22, 119, 255, 0.35);
}

.theme-epms-landing .epms-platform-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--epms-primary);
  color: var(--epms-primary);
}

.theme-epms-landing .epms-platform-card.is-active .epms-platform-tag {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.theme-epms-landing .epms-platform-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.theme-epms-landing .epms-platform-card p {
  font-size: 0.8125rem;
  opacity: 0.85;
  line-height: 1.6;
}

.theme-epms-landing .epms-platform-card .epms-btn-outline {
  margin-top: 1rem;
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
}

.theme-epms-landing .epms-platform-card.is-active .epms-btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.theme-epms-landing .epms-platform-card.is-active .epms-btn-outline:hover {
  background: #fff;
  color: var(--epms-primary);
}

/* ===== 客户案例 ===== */
.theme-epms-landing .epms-cases {
  padding: 5rem 0;
  background: #fff;
}

.theme-epms-landing .epms-cases-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.theme-epms-landing .epms-cases-head a {
  color: var(--epms-primary);
  font-size: 0.9375rem;
  text-decoration: none;
  margin-left: 0.5rem;
}

.theme-epms-landing .epms-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .theme-epms-landing .epms-cases-grid {
    grid-template-columns: 1fr;
  }
}

.theme-epms-landing .epms-case-card {
  background: var(--epms-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.theme-epms-landing .epms-case-thumb {
  height: 140px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.05em;
}

.theme-epms-landing .epms-case-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.theme-epms-landing .epms-case-body h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.theme-epms-landing .epms-case-body p {
  font-size: 0.8125rem;
  color: var(--epms-muted);
  line-height: 1.7;
  flex: 1;
}

.theme-epms-landing .epms-case-body .epms-btn-outline {
  align-self: center;
  margin-top: 1rem;
  font-size: 0.8125rem;
  border-radius: 999px;
}

/* ===== 底部 CTA ===== */
.theme-epms-landing .epms-landing-cta {
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  background: linear-gradient(160deg, #0c3d7a 0%, #1677ff 50%, #4096ff 100%);
  color: #fff;
}

.theme-epms-landing .epms-landing-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.theme-epms-landing .epms-landing-cta p {
  opacity: 0.92;
  margin-bottom: 2rem;
}

.theme-epms-landing .epms-landing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* 底部 CTA 使用 site 的 .btn 类名时补全样式 */
.theme-epms-landing .epms-landing-cta .btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.theme-epms-landing .epms-landing-cta .btn-primary {
  background: #fff;
  color: var(--epms-primary);
  border-color: #fff;
}

.theme-epms-landing .epms-landing-cta .btn-primary:hover {
  color: var(--epms-primary-dark);
}

.theme-epms-landing .epms-landing-cta .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.theme-epms-landing .epms-landing-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* 压住 common.css 全局 reset */
.main-body .theme-epms-landing {
  font-size: 16px;
  line-height: 1.6;
  color: var(--epms-text);
}

.main-body .theme-epms-landing h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.main-body .theme-epms-landing h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
}

.main-body .theme-epms-landing a.epms-btn-primary,
.main-body .theme-epms-landing a.epms-btn-outline,
.main-body .theme-epms-landing .epms-btn-fill a {
  text-decoration: none;
}

.main-body .theme-epms-landing table.epms-mock-table {
  border-collapse: collapse;
  width: 100%;
}

.main-body .theme-epms-landing .epms-mock-nav span {
  cursor: default;
  text-decoration: none;
}

/* ===== 样式隔离加固（防止 common.css / blacklake 覆盖） ===== */
.main-body .theme-epms-landing {
  background: var(--epms-bg);
  overflow-x: hidden;
}

.main-body .theme-epms-landing .epms-serves-module {
  padding: 5.25rem 0;
}

.main-body .theme-epms-landing .container.epms-serves-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3.75rem;
  align-items: center;
  min-height: 380px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.main-body .theme-epms-landing .epms-serves-copy h2 {
  font-weight: 700;
  color: #0f172a;
}

.main-body .theme-epms-landing .epms-module-num {
  display: block;
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(22, 119, 255, 0.1);
}

.main-body .theme-epms-landing .epms-feature-line .desc {
  color: var(--epms-muted);
}

.main-body .theme-epms-landing .epms-btn-fill a {
  display: inline-block;
  padding: 0.625rem 2rem;
  background: var(--epms-primary);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 4px 14px rgba(22, 119, 255, 0.3);
}

.main-body .theme-epms-landing .epms-btn-fill a:hover {
  background: var(--epms-primary-dark);
  color: #fff !important;
}

.main-body .theme-epms-landing .epms-mock {
  display: block;
  width: 100%;
}

@media (max-width: 992px) {
  .main-body .theme-epms-landing .container.epms-serves-item {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 2.5rem;
  }

  .main-body .theme-epms-landing .container.epms-serves-item .epms-serves-copy {
    order: 1;
  }

  .main-body .theme-epms-landing .container.epms-serves-item .epms-serves-visual {
    order: 2;
  }
}

@media (min-width: 993px) {
  .main-body .theme-epms-landing .container.epms-serves-item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
}