.data-grid-section.lp-grid .row {
  position: relative;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 26px;
  border-radius: 34px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 16px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(22, 25, 45, 0.08);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: all 0.35s ease;
  z-index: -1;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 145px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #2acbf3;
  box-shadow:
    0 0 0 8px rgba(42, 203, 243, 0.26),
    0 0 34px rgba(42, 203, 243, 0.75);
  z-index: 2;
  animation: glowPing 1.8s ease-out infinite;
}

@keyframes glowPing {
  0% {
    box-shadow:
      0 0 0 0 rgba(42, 203, 243, 0.45),
      0 0 20px rgba(42, 203, 243, 0.65);
    transform: translateX(-50%) scale(0.9);
  }

  60% {
    box-shadow:
      0 0 0 24px rgba(42, 203, 243, 0),
      0 0 60px rgba(42, 203, 243, 0.95);
    transform: translateX(-50%) scale(1.18);
  }

  100% {
    box-shadow:
      0 0 0 28px rgba(42, 203, 243, 0),
      0 0 20px rgba(42, 203, 243, 0.35);
    transform: translateX(-50%) scale(0.9);
  }
}

.step-card img {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 55px rgba(20, 24, 40, 0.10);
}

.step-card .mb-4 {
  position: relative;
  margin-bottom: 2rem !important;
}

.step-card .mb-4::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.45) 45%,
    transparent 70%
  );
  opacity: 0;
  transform: translateX(-35%);
  transition: all 0.6s ease;
  pointer-events: none;
}

/* Eyebrow */
.step-card .eyebrow {
  margin-bottom: 8px;
  color: #2acbf3;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.step-card h3 {
  color: #330fb1;
  font-size: 2em;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.step-card .contenido {
  max-width: 360px;
  color: #777;
  font-size: 1.12rem;
  line-height: 1.55;
}

.step-card .contenido h5 {
  color: #111;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-card .btn-primary {
  border: 0;
  margin: .6em .6em .6em 0;
    transition: all .25s ease;
    font-size: 1rem;
    line-height: 1.5;
  display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    font-weight: 800;
    background-color: #29d0fd;
    padding: 0 22px;
    color: #fff;
  box-shadow: 0 18px 38px rgba(42, 203, 243, 0.28);
}

.step-card .btn-primary:hover  {
  transform: translateY(-2px);
}

.step-card {
  opacity: 0;
  animation: stepFadeUp 0.7s ease forwards;
}

.step-card:nth-child(1) {
  animation-delay: 0.05s;
}

.step-card:nth-child(2) {
  animation-delay: 0.18s;
}

.step-card:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes stepFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 767.98px) {
  .data-grid-section.lp-grid {
    padding: 50px 0;
  }

  .data-grid-section.lp-grid .row::before {
    display: none;
  }

  .step-card {
    margin-bottom: 42px;
  }

  .step-card::after {
    top: 135px;
  }

  .step-card img {
    max-width: 420px;
  }

  .step-card h3 {
    font-size: 2.3rem;
  }
}