:root{
  --bk-overlay-1: rgba(0,160,255,0.14);
  --bk-overlay-2: rgba(0,160,255,0.08);
  --bk-glow: rgba(0,160,255,0.35);
}

.bk-feature-card{
  position:relative;
  border-radius:20px;
  padding:22px;
  background: rgba(18, 28, 49, 0.55);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow:hidden;
}

.bk-feature-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(70% 80% at 20% 10%, var(--bk-overlay-1) 0%, transparent 60%),
    radial-gradient(80% 90% at 80% 20%, var(--bk-overlay-2) 0%, transparent 70%);
  opacity:.5;
  transition: opacity .25s ease;
  pointer-events:none;
}

.bk-feature-card:hover{
  border-color: rgba(0,160,255,0.65);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45), 0 0 0 1px var(--bk-glow);
  transform: translateY(-2px);
}

.bk-feature-card:hover::before{
  opacity: 1;
}

.bk-feature-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  position:relative;
  z-index:1;
}

.bk-feature-card__icon-wrap{
  width:56px;
  height:56px;
  border-radius:14px;
  background: rgba(0,160,255,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
}

.bk-feature-card__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  color: rgba(0,160,255,0.95);
}

.bk-feature-card__icon svg{
  width: 22px;
  height: 22px;
}

.bk-feature-card__stat{
  text-align:right;
}

.bk-feature-card__number{
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: rgba(0,160,255,0.95);
}

.bk-feature-card__label{
  margin-top:4px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
}

.bk-feature-card__body{
  margin-top:14px;
  position:relative;
  z-index:1;
}

.bk-feature-card__title{
  margin:0 0 10px 0;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  transition: color .25s ease;
}

.bk-feature-card__desc{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.70);
}


/* Equal height support (Elementor Container / Flexbox) */
.elementor-widget-benkruz_features_card_widget{
  height: 100%;
}

.bk-feature-card--equal{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bk-feature-card--equal .bk-feature-card__body{
  flex: 1;
}
