.cj-funnel-wrap {
  --bg: #000000;
  --card: #ffffff;
  --text: #243024;
  --muted: #657165;
  font-family: Inter, Arial, sans-serif;
  padding: 32px;
  border-radius: 24px;
}
.cj-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}
.cj-sub {
  margin: 0 0 24px;
}
.cj-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 16px;
  align-items: center;
}
.cj-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cj-card {
  background: var(--card);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  animation: fadeUp-592fba91 .8s ease both;
}
.cj-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}
.cj-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.cj-card .tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #edf7ea;
  color: #2f6b35;
  font-size: 12px;
  font-weight: 700;
}

.cj-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}
.cj-seg {
  position: relative;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: .2px;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
  animation: pulse-592fba91 2.8s ease-in-out infinite;
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}
.cj-seg span {
  position: relative;
  z-index: 2;
  font-size: 14px;
}
.cj-seg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.02));
  clip-path: inherit;
  border-radius: 12px;
}

.cj-foot {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

@keyframes fadeUp-592fba91 {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-592fba91 {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(2px) scale(1.01); }
}

@media (max-width: 900px) {
  .cj-grid { grid-template-columns: 1fr; }
  .cj-funnel { order: -1; }
}
