/* ═══════════════════════════════════════════════════════
   UTILITY CLASSES - Replaces common inline styles
   ═══════════════════════════════════════════════════════ */

/* ── Typography ─────────────────────────────────────────── */
.text-sm { font-size: 14px; color: #64748b; }
.text-xs { font-size: 13px; color: #64748b; }
.text-base { font-size: 18px; color: #64748b; }
.text-heading { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.text-title { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.text-title-lg { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.text-center { text-align: center; }

/* ── Sections ───────────────────────────────────────────── */
.section-white { padding: 80px 0; background: #fff; }
.section-gray { padding: 80px 0; background: #f8fafc; }
.section-header { text-align: center; margin-bottom: 48px; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  text-align: center;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.card-gray {
  margin-bottom: 24px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
}
.card-elevated {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ── Images ─────────────────────────────────────────────── */
.img-cover {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Grid ───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* ── Icon Boxes ─────────────────────────────────────────── */
.icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box-amber { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.icon-box-pink { background: linear-gradient(135deg, #fce7f3, #f9a8d4); }
.icon-box-green { background: linear-gradient(135deg, #dcfce7, #86efac); }

/* ── CTA Sections ───────────────────────────────────────── */
.cta-orange {
  padding: 80px 0;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  text-align: center;
  color: #fff;
}
