/* Steps/Journey Section */
.journey-section {
  background: var(--gradient-bg);
  padding: 2rem 0;
  position: relative;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

.journey-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(147, 51, 234, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.journey-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.journey-card:hover::before {
  transform: scaleX(1);
}

.journey-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-number {
  background: var(--gradient-secondary);
  color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  position: relative;
  z-index: 2;
}

.step-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, var(--primary-color), transparent);
  margin-top: 1rem;
}

.journey-card:last-child .step-line {
  display: none;
}

.journey-content {
  flex: 1;
}

.journey-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.journey-header h3 {
  margin: 0;
}

.journey-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.journey-icon svg {
  width: 24px;
  height: 24px;
}

.journey-content h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--text-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.journey-content p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.journey-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: var(--gradient-bg);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .journey-card {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem;
  }

  .step-line {
    width: 2px;
    height: 80px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

/* Small mobile devices (480px and down) */
@media (max-width: 480px) {
  .journey-card {
    padding: 1.5rem;
  }
}
