/* ==========================================================================
   Speed Timeline / Process Styles (speed-timeline.css)
   ========================================================================== */

.speed-timeline-section {
  background-color: #faf9f5;
  padding: 5rem 0 4.5rem 0;
  position: relative;
}
.speed-timeline-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: center;
}
.speed-timeline-content {
  text-align: left;
}
.speed-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fqrs-gold);
  margin-bottom: 1rem;
}
.speed-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.speed-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.btn-speed-cta {
  background: linear-gradient(135deg, #e5a93c 0%, #d97706 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 1.65rem;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), filter var(--trans-fast);
}
.btn-speed-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
  filter: brightness(1.08);
  color: #ffffff !important;
}
.speed-timeline-track-wrap {
  width: 100%;
  position: relative;
}
.timeline-steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  position: relative;
}
.timeline-steps-track::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-color: #e5a93c;
  z-index: 1;
}
.timeline-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-circle-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.timeline-step-item:hover .step-circle-badge {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.2);
}
.step-icon-svg {
  width: 65px;
  height: 65px;
  stroke: #d97706;
}
.step-num-badge {
  background-color: #d97706;
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -12px auto 0.65rem auto;
  position: relative;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.step-item-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 0.45rem;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-item-desc {
  font-size: 0.75rem;
  color: #475569;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1024px) {
  .speed-timeline-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .speed-timeline-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .timeline-steps-track {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .timeline-steps-track::before {
    display: none;
  }
}
