export type PainCategory = 'design' | 'data' | 'time'
export type LeadIntent = 'booking' | 'roi_report' | 'dalibot'

export interface Lead {
  id: string
  created_at: string
  name: string
  email: string
  phone: string | null
  business_type: string
  pain_category: PainCategory
  current_tools: string
  manual_hours_per_week: number
  lead_intent: LeadIntent
  lead_score: number
  notes: string | null
}

export interface LeadInsert {
  name: string
  email: string
  phone?: string
  business_type: string
  pain_category: PainCategory
  current_tools?: string
  manual_hours_per_week?: number
  lead_intent: LeadIntent
  notes?: string
}
