/* ==========================================================================
   Numbered steps / how it works
   ========================================================================== */
.fp-steps {
  position: relative;
  overflow: hidden;
  padding: var(--fp-space-section) 0;
  background: var(--fp-white);
}
.fp-steps__motif {
  z-index: 0;
}
.fp-steps__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--fp-space-lg);
}
.fp-steps__intro .fp-section-title {
  margin-bottom: 0;
}
.fp-steps__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fp-space-sm);
}
.fp-step-card:nth-child(even) {
  transform: translateY(20px);
}
.fp-step-card {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--fp-radius);
  background: var(--fp-bg-soft);
  border: 1px solid var(--fp-border);
  text-align: center;
  box-shadow: 0 16px 32px rgba(var(--fp-shadow-rgb), 0.05);
  transition:
    transform 0.25s cubic-bezier(0.2, 0, 0, 1),
    box-shadow 0.25s cubic-bezier(0.2, 0, 0, 1);
}
.fp-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(var(--fp-shadow-rgb), 0.1);
}
.fp-step-card__icon {
  margin: 0 auto 14px;
}
.fp-step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fp-accent), var(--fp-brand));
  color: var(--fp-white);
  font-weight: 700;
}
.fp-step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--fp-text);
}
.fp-step-card p {
  margin: 0;
  color: var(--fp-text-muted);
  font-size: 0.92rem;
}
.fp-steps__cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: var(--fp-space-lg);
}

@media (max-width: 900px) {
  .fp-steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .fp-steps__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .fp-step-card:nth-child(even) {
    transform: none;
  }
  .fp-step-card {
    padding: 24px 20px;
  }
}
