/* ===================================== */
/* HOW IT WORKS / STEPS SECTION STYLES */
/* ===================================== */

.steps-zen {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 720px;
  margin: var(--space-xl) auto 0;
}

.step-zen {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-paper-sm);
  position: relative;
}

/* Paper texture */
.step-zen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.step-zen:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-paper-md);
  border-color: var(--accent);
}

.step-zen-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-lg);
  font-weight: 600;
  font-family: var(--font-display);
  box-shadow: var(--shadow-paper-sm);
  position: relative;
  z-index: 1;
}

.step-zen-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-zen-title {
  font-size: var(--font-base);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--space-xs) 0;
  font-family: var(--font-display);
}

.step-zen-description {
  font-size: var(--font-xs);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* RESPONSIVE - DESKTOP */
@media (min-width: 1024px) {
  .steps-zen {
    max-width: 800px;
  }
}
