/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 14 2026 | 11:33:22 */
.taxik-steps {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 15% 20%, rgba(109, 220, 255, 0.08), transparent 24%),
    radial-gradient(circle at 85% 80%, rgba(255, 212, 92, 0.08), transparent 24%),
    linear-gradient(180deg, #07101d 0%, #050816 100%);
}

.taxik-steps-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.taxik-steps-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.7;
}

.taxik-steps-orb-1 {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 120px;
  background: rgba(109, 220, 255, 0.12);
}

.taxik-steps-orb-2 {
  width: 320px;
  height: 320px;
  right: -100px;
  bottom: 40px;
  background: rgba(255, 212, 92, 0.10);
}

.taxik-steps-heading {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.taxik-steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: #d6f3ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.taxik-steps-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6ddcff, #ffd45c);
  box-shadow: 0 0 15px rgba(109,220,255,0.45);
}

.taxik-steps-title {
  margin: 22px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: #fff;
}

.taxik-steps-title span {
  display: block;
  margin-top: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #8dddff 46%, #ffd45c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.taxik-steps-text {
  max-width: 780px;
  margin: 22px auto 0;
  color: rgba(230, 238, 248, 0.78);
  font-size: 18px;
  line-height: 1.85;
}

.taxik-steps-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.taxik-steps-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(109,220,255,0.10) 0%,
    rgba(109,220,255,0.55) 25%,
    rgba(255,212,92,0.55) 75%,
    rgba(255,212,92,0.10) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.taxik-steps-line-glow {
  display: block;
  width: 180px;
  height: 100%;
  background: linear-gradient(90deg, rgba(109,220,255,0), rgba(109,220,255,0.9), rgba(255,212,92,0.9), rgba(255,212,92,0));
  filter: blur(6px);
  animation: taxikFlowMove 4.5s linear infinite;
}

.taxik-step-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px 26px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.taxik-step-card:hover,
.taxik-step-card.is-active,
.taxik-step-card-featured {
  transform: translateY(-8px);
  border-color: rgba(109,220,255,0.24);
  box-shadow: 0 28px 80px rgba(0,0,0,0.24);
}

.taxik-step-card-featured {
  background:
    radial-gradient(circle at top right, rgba(109,220,255,0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255,212,92,0.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 100%);
}

.taxik-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.taxik-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.taxik-step-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #8dddff;
  font-size: 22px;
}

.taxik-step-card-featured .taxik-step-icon {
  color: #ffd45c;
}

.taxik-step-card h3 {
  margin: 22px 0 0;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.taxik-step-card p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(230,238,248,0.76);
}

.taxik-step-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.taxik-step-mini-item {
  flex: 1 1 180px;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.taxik-step-mini-item strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.taxik-step-mini-item span {
  display: block;
  margin-top: 6px;
  color: rgba(224,233,246,0.70);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.taxik-steps-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.taxik-steps-cta-text h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.taxik-steps-cta-text p {
  margin: 12px 0 0;
  max-width: 760px;
  color: rgba(230,238,248,0.76);
  font-size: 16px;
  line-height: 1.8;
}

.taxik-steps-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

.taxik-steps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.taxik-steps-btn-primary {
  color: #07101d;
  background: linear-gradient(135deg, #ffffff 0%, #dff6ff 100%);
  box-shadow: 0 18px 50px rgba(255,255,255,0.12);
}

.taxik-steps-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.taxik-steps-btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.taxik-steps-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.11);
}

@keyframes taxikFlowMove {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(calc(100vw - 280px));
  }
}

@media (max-width: 1100px) {
  .taxik-steps-flow {
    grid-template-columns: 1fr;
  }

  .taxik-steps-line {
    display: none;
  }

  .taxik-steps-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .taxik-steps {
    padding: 85px 0 95px;
  }

  .taxik-steps-container {
    padding: 0 18px;
  }

  .taxik-steps-title {
    font-size: clamp(32px, 11vw, 46px);
    line-height: 0.98;
  }

  .taxik-steps-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .taxik-step-card,
  .taxik-steps-cta {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .taxik-step-card h3 {
    font-size: 24px;
  }

  .taxik-steps-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .taxik-steps-btn {
    width: 100%;
  }
}