-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolution.html
More file actions
465 lines (420 loc) · 16.7 KB
/
Copy pathsolution.html
File metadata and controls
465 lines (420 loc) · 16.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AfriVaya Care — Our Solution</title>
<link rel="stylesheet" href="styles.css">
<script src="auth.js"></script>
<style>
.page-hero {
background: var(--terra);
padding: 5rem clamp(1.5rem, 5vw, 4rem) 4rem;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,0.8); max-width: 600px; }
/* How it works steps */
.steps-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
position: relative;
margin-bottom: 3rem;
}
.steps-grid::before {
content: '';
position: absolute;
top: 3rem;
left: 12.5%;
right: 12.5%;
height: 2px;
background: linear-gradient(90deg, var(--green), var(--terra));
z-index: 0;
}
.step {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 0 1rem;
position: relative;
z-index: 1;
}
.step-bubble {
width: 60px; height: 60px;
border-radius: 50%;
display: grid;
place-items: center;
font-size: 1.5rem;
margin-bottom: 1.25rem;
border: 3px solid white;
box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.step-bubble-1 { background: var(--green); }
.step-bubble-2 { background: var(--green-2); }
.step-bubble-3 { background: var(--terra); }
.step-bubble-4 { background: var(--gold); }
.step-num {
font-family: 'DM Mono', monospace;
font-size: 0.62rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--ink-4);
margin-bottom: 0.35rem;
}
.step h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.4rem; }
.step p { font-size: 0.78rem; color: var(--ink-3); line-height: 1.55; }
/* Model card */
.model-card {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
}
.model-header {
background: var(--green);
padding: 1.75rem 2rem;
color: white;
}
.model-header h3 { color: white; margin-bottom: 0.3rem; }
.model-header p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.model-body { padding: 2rem; }
.model-feature {
display: flex;
gap: 1rem;
padding: 1rem 0;
border-bottom: 1px solid var(--border);
}
.model-feature:last-child { border-bottom: none; padding-bottom: 0; }
.feature-icon {
width: 40px; height: 40px;
border-radius: 10px;
background: var(--green-lo);
display: grid;
place-items: center;
font-size: 1.1rem;
flex-shrink: 0;
}
.feature-text h5 { font-size: 0.9rem; color: var(--ink); font-family: 'Playfair Display', serif; font-weight: 600; margin-bottom: 0.25rem; }
.feature-text p { font-size: 0.8rem; color: var(--ink-3); line-height: 1.55; }
/* Courier model breakdown */
.courier-visual {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 2rem;
}
.courier-row {
display: grid;
grid-template-columns: 1fr auto 1fr auto 1fr;
align-items: center;
gap: 0.5rem;
text-align: center;
margin: 1.5rem 0;
}
.courier-box {
background: var(--cream-2);
border-radius: var(--radius);
padding: 1.25rem 0.75rem;
border: 1px solid var(--border);
}
.courier-box.green { background: var(--green); border-color: var(--green); }
.courier-box.green p, .courier-box.green .box-label { color: rgba(255,255,255,0.8); }
.courier-box.green .box-title { color: white; }
.courier-box.terra { background: var(--terra); border-color: var(--terra); }
.courier-box.terra p, .courier-box.terra .box-label { color: rgba(255,255,255,0.8); }
.courier-box.terra .box-title { color: white; }
.box-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.box-title { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.box-label { font-size: 0.7rem; color: var(--ink-3); line-height: 1.4; }
.arrow { font-size: 1.5rem; color: var(--ink-4); }
/* Safety & compliance */
.compliance-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.compliance-item {
display: flex;
gap: 1rem;
align-items: flex-start;
padding: 1.25rem;
background: var(--green-lo);
border-radius: var(--radius);
border: 1px solid rgba(30,92,58,0.15);
}
.comp-icon { font-size: 1.5rem; flex-shrink: 0; }
.comp-text h5 { font-size: 0.88rem; color: var(--green); font-family: 'Playfair Display', serif; font-weight: 700; margin-bottom: 0.25rem; }
.comp-text p { font-size: 0.78rem; color: var(--ink-2); line-height: 1.55; }
/* Revenue model */
.revenue-flows {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.flow-card {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 1.75rem;
text-align: center;
transition: box-shadow 0.2s, transform 0.2s;
}
.flow-card:hover {
box-shadow: 0 8px 28px rgba(30,92,58,0.12);
transform: translateY(-3px);
}
.flow-icon { font-size: 2rem; margin-bottom: 1rem; }
.flow-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.flow-desc { font-size: 0.8rem; color: var(--ink-3); line-height: 1.6; }
.flow-badge { display: inline-block; margin-top: 0.75rem; }
@media (max-width: 900px) {
.steps-grid { grid-template-columns: 1fr 1fr; }
.steps-grid::before { display: none; }
.courier-row { grid-template-columns: 1fr; }
.arrow { transform: rotate(90deg); }
.compliance-grid { grid-template-columns: 1fr; }
.revenue-flows { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<nav>
<a href="index.html" class="nav-brand">
<div class="brand-mark">💊</div>
<span class="brand-text">AfriVaya Care</span>
</a>
<div class="nav-links">
<a href="index.html" class="nav-link">Home</a>
<a href="problem.html" class="nav-link">The Problem</a>
<a href="solution.html" class="nav-link active">Our Solution</a>
<a href="financials.html" class="nav-link">Financials</a>
<a href="impact.html" class="nav-link">Impact</a>
</div>
<a href="impact.html#contact" class="nav-cta">Partner With Us</a>
</nav>
<div class="page-hero">
<div class="page-hero-inner">
<div class="eyebrow" style="color:rgba(255,255,255,0.7);">Our Solution</div>
<h1>An e-hailing model<br>built for healthcare</h1>
<p class="lead">AfriVaya Care operates like an Uber for medication — coordinating between hospitals and locally hired couriers to deliver chronic medication directly to patients' doors. Free. Always.</p>
</div>
</div>
<!-- How it works -->
<section class="section">
<div class="container">
<div class="eyebrow">How It Works</div>
<h2 style="margin-bottom:3rem;">Four steps from<br>clinic to doorstep</h2>
<div class="steps-grid anim">
<div class="step">
<div class="step-bubble step-bubble-1">🏥</div>
<div class="step-num">Step 01</div>
<h4>Hospital Dispatch</h4>
<p>The clinic or hospital prescribes and packages medication. A delivery request is placed through the AfriVaya Care platform — not by the patient.</p>
</div>
<div class="step">
<div class="step-bubble step-bubble-2">📲</div>
<div class="step-num">Step 02</div>
<h4>Smart Assignment</h4>
<p>Our dispatch platform automatically assigns the job to the nearest available courier, optimising routes for multiple drops.</p>
</div>
<div class="step">
<div class="step-bubble step-bubble-3">🛵</div>
<div class="step-num">Step 03</div>
<h4>Tracked Delivery</h4>
<p>A locally hired courier (with their own vehicle) collects and delivers the medication. Track-and-trace provides full visibility.</p>
</div>
<div class="step">
<div class="step-bubble step-bubble-4">✅</div>
<div class="step-num">Step 04</div>
<h4>Proof of Delivery</h4>
<p>Digital proof of delivery is captured and returned to the clinic. The patient signs, privacy is maintained, compliance is recorded.</p>
</div>
</div>
</div>
</section>
<!-- Business model -->
<section class="section section-alt">
<div class="container">
<div class="eyebrow">Business Model</div>
<h2 style="margin-bottom:2.5rem;">The AfriVaya Care<br>courier model</h2>
<div class="grid-2">
<div class="model-card anim">
<div class="model-header">
<h3>Why a Courier Model?</h3>
<p>Drivers supply their own vehicles — AfriVaya Care supplies the platform, compliance, and contracts.</p>
</div>
<div class="model-body">
<div class="model-feature">
<div class="feature-icon">🚗</div>
<div class="feature-text">
<h5>No Vehicle Capital Required</h5>
<p>Couriers own their vehicles. AfriVaya Care pays commission per delivery (R50–R70), eliminating fleet purchase, insurance, and maintenance costs.</p>
</div>
</div>
<div class="model-feature">
<div class="feature-icon">⚡</div>
<div class="feature-text">
<h5>Rapid Scaling</h5>
<p>Recruiting locally hired drivers is faster than acquiring vehicles. We can scale from 30 to 120 drivers without large capex.</p>
</div>
</div>
<div class="model-feature">
<div class="feature-icon">🎯</div>
<div class="feature-text">
<h5>Company Focus</h5>
<p>AfriVaya Care concentrates on platform development, compliance, and institutional contracting — the highest-value activities.</p>
</div>
</div>
<div class="model-feature">
<div class="feature-icon">💼</div>
<div class="feature-text">
<h5>Local Employment</h5>
<p>Every driver hired is a community member earning income. AfriVaya Care creates economic value in the very communities it serves.</p>
</div>
</div>
</div>
</div>
<div class="courier-visual anim" style="animation-delay:0.15s;">
<div class="eyebrow">Delivery Flow</div>
<h3 style="margin-bottom:0.5rem;">How money & medication move</h3>
<p style="font-size:0.82rem;color:var(--ink-3);margin-bottom:1.5rem;">The hospital pays nothing. Patients pay nothing. Funding flows entirely from subsidies and pharma partnerships.</p>
<div class="courier-row">
<div class="courier-box green">
<div class="box-icon">🏛️</div>
<div class="box-title">Government / Pharma</div>
<div class="box-label">Subsidies & CSR fund<br>R90–R100/delivery</div>
</div>
<div class="arrow">→</div>
<div class="courier-box" style="border-color:var(--green);">
<div class="box-icon">💊</div>
<div class="box-title" style="color:var(--green);">AfriVaya Care</div>
<div class="box-label">Platform, compliance,<br>dispatch & admin</div>
</div>
<div class="arrow">→</div>
<div class="courier-box terra">
<div class="box-icon">🛵</div>
<div class="box-title">Courier</div>
<div class="box-label">R50–R70/delivery<br>own vehicle</div>
</div>
</div>
<div style="text-align:center;padding-top:1.5rem;border-top:1px solid var(--border);">
<div style="font-size:2.5rem;margin-bottom:0.5rem;">🏠</div>
<div style="font-family:'Playfair Display',serif;font-size:1rem;font-weight:700;color:var(--green);">Patient Receives Medication</div>
<div style="font-family:'DM Mono',monospace;font-size:0.65rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--terra);margin-top:0.25rem;">Zero cost · Door-to-door · Confidential</div>
</div>
</div>
</div>
</div>
</section>
<!-- Revenue streams -->
<section class="section">
<div class="container">
<div class="eyebrow">Revenue Model</div>
<h2 style="margin-bottom:2.5rem;">Three paths to<br>sustainable funding</h2>
<div class="revenue-flows">
<div class="flow-card anim">
<div class="flow-icon">🏛️</div>
<div class="flow-title">Government Subsidies</div>
<div class="flow-desc">Reimbursement per delivery from provincial health departments and national programmes like CCMDD. The primary revenue stream in Years 1–2.</div>
<span class="badge badge-green flow-badge">Primary</span>
</div>
<div class="flow-card anim" style="animation-delay:0.1s;">
<div class="flow-icon">🔬</div>
<div class="flow-title">Pharmaceutical Partnerships</div>
<div class="flow-desc">Co-funding and CSR sponsorships from pharmaceutical companies (AstraZeneca, Aspen) who benefit from improved medication adherence and market reach.</div>
<span class="badge badge-terra flow-badge">Secondary</span>
</div>
<div class="flow-card anim" style="animation-delay:0.2s;">
<div class="flow-icon">🏥</div>
<div class="flow-title">Private Healthcare (Future)</div>
<div class="flow-desc">Expansion to private healthcare providers, medical aids, and subscription-based service models in Years 3–5 as the platform matures.</div>
<span class="badge badge-gold flow-badge">Future</span>
</div>
</div>
</div>
</section>
<!-- Safety & compliance -->
<section class="section section-alt">
<div class="container">
<div class="eyebrow">Safety & Compliance</div>
<h2 style="margin-bottom:2.5rem;">Medical-grade standards<br>at every step</h2>
<div class="compliance-grid anim">
<div class="compliance-item">
<div class="comp-icon">🔒</div>
<div class="comp-text">
<h5>Patient Confidentiality</h5>
<p>Only the prescribing nurse knows medication specifics. Couriers receive sealed, labelled packages — no diagnosis or medication information is disclosed.</p>
</div>
</div>
<div class="compliance-item">
<div class="comp-icon">🌡️</div>
<div class="comp-text">
<h5>Temperature-Controlled Packaging</h5>
<p>Medical-grade packaging maintains required temperature ranges for insulin and other temperature-sensitive medications throughout transit.</p>
</div>
</div>
<div class="compliance-item">
<div class="comp-icon">📍</div>
<div class="comp-text">
<h5>Track-and-Trace Technology</h5>
<p>Every delivery is tracked in real-time. Hospitals have full visibility on dispatch, transit, and confirmed delivery. Proof of delivery is digitally captured.</p>
</div>
</div>
<div class="compliance-item">
<div class="comp-icon">🛡️</div>
<div class="comp-text">
<h5>Insurance & Regulatory Compliance</h5>
<p>All couriers and deliveries are covered by appropriate insurance. Operations comply with healthcare regulations, the National Health Act, and POPIA.</p>
</div>
</div>
<div class="compliance-item">
<div class="comp-icon">💊</div>
<div class="comp-text">
<h5>Surplus Medication Management</h5>
<p>Clear protocols for returned, refused, or undelivered medications ensure no medications are mishandled or diverted outside the healthcare system.</p>
</div>
</div>
<div class="compliance-item">
<div class="comp-icon">🩺</div>
<div class="comp-text">
<h5>Medical Aid for Drivers</h5>
<p>Driver contracts include medical aid provisions, protecting the couriers who deliver life-saving medication and making AfriVaya Care an attractive employer.</p>
</div>
</div>
</div>
<div style="margin-top:2.5rem;text-align:center;">
<a href="financials.html" class="btn btn-primary">View Financial Projections →</a>
</div>
</div>
</section>
<footer>
<div class="footer-inner">
<div>
<div class="footer-brand">AfriVaya Care</div>
<div class="footer-tagline">Last-mile medication delivery · South Africa · 2025</div>
</div>
<div class="footer-links">
<a href="index.html" class="footer-link">Home</a>
<a href="problem.html" class="footer-link">Problem</a>
<a href="solution.html" class="footer-link">Solution</a>
<a href="financials.html" class="footer-link">Financials</a>
<a href="impact.html" class="footer-link">Impact</a>
</div>
<div class="footer-copy">© 2025 AfriVaya Care. All rights reserved.</div>
</div>
</footer>
<script>
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.12 });
document.querySelectorAll('.anim').forEach(el => observer.observe(el));
</script>
</body>
</html>