/* 
  ========================================
  Pod Activation Timeline (pod-hire-bar)
  ========================================
*/

.pod-hire-bar {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  padding: 2.5rem;
  margin: 3rem auto;
  
  position: relative;
  border: 1px solid #e2e8f0;
}

.pod-hire-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pod-hire-label-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1rem;
}

.pod-hire-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #64748b;
}

.pod-hire-speed-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1642b3;
  background: rgba(22, 66, 179, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

.pod-hire-speed-badge i {
  color: #eab308;
}

/* Steps Grid */
.pod-hire-steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pod-hire-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pod-hire-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pod-hire-step {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pod-hire-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.pod-hire-step-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pod-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  font-family: monospace;
}

.pod-step-timing {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pod-step-timing.highlight {
  color: #1642b3;
}

.pod-hire-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.pod-hire-step-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.pod-hire-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.pod-step-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: #e2e8f0;
  color: #475569;
}

.pod-step-tag.active {
  background: #dbeafe;
  color: #1d4ed8;
}

/* Guarantee Row */
.pod-hire-guarantee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #cbd5e1;
}

.pod-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
}

.pod-guarantee-item i {
  color: #10b981;
}
