/* GRID */
.vm-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD */
.vm-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

/* HOVER */
.vm-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* TOP STRIP */
.vm-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
}

/* TITLE */
.vm-heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

/* TEXT */
.vm-box p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* LIST */
.vm-box ul {
  padding-left: 0;
}

.vm-box ul li {
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-black);
}

/* ICON BULLET */
.vm-box ul li::before {
  content: "➤";
  color: var(--accent-red);
  font-weight: bold;
  margin-right: 10px;
}

/* ICON BADGE */
.vm-icon {
  width: 50px;
  height: 50px;
  background: rgba(38,52,137,0.1);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vm-wrapper {
    grid-template-columns: 1fr;
  }
}