/* ==========================================================================
   BPoint Home — Why Bpoint / stats
   ========================================================================== */

.bp-home .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.bp-home .why-list { display: grid; gap: 0; margin-top: 28px; }
.bp-home .why-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.bp-home .why-item:last-child { border-bottom: none; }
.bp-home .why-item .wi-ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--paper);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bp-home .why-item .wi-ico > svg { width: 22px; height: 22px; }
.bp-home .why-item h4 { font-size: 16px; color: var(--navy); }
.bp-home .why-item p { font-size: 14px; color: var(--slate); margin-top: 4px; }

.bp-home .why-stats {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 40px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  position: relative;
  overflow: hidden;
}
.bp-home .why-stats .radial-glow { background: radial-gradient(420px 280px at 90% 0, rgba(120, 140, 165, .3), transparent 70%); }
.bp-home .why-stat { position: relative; z-index: 1; }
.bp-home .why-stat .n { font-family: var(--display); font-weight: 700; font-size: 36px; line-height: 1; color: #fff; }
.bp-home .why-stat .n .u { color: var(--blue-bright); }
.bp-home .why-stat .l { font-size: 13px; color: #9fb0c9; margin-top: 7px; line-height: 1.4; }

@media (max-width: 980px) { .bp-home .why-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 600px) { .bp-home .why-stats { grid-template-columns: 1fr; } }
