


.vulclast-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #ffffff 100%);
  position: relative;
}

.vulclast-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(31, 111, 237, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(247, 167, 49, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.vulclast-header {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.vulclast-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.vulclast-step {
  text-align: center;
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.vulclast-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.vulclast-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 77, 162, 0.15);
}

.vulclast-step__number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}

.vulclast-step__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;

  
  filter: drop-shadow(0 10px 22px rgba(15, 77, 162, 0.18));
}

.vulclast-step:hover .vulclast-step__icon {
  transform: scale(1.1) rotate(5deg);
}


.vulclast-step__icon img,
.vulclast-step__icon object {
  width: 100%;
  height: 100%;
  display: block;
}


.vulclast-step__icon img {
  object-fit: contain;
}


.vulclast-step__icon object {
  pointer-events: none;
  border: 0;
}


.vulclast-step h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.vulclast-step p {
  color: var(--p-color);
  margin: 0;
  line-height: 1.6;
}

.vulclast-logo {
  max-width: 200px;
  height: auto;
}

.vulclast-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


.vulclast-step:nth-child(1) { transition-delay: 0.1s; }
.vulclast-step:nth-child(2) { transition-delay: 0.2s; }
.vulclast-step:nth-child(3) { transition-delay: 0.3s; }
.vulclast-step:nth-child(4) { transition-delay: 0.4s; }

@media (max-width: 768px) {
  .vulclast-section {
    padding: 4rem 0;
  }

  .vulclast-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vulclast-ctas {
    flex-direction: column;
  }

  .vulclast-ctas .btn {
    width: 100%;
  }
}


@media (prefers-reduced-motion: reduce) {
  .vulclast-step {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .vulclast-step:hover {
    transform: none !important;
  }

  .vulclast-step__icon,
  .vulclast-step:hover .vulclast-step__icon {
    transition: none !important;
    transform: none !important;
  }

  
  .vulclast-step__icon {
    filter: none !important;
  }
}


.vulclast-ctas .custom-btn {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(31, 111, 237, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vulclast-ctas .custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31, 111, 237, 0.35);
}
