/* ============================================================
   KIRVX PROCESS SECTION — PREMIUM STAGGER DESIGN
============================================================ */

.kirvx-process {
  width: 100%;
  padding: 60px 0 40px;
  background: radial-gradient(circle at 20% 20%, rgba(71,241,56,0.10), transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(71,241,56,0.08), transparent 70%),
              #05070a;
  position: relative;
  overflow: hidden;
}

/* HEADER */
.kirvx-process-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 20px;
}

.kirvx-process-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #47F138;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.kirvx-process-title {
  font-size: 38px;
  color: #e5e5e5;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kirvx-process-sub {
  color: #a5a5a5;
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.8;
}

/* PATH */
.kirvx-process-canvas {
  width: 100%;
  height: 140px;
  margin-bottom: -10px;
}

#kirvxProcessPathSVG {
  width: 100%;
  height: 100%;
}

/* STAGGER LAYOUT */
.kirvx-process-stagger {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0px;
  padding: 0 40px;
  position: relative;
  margin-top: -20px;
}

/* CARDS */
.kirvx-process-card {
  width: 260px;
  padding: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.55);

  opacity: 0;
  transform: translateY(26px);
  transition: all 0.7s cubic-bezier(.21,.98,.6,1);
}

.kirvx-process-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* DOT */
.kirvx-process-dot {
  width: 12px;
  height: 12px;
  background: #47F138;
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 0 12px rgba(71,241,56,0.6);
}

/* TYPO */
.kirvx-process-card h3 {
  font-size: 17px;
  color: #e5e5e5;
  margin-bottom: 8px;
}

.kirvx-process-card p {
  font-size: 14px;
  color: #bfbfbf;
  line-height: 1.55;
}

/* STAGGER POSITIONS */
.kirvx-process-card.up { margin-top: -10px; }
.kirvx-process-card.mid { margin-top: 40px; }
.kirvx-process-card.down { margin-top: 90px; }
.kirvx-process-card.mid2 { margin-top: 25px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .kirvx-process-stagger {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .kirvx-process-card {
    width: 100%;
    margin-top: 0 !important;
  }
}
