-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem.html
More file actions
365 lines (338 loc) · 13.1 KB
/
Copy pathproblem.html
File metadata and controls
365 lines (338 loc) · 13.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AfriVaya Care — The Problem</title>
<link rel="stylesheet" href="styles.css">
<script src="auth.js"></script>
<style>
.page-hero {
background: var(--green);
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.75); max-width: 620px; }
/* Data cards */
.data-card {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 2rem;
position: relative;
overflow: hidden;
}
.data-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 4px;
}
.data-card.green::before { background: var(--green); }
.data-card.terra::before { background: var(--terra); }
.data-card.gold::before { background: var(--gold); }
.big-number {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
font-weight: 900;
line-height: 1;
letter-spacing: -0.04em;
margin: 0.5rem 0;
}
.big-number.green { color: var(--green); }
.big-number.terra { color: var(--terra); }
.big-number.gold { color: var(--gold); }
/* Problem list */
.problem-item {
display: flex;
gap: 1.5rem;
padding: 2rem;
background: white;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
margin-bottom: 1rem;
transition: box-shadow 0.2s, transform 0.2s;
}
.problem-item:hover {
box-shadow: 0 6px 24px rgba(30,92,58,0.1);
transform: translateX(4px);
}
.problem-num {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
font-weight: 900;
color: var(--cream-3);
line-height: 1;
flex-shrink: 0;
width: 3rem;
text-align: right;
}
.problem-body h4 { color: var(--terra); margin-bottom: 0.5rem; }
.problem-body p { font-size: 0.88rem; color: var(--ink-2); line-height: 1.7; }
/* CCMDD gap visual */
.gap-bar {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 2rem;
}
.bar-row {
margin-bottom: 1.5rem;
}
.bar-label {
display: flex;
justify-content: space-between;
margin-bottom: 0.5rem;
}
.bar-name { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.bar-value { font-family: 'DM Mono', monospace; font-size: 0.78rem; color: var(--ink-3); }
/* Existing solutions table */
.solution-compare {
background: white;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
}
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--terra); font-weight: 700; }
.partial { color: var(--gold); }
</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 active">The Problem</a>
<a href="solution.html" class="nav-link">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>
<!-- Page hero -->
<div class="page-hero">
<div class="page-hero-inner">
<div class="eyebrow" style="color:#8dd4a8;">The Problem</div>
<h1>South Africa's last-mile<br>healthcare gap</h1>
<p class="lead">Millions of patients with chronic conditions cannot consistently access the medication they need — not because it doesn't exist, but because they cannot reach it.</p>
</div>
</div>
<!-- Key stats -->
<section class="section">
<div class="container">
<div class="eyebrow">Scale of the Crisis</div>
<h2 style="margin-bottom:2.5rem;">The numbers<br>behind the gap</h2>
<div class="grid-3" style="margin-bottom:2rem;">
<div class="data-card green anim">
<div class="badge badge-green" style="margin-bottom:1rem;">Population</div>
<div class="big-number green">63.1M</div>
<h4 style="margin:0.5rem 0 0.4rem;">South Africans</h4>
<p style="font-size:0.85rem;">~19.7 million live in rural areas (31% of population) with limited access to healthcare facilities.</p>
</div>
<div class="data-card terra anim" style="animation-delay:0.1s">
<div class="badge badge-terra" style="margin-bottom:1rem;">HIV/ART</div>
<div class="big-number terra">6.2M</div>
<h4 style="margin:0.5rem 0 0.4rem;">People on ART</h4>
<p style="font-size:0.85rem;">~78% of PLHIV are on antiretrovirals. Missed doses due to distance directly impact survival rates.</p>
</div>
<div class="data-card gold anim" style="animation-delay:0.2s">
<div class="badge badge-gold" style="margin-bottom:1rem;">Diabetes</div>
<div class="big-number gold">2.32M</div>
<h4 style="margin:0.5rem 0 0.4rem;">Adults with Diabetes</h4>
<p style="font-size:0.85rem;">As of 2024. Insulin-dependent patients face life-threatening consequences if medication is interrupted.</p>
</div>
</div>
<!-- CCMDD Gap -->
<div class="gap-bar anim">
<div class="eyebrow" style="margin-bottom:1.5rem;">CCMDD Programme Gap — 2025</div>
<h3 style="margin-bottom:1.5rem;">2.4 million patients lost between registration and active collection</h3>
<div class="bar-row">
<div class="bar-label">
<span class="bar-name">Registered patients</span>
<span class="bar-value">5.3 million</span>
</div>
<div class="progress-track">
<div class="progress-fill fill-green" style="width:0%" data-w="100%"></div>
</div>
</div>
<div class="bar-row">
<div class="bar-label">
<span class="bar-name">Active & collecting medication</span>
<span class="bar-value">2.9 million (55%)</span>
</div>
<div class="progress-track">
<div class="progress-fill fill-terra" style="width:0%" data-w="55%"></div>
</div>
</div>
<div class="bar-row" style="margin-bottom:0;">
<div class="bar-label">
<span class="bar-name">Gap: registered but not actively collecting</span>
<span class="bar-value" style="color:var(--terra);">2.4 million (45%)</span>
</div>
<div class="progress-track">
<div class="progress-fill" style="width:0%;background:var(--cream-3)" data-w="45%"></div>
</div>
</div>
<p style="font-size:0.78rem;color:var(--ink-4);margin-top:1rem;font-family:'DM Mono',monospace;">Source: South African Department of Health, CCMDD Programme 2025</p>
</div>
</div>
</section>
<!-- Root causes -->
<section class="section section-alt">
<div class="container">
<div class="eyebrow">Root Causes</div>
<h2 style="margin-bottom:2.5rem;">Why patients can't<br>collect their medication</h2>
<div class="problem-item anim">
<div class="problem-num">01</div>
<div class="problem-body">
<h4>Distance & Transport Costs</h4>
<p>Many patients in rural and peri-urban areas live hours from their nearest clinic or hospital. Public transport is unreliable and expensive — a single return trip can cost more than a patient's daily wage. For those with mobility challenges, it is simply impossible.</p>
</div>
</div>
<div class="problem-item anim" style="animation-delay:0.08s">
<div class="problem-num">02</div>
<div class="problem-body">
<h4>Overcrowded Clinics & Endless Queues</h4>
<p>Nurses report treating close to 100 patients per day with limited staff. The majority are simply collecting chronic medication — occupying queues for hours and preventing healthcare workers from seeing patients who need urgent medical attention. Clinic congestion is a crisis of its own.</p>
</div>
</div>
<div class="problem-item anim" style="animation-delay:0.16s">
<div class="problem-num">03</div>
<div class="problem-body">
<h4>Work, School & Opportunity Cost</h4>
<p>Collecting medication often requires taking an entire day off work or school. For low-income households, this is not just inconvenient — it is economically devastating. Many patients skip collection rather than sacrifice a day's wages.</p>
</div>
</div>
<div class="problem-item anim" style="animation-delay:0.24s">
<div class="problem-num">04</div>
<div class="problem-body">
<h4>Weather & Physical Vulnerability</h4>
<p>Elderly patients, people with disabilities, and those managing serious illness are often unable to travel during unfavourable weather, yet their medication dependency is the highest. The system fails its most vulnerable users most severely.</p>
</div>
</div>
<div class="problem-item anim" style="animation-delay:0.32s">
<div class="problem-num">05</div>
<div class="problem-body">
<h4>Stigma & Privacy</h4>
<p>Collecting HIV, TB, or psychiatric medication publicly at a clinic or pharmacy can expose patients to social stigma in small, close-knit communities. The fear of being seen collecting certain medications actively prevents adherence.</p>
</div>
</div>
</div>
</section>
<!-- Existing solutions comparison -->
<section class="section">
<div class="container">
<div class="eyebrow">Market Gap</div>
<h2 style="margin-bottom:2.5rem;">Why existing solutions<br>aren't enough</h2>
<div class="solution-compare anim">
<table>
<thead>
<tr>
<th>Solution</th>
<th>Free for Patients</th>
<th>Reaches Rural Areas</th>
<th>Government-Integrated</th>
<th>Handles Chronic Meds</th>
<th>Door-to-Door</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Clicks / Dis-Chem Delivery</strong></td>
<td class="cross">✗ Paid</td>
<td class="cross">✗ Urban only</td>
<td class="cross">✗ Private</td>
<td class="partial">◑ Limited</td>
<td class="check">✓</td>
</tr>
<tr>
<td><strong>Pharmacy Direct</strong></td>
<td class="cross">✗ Paid</td>
<td class="partial">◑ Partial</td>
<td class="cross">✗ Private</td>
<td class="check">✓</td>
<td class="check">✓</td>
</tr>
<tr>
<td><strong>CCMDD Pick-up Points</strong></td>
<td class="check">✓ Free</td>
<td class="partial">◑ Partial</td>
<td class="check">✓ Government</td>
<td class="check">✓</td>
<td class="cross">✗ Still walk-in</td>
</tr>
<tr>
<td><strong>Dablap Meds</strong></td>
<td class="cross">✗ Paid</td>
<td class="cross">✗ Urban</td>
<td class="cross">✗ Private</td>
<td class="partial">◑ Limited</td>
<td class="check">✓</td>
</tr>
<tr style="background:rgba(30,92,58,0.04);">
<td><strong style="color:var(--green);">AfriVaya Care ✦</strong></td>
<td class="check">✓ Always free</td>
<td class="check">✓ Rural focus</td>
<td class="check">✓ Govt. subsidised</td>
<td class="check">✓ All chronic</td>
<td class="check">✓ True last-mile</td>
</tr>
</tbody>
</table>
</div>
<div style="margin-top:2.5rem;text-align:center;">
<a href="solution.html" class="btn btn-primary">See How AfriVaya Care Solves This →</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');
// Animate progress bars
entry.target.querySelectorAll('.progress-fill[data-w]').forEach(bar => {
setTimeout(() => { bar.style.width = bar.dataset.w; }, 200);
});
observer.unobserve(entry.target);
}
});
}, { threshold: 0.12 });
document.querySelectorAll('.anim').forEach(el => observer.observe(el));
// Also animate standalone bars
document.querySelectorAll('.progress-fill[data-w]').forEach(bar => {
const barObserver = new IntersectionObserver(entries => {
if (entries[0].isIntersecting) {
setTimeout(() => { bar.style.width = bar.dataset.w; }, 300);
barObserver.unobserve(bar);
}
});
barObserver.observe(bar);
});
</script>
</body>
</html>