/* JPRO Why Choose — clinical / professional backdrop */
.t1-why-jpro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 24px;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(3, 49, 143, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 50% at 100% 100%, rgba(3, 49, 143, 0.07), transparent 50%),
    linear-gradient(165deg, #eef2fb 0%, #f6f8fd 42%, #eaeefc 100%);
}

.t1-why-jpro .wj-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.t1-why-jpro .wj-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 22, 84, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 22, 84, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
}

.t1-why-jpro .wj-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.t1-why-jpro .wj-bg-glow--a {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(26, 86, 196, 0.22) 0%, transparent 70%);
}

.t1-why-jpro .wj-bg-glow--b {
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.16) 0%, transparent 70%);
}

.t1-why-jpro .wj-bg-mark {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(9, 22, 84, 0.045);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.t1-why-jpro .wj-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Header ── */
.t1-why-jpro .wj-header {
  text-align: center;
  margin-bottom: 40px;
}

.t1-why-jpro .wj-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #03318f;
  margin-bottom: 10px;
}

.t1-why-jpro .wj-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 2.5vw, 35px);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #091654;
}

/* ── Grid ── */
.t1-why-jpro .wj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Card ── */
.t1-why-jpro .wj-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-top: 3px solid transparent;
  border-radius: 8px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-top-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* decorative background number */
.t1-why-jpro .wj-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -6px;
  right: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: rgba(26, 86, 196, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.t1-why-jpro .wj-card:hover {
  border-top-color: #03318f;
  box-shadow: 0 12px 36px rgba(3, 49, 143, 0.12);
  transform: translateY(-5px);
}

/* ── Icon circle ── */
.t1-why-jpro .wj-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #03318f 0%, #1a56c4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(3, 49, 143, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.t1-why-jpro .wj-card:hover .wj-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(3, 49, 143, 0.32);
}

/* ── Text ── */
.t1-why-jpro .wj-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #03318f;
  margin: 0 0 8px;
  line-height: 1.3;
}

.t1-why-jpro .wj-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #555e7a;
  line-height: 1.65;
  margin: 0;
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .t1-why-jpro .wj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .t1-why-jpro {
    padding: 40px 16px;
  }

  .t1-why-jpro .wj-header {
    margin-bottom: 24px;
  }

  .t1-why-jpro .wj-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .t1-why-jpro .wj-card {
    padding: 20px 12px 16px;
  }

  .t1-why-jpro .wj-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .t1-why-jpro .wj-card::before {
    font-size: 54px;
  }
}