Case Studies Real employers. Measurable savings. How self-funded employers use Smart Scan Medical Imaging and Smart Infusion Therapy Services to lower healthcare spend without compromising care. (function () { // 1) Published-CSV feed for the Case Studies sheet // (File > Share > Publish to web > CSV). Leave as '' to use SEED below. var FEED_URL = 'https://docs.google.com/spreadsheets/d/e/2PACX-1vR1W9edbjsg7zfwlpzK0cc6EwQ0Ux0HnKOYR0QGXvg5y1Sm6ELN6n7dLW8Gf0Wq6WWhKaBfl_3Mmw0x/pub?gid=554104843&single;=true&output;=csv'; // 2) Built-in fallback so the widget always renders something. // Keep in sync with the sheet, or just rely on the live feed once wired. var BASE = 'https://www.myssmi.com/resources/case-studies/'; var SEED = [ { category:'Manufacturing', title:'Air Equipment Manufacturer', summary:'A global manufacturer folded Smart Scan and Smart Infusion into its self-funded plan. Even at partial utilization the savings are real, with a much larger opportunity still ahead.', stat:'$270,100', statLabel:'Annual imaging savings · 118 MRIs · 25% utilization', buttonText:'Read the case study', url:BASE+'case-study-air-equipment-manufacturer', image:'' }, { category:'Manufacturing', title:'Cheese Manufacturer', summary:'A regional cheese manufacturer opened access to lower-cost imaging and infusion. Early utilization is already generating value and points to a much bigger opportunity.', stat:'$89,000', statLabel:'Total savings · 27 MRIs · 4 infusions', buttonText:'Read the case study', url:BASE+'case-study-cheese-manufacturer', image:'' }, { category:'Manufacturing', title:'Mounting Systems Manufacturer', summary:'Strong internal advocacy plus Direct Primary Care incentives drove high adoption — proof of what employee engagement can do before a plan is even fully optimized.', stat:'$115,000', statLabel:'Annual savings · 77% scan utilization · 50% infusion utilization', buttonText:'Read the case study', url:BASE+'case-study-mounting-systems-manufacturer', image:'' }, { category:'Manufacturing', title:'Window & Door Manufacturer', summary:'A leading window and door manufacturer managed costs without compromising care. Moderate utilization delivered meaningful, measurable impact.', stat:'$120,000', statLabel:'Annual savings · 49 MRIs · 38% utilization', buttonText:'Read the case study', url:BASE+'case-study-window-door-manufacturer', image:'' }, { category:'Public Sector', title:'Wisconsin School District', summary:'A Wisconsin school district brought high-quality, lower-cost imaging and infusion options into its self-funded plan for staff and their families.', stat:'', statLabel:'', buttonText:'Read the case study', url:BASE+'case-study-wisconsin-school-district', image:'' } ]; var grid = document.getElementById('ss-cs-grid'); function esc(s) { return String(s == null ? '' : s).replace(/[&<>"']/g, function (c) { return { '&':'&', '<':'<', '>':'>', '"':'"', "'":''' }[c]; }); } function cardHTML(c) { var media = c.image ? '' : ''; var pill = c.category ? '' + esc(c.category) + '' : ''; var stat = c.stat ? '' + esc(c.stat) + '' + (c.statLabel ? '' + esc(c.statLabel) + '' : '') + '' : ''; var btnLabel = esc(c.buttonText || 'Read the case study'); return '' + '' + media + '' + '' + pill + '' + '' + esc(c.title) + '' + '' + esc(c.summary) + '' + stat + '' + btnLabel + '' + '' + '' + ''; } function render(cards) { if (!cards || !cards.length) { cards = SEED; } grid.innerHTML = cards.map(cardHTML).join(''); } // Minimal RFC-4180 CSV parser: handles quoted fields, embedded commas, // newlines inside quotes, and "" escaped quotes. function parseCSV(text) { var rows = [], row = [], field = '', inQuotes = false; text = text.replace(/\r\n/g, '\n').replace(/\r/g, '\n'); for (var i = 0; i < text.length; i++) { var ch = text[i]; if (inQuotes) { if (ch === '"') { if (text[i + 1] === '"') { field += '"'; i++; } else { inQuotes = false; } } else { field += ch; } } else if (ch === '"') { inQuotes = true; } else if (ch === ',') { row.push(field); field = ''; } else if (ch === '\n') { row.push(field); rows.push(row); row = []; field = ''; } else { field += ch; } } if (field.length || row.length) { row.push(field); rows.push(row); } return rows; } function isTrue(v) { return String(v).trim().toUpperCase() === 'TRUE'; } function rowsToCards(rows) { if (!rows.length) return []; var headers = rows.shift().map(function (h) { return String(h).trim(); }); var col = {}; headers.forEach(function (h, i) { col[h] = i; }); return rows .filter(function (r) { return r.length > 1; }) .map(function (r) { function g(name) { return col[name] != null ? String(r[col[name]] || '').trim() : ''; } return { order: parseInt(g('Order'), 10) || 0, active: g('Active'), category: g('Category'), title: g('Title'), summary: g('Summary'), stat: g('Stat'), statLabel: g('StatLabel'), buttonText: g('ButtonText') || 'Read the case study', url: g('URL'), image: g('Image') }; }) .filter(function (c) { return isTrue(c.active) && c.title && c.url; }) .sort(function (a, b) { return a.order - b.order; }); } function loadCSV(url) { var ctrl = window.AbortController ? new AbortController() : null; var timer = setTimeout(function () { if (ctrl) ctrl.abort(); }, 8000); fetch(url, ctrl ? { signal: ctrl.signal } : undefined) .then(function (res) { if (!res.ok) throw new Error(res.status); return res.text(); }) .then(function (text) { clearTimeout(timer); var cards = rowsToCards(parseCSV(text)); render(cards.length ? cards : SEED); }) .catch(function () { clearTimeout(timer); render(SEED); }); } if (FEED_URL) { loadCSV(FEED_URL); } else { render(SEED); } })(); /* All styles scoped to .ss-cs so they never leak into the host page. */ .ss-cs{ --ss-navy:#0b3d63; --ss-blue:#1573b8; --ss-blue-dk:#115c94; --ss-tint:#eaf3fa; --ss-ink:#1c2b36; --ss-muted:#5b6b7a; --ss-line:#e2e9f0; --ss-card:#ffffff; --ss-bg:#f6f9fc; box-sizing:border-box; max-width:1140px; margin:0 auto; padding:56px 20px; font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; color:var(--ss-ink); -webkit-font-smoothing:antialiased; } .ss-cs *,.ss-cs *::before,.ss-cs *::after{box-sizing:border-box;} .ss-cs__intro{max-width:680px;margin:0 0 36px;} .ss-cs__eyebrow{ margin:0 0 10px; font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--ss-blue); } .ss-cs__title{ margin:0 0 12px; font-size:clamp(1.7rem,3.4vw,2.5rem); line-height:1.12; font-weight:800; letter-spacing:-.01em; color:var(--ss-navy); } .ss-cs__lede{margin:0;font-size:1.05rem;line-height:1.55;color:var(--ss-muted);} .ss-cs__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; } @media (max-width:900px){ .ss-cs__grid{grid-template-columns:repeat(2,1fr);} } @media (max-width:600px){ .ss-cs__grid{grid-template-columns:1fr;} .ss-cs{padding:40px 16px;} } .ss-cs__card{ position:relative; display:flex; flex-direction:column; background:var(--ss-card); border:1px solid var(--ss-line); border-radius:14px; overflow:hidden; box-shadow:0 1px 2px rgba(11,61,99,.04); transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; } /* Signature: a blue spine that ties every card back to Smart Scan's brand */ .ss-cs__card::before{ content:""; position:absolute;top:0;left:0;bottom:0;width:4px; background:linear-gradient(180deg,var(--ss-blue),var(--ss-navy)); } .ss-cs__card:hover{ transform:translateY(-4px); box-shadow:0 14px 32px rgba(11,61,99,.13); border-color:#cfe0ee; } .ss-cs__media{aspect-ratio:16/9;background:var(--ss-tint);overflow:hidden;} .ss-cs__media img{width:100%;height:100%;object-fit:cover;display:block;} .ss-cs__body{display:flex;flex-direction:column;flex:1;padding:26px 24px 24px 28px;} .ss-cs__meta{min-height:22px;margin-bottom:14px;} .ss-cs__tag{ display:inline-block; padding:5px 11px; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ss-blue-dk); background:var(--ss-tint); border-radius:999px; } .ss-cs__card-title{ margin:0 0 10px; font-size:1.28rem; line-height:1.25; font-weight:800; color:var(--ss-navy); } .ss-cs__summary{margin:0 0 20px;font-size:.96rem;line-height:1.6;color:var(--ss-muted);} .ss-cs__stat{ margin:auto 0 22px; padding:16px 0 4px; border-top:1px solid var(--ss-line); } .ss-cs__stat-num{ display:block; font-size:1.9rem; font-weight:800; letter-spacing:-.02em; color:var(--ss-navy); line-height:1; } .ss-cs__stat-label{ display:block; margin-top:7px; font-size:.82rem; line-height:1.4; color:var(--ss-muted); } .ss-cs__btn{ margin-top:auto; align-self:flex-start; display:inline-flex; align-items:center; gap:8px; padding:12px 20px; font-size:.92rem; font-weight:700; text-decoration:none; color:#fff; background:var(--ss-blue); border-radius:8px; transition:background .18s ease, gap .18s ease; } .ss-cs__btn:hover,.ss-cs__btn:focus-visible{background:var(--ss-blue-dk);gap:12px;} .ss-cs__btn svg{width:18px;height:18px;transition:transform .18s ease;} .ss-cs__btn:hover svg{transform:translateX(2px);} .ss-cs__btn:focus-visible{outline:3px solid rgba(21,115,184,.4);outline-offset:2px;} @media (prefers-reduced-motion:reduce){ .ss-cs__card,.ss-cs__btn,.ss-cs__btn svg{transition:none;} .ss-cs__card:hover{transform:none;} }