/* AI Page CSS : apache-pulsar */
.wck {
  background-color: #f9fafb;
  padding: 80px 0;
}

.wck__heading {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  color: #212121;
  text-align: center;
  max-width: 783px;
  margin: 0 auto 40px;
}

/* ---------- card base ---------- */
.wck__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 6px 16px 0px rgba(16, 24, 40, 0.04);
  padding: 24px;
  position: relative;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---------- stat cards (24x7, 12+) ---------- */
.wck__card--stat .wck__card-bg-circle {
  width: 73px;
  height: 73px;
  display: block;
  flex-shrink: 0;
}

.wck__card--stat .wck__card-bg-circle img {
  width: 100%;
  height: 100%;
  display: block;
}

.wck__card-stat-value {
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  color: #212121;
  white-space: nowrap;
}

.wck__card-stat-value--12 {
  left: 24px;
  top: 33px;
}

.wck__card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #212121;
  margin: 0;
}

/* ---------- icon cards ---------- */
.wck__card-bg-circle--red {
  width: 73px;
  height: 73px;
  display: block;
  flex-shrink: 0;
}

.wck__card-bg-circle--red img {
  width: 100%;
  height: 100%;
  display: block;
}

.wck__icon-badge {
  width: 48px;
  height: 48px;
  background: #fef2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wck__icon-badge--left24 {
  left: 24px;
}

.wck__icon-badge img {
  width: 24px;
  height: 24px;
  display: block;
}

/* ---------- compliance card ---------- */
.wck__card--compliance .wck__icon-badge {
  position: static;
  flex-shrink: 0;
}

/* ---------- CTA button ---------- */
.wck__cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.wck__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e32235;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  padding: 16px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}

.wck__cta-btn:hover {
  background: #c41d2d;
  color: #fff;
}

.wck__cta-btn svg {
  flex-shrink: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .wck {
    padding: 48px 0;
  }

  .wck__heading {
    font-size: 32px;
    line-height: 42px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .wck__heading {
    font-size: 28px;
    line-height: 38px;
  }
}

.pulsar-img {
  max-width: unset;
  height: auto;
}