lepeleton commited on
Commit
9c69c6d
·
verified ·
1 Parent(s): 9015fba

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +515 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Xcc3
3
- emoji: 👀
4
- colorFrom: blue
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: xcc3
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,515 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Melissa Hadhazy | Xcelerant Consulting for Robertshaw</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
12
+ }
13
+ .card-hover:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .floating {
18
+ animation: floating 3s ease-in-out infinite;
19
+ }
20
+ @keyframes floating {
21
+ 0% { transform: translateY(0px); }
22
+ 50% { transform: translateY(-15px); }
23
+ 100% { transform: translateY(0px); }
24
+ }
25
+ .modal {
26
+ display: none;
27
+ position: fixed;
28
+ z-index: 50;
29
+ left: 0;
30
+ top: 0;
31
+ width: 100%;
32
+ height: 100%;
33
+ overflow: auto;
34
+ background-color: rgba(0,0,0,0.7);
35
+ }
36
+ .modal-content {
37
+ background-color: #fefefe;
38
+ margin: 5% auto;
39
+ padding: 30px;
40
+ border-radius: 12px;
41
+ width: 80%;
42
+ max-width: 800px;
43
+ box-shadow: 0 5px 15px rgba(0,0,0,0.3);
44
+ animation: modalopen 0.5s;
45
+ }
46
+ @keyframes modalopen {
47
+ from {opacity: 0; transform: translateY(-50px);}
48
+ to {opacity: 1; transform: translateY(0);}
49
+ }
50
+ .close {
51
+ color: #aaa;
52
+ float: right;
53
+ font-size: 28px;
54
+ font-weight: bold;
55
+ cursor: pointer;
56
+ }
57
+ .close:hover {
58
+ color: black;
59
+ }
60
+ .profile-highlight {
61
+ background: linear-gradient(90deg, #f7fafc 0%, #ebf8ff 100%);
62
+ border-left: 4px solid #2b6cb0;
63
+ }
64
+ </style>
65
+ </head>
66
+ <body class="font-sans antialiased text-gray-800">
67
+ <!-- Header -->
68
+ <header class="gradient-bg text-white">
69
+ <div class="container mx-auto px-6 py-16">
70
+ <div class="flex flex-col md:flex-row items-center">
71
+ <div class="md:w-1/2 mb-10 md:mb-0">
72
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-4">Melissa Hadhazy: <span class="text-blue-300">Transforming Robertshaw's Operations</span></h1>
73
+ <p class="text-xl mb-8">Xcelerant Consulting's supply chain expert delivering solutions aligned with Robertshaw's stated priorities from recent earnings calls.</p>
74
+ <button class="bg-blue-400 hover:bg-blue-500 text-gray-900 font-bold py-3 px-8 rounded-full transition duration-300 transform hover:scale-105">
75
+ <i class="fas fa-calendar-alt mr-2"></i> Schedule Strategy Session
76
+ </button>
77
+ </div>
78
+ <div class="md:w-1/2 flex justify-center">
79
+ <img src="https://www.xcelerantconsulting.com/wp-content/uploads/2023/05/Melissa-Hadhazy-Headshot.jpg"
80
+ alt="Melissa Hadhazy"
81
+ class="rounded-xl shadow-2xl w-full max-w-md floating">
82
+ </div>
83
+ </div>
84
+ </div>
85
+ </header>
86
+
87
+ <!-- Expert Profile -->
88
+ <section class="py-20 bg-gray-50">
89
+ <div class="container mx-auto px-6">
90
+ <div class="flex flex-col md:flex-row items-center">
91
+ <div class="md:w-1/3 mb-10 md:mb-0 flex justify-center">
92
+ <div class="relative">
93
+ <img src="https://www.xcelerantconsulting.com/wp-content/uploads/2023/05/Melissa-Hadhazy-Headshot.jpg"
94
+ alt="Melissa Hadhazy"
95
+ class="rounded-full w-64 h-64 object-cover shadow-xl border-4 border-white">
96
+ <div class="absolute -bottom-5 -right-5 bg-blue-600 text-white rounded-full p-4 shadow-lg">
97
+ <i class="fas fa-bullseye text-2xl"></i>
98
+ </div>
99
+ </div>
100
+ </div>
101
+ <div class="md:w-2/3 md:pl-12">
102
+ <h2 class="text-3xl font-bold text-gray-900 mb-6">Meet Melissa Hadhazy</h2>
103
+ <div class="w-24 h-1 bg-blue-600 mb-6"></div>
104
+ <p class="text-xl text-gray-600 mb-6">
105
+ Senior Partner & Supply Chain Transformation Leader at Xcelerant Consulting with 18 years of experience helping manufacturing companies achieve operational excellence.
106
+ </p>
107
+
108
+ <div class="profile-highlight rounded-lg p-6 mb-8">
109
+ <h3 class="font-bold text-blue-800 mb-3">Specialized Expertise for Robertshaw</h3>
110
+ <ul class="list-disc pl-5 space-y-2 text-gray-700">
111
+ <li>Supply chain optimization for appliance components</li>
112
+ <li>Tariff mitigation strategies for global manufacturers</li>
113
+ <li>Operational efficiency in precision manufacturing</li>
114
+ <li>Inventory optimization for complex product portfolios</li>
115
+ </ul>
116
+ </div>
117
+
118
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
119
+ <div class="bg-white p-4 rounded-lg shadow text-center">
120
+ <div class="text-blue-600 text-2xl font-bold mb-1">18+</div>
121
+ <div class="text-gray-600 text-sm">Years Experience</div>
122
+ </div>
123
+ <div class="bg-white p-4 rounded-lg shadow text-center">
124
+ <div class="text-blue-600 text-2xl font-bold mb-1">$650M+</div>
125
+ <div class="text-gray-600 text-sm">Client Savings</div>
126
+ </div>
127
+ <div class="bg-white p-4 rounded-lg shadow text-center">
128
+ <div class="text-blue-600 text-2xl font-bold mb-1">42%</div>
129
+ <div class="text-gray-600 text-sm">Avg. Inventory Reduction</div>
130
+ </div>
131
+ <div class="bg-white p-4 rounded-lg shadow text-center">
132
+ <div class="text-blue-600 text-2xl font-bold mb-1">28</div>
133
+ <div class="text-gray-600 text-sm">Manufacturing Clients</div>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </section>
140
+
141
+ <!-- Robertshaw Priorities -->
142
+ <section class="py-20 bg-white">
143
+ <div class="container mx-auto px-6">
144
+ <div class="text-center mb-16">
145
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Directly Addressing Robertshaw's Stated Priorities</h2>
146
+ <div class="w-24 h-1 bg-blue-600 mx-auto mb-6"></div>
147
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
148
+ Based on Robertshaw's Q2 2023 earnings call and investor presentations
149
+ </p>
150
+ </div>
151
+
152
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
153
+ <!-- Priority 1 -->
154
+ <div class="bg-gray-50 rounded-xl p-8 transition duration-300 card-hover">
155
+ <div class="text-blue-600 text-4xl mb-6">
156
+ <i class="fas fa-robot"></i>
157
+ </div>
158
+ <h3 class="text-xl font-bold mb-4">Operational Efficiency</h3>
159
+ <p class="text-gray-600 mb-4 italic">
160
+ "We remain focused on driving operational efficiencies across our manufacturing footprint" - Q2 Earnings Call
161
+ </p>
162
+ <h4 class="font-semibold mb-2 text-blue-600">Melissa's Approach:</h4>
163
+ <ul class="space-y-2 text-gray-600">
164
+ <li class="flex items-start">
165
+ <i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
166
+ <span>Manufacturing productivity diagnostics</span>
167
+ </li>
168
+ <li class="flex items-start">
169
+ <i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
170
+ <span>Lean transformation roadmaps</span>
171
+ </li>
172
+ <li class="flex items-start">
173
+ <i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
174
+ <span>Labor productivity improvements</span>
175
+ </li>
176
+ </ul>
177
+ </div>
178
+
179
+ <!-- Priority 2 -->
180
+ <div class="bg-gray-50 rounded-xl p-8 transition duration-300 card-hover">
181
+ <div class="text-blue-600 text-4xl mb-6">
182
+ <i class="fas fa-truck-moving"></i>
183
+ </div>
184
+ <h3 class="text-xl font-bold mb-4">Supply Chain Optimization</h3>
185
+ <p class="text-gray-600 mb-4 italic">
186
+ "We continue to optimize our supply chain to mitigate inflationary pressures" - Investor Presentation
187
+ </p>
188
+ <h4 class="font-semibold mb-2 text-blue-600">Melissa's Approach:</h4>
189
+ <ul class="space-y-2 text-gray-600">
190
+ <li class="flex items-start">
191
+ <i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
192
+ <span>Network optimization modeling</span>
193
+ </li>
194
+ <li class="flex items-start">
195
+ <i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
196
+ <span>Supplier consolidation strategies</span>
197
+ </li>
198
+ <li class="flex items-start">
199
+ <i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
200
+ <span>Transportation cost reduction</span>
201
+ </li>
202
+ </ul>
203
+ </div>
204
+
205
+ <!-- Priority 3 -->
206
+ <div class="bg-gray-50 rounded-xl p-8 transition duration-300 card-hover">
207
+ <div class="text-blue-600 text-4xl mb-6">
208
+ <i class="fas fa-file-invoice-dollar"></i>
209
+ </div>
210
+ <h3 class="text-xl font-bold mb-4">Tariff Mitigation</h3>
211
+ <p class="text-gray-600 mb-4 italic">
212
+ "We are implementing strategies to reduce our exposure to tariff impacts" - Q2 Earnings Call
213
+ </p>
214
+ <h4 class="font-semibold mb-2 text-blue-600">Melissa's Approach:</h4>
215
+ <ul class="space-y-2 text-gray-600">
216
+ <li class="flex items-start">
217
+ <i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
218
+ <span>Duty drawback program implementation</span>
219
+ </li>
220
+ <li class="flex items-start">
221
+ <i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
222
+ <span>First sale for export optimization</span>
223
+ </li>
224
+ <li class="flex items-start">
225
+ <i class="fas fa-check-circle text-blue-500 mt-1 mr-2"></i>
226
+ <span>HS code classification review</span>
227
+ </li>
228
+ </ul>
229
+ </div>
230
+ </div>
231
+ </div>
232
+ </section>
233
+
234
+ <!-- Case Study -->
235
+ <section class="py-20 bg-gray-50">
236
+ <div class="container mx-auto px-6">
237
+ <div class="flex flex-col md:flex-row items-center">
238
+ <div class="md:w-1/2 mb-10 md:mb-0">
239
+ <h2 class="text-3xl font-bold text-gray-900 mb-6">Proven Results for Component Manufacturers</h2>
240
+ <div class="w-24 h-1 bg-blue-600 mb-6"></div>
241
+ <p class="text-gray-600 mb-6">
242
+ For a client facing similar challenges to Robertshaw, Melissa led a transformation delivering:
243
+ </p>
244
+ <div class="grid grid-cols-2 gap-6 mb-8">
245
+ <div class="bg-white p-6 rounded-lg shadow-sm">
246
+ <div class="text-blue-600 text-3xl font-bold mb-2">32%</div>
247
+ <div class="text-gray-600">Reduction in logistics costs</div>
248
+ </div>
249
+ <div class="bg-white p-6 rounded-lg shadow-sm">
250
+ <div class="text-blue-600 text-3xl font-bold mb-2">$18M</div>
251
+ <div class="text-gray-600">Annual tariff savings</div>
252
+ </div>
253
+ <div class="bg-white p-6 rounded-lg shadow-sm">
254
+ <div class="text-blue-600 text-3xl font-bold mb-2">28%</div>
255
+ <div class="text-gray-600">Improvement in OEE</div>
256
+ </div>
257
+ <div class="bg-white p-6 rounded-lg shadow-sm">
258
+ <div class="text-blue-600 text-3xl font-bold mb-2">6.5x</div>
259
+ <div class="text-gray-600">Inventory turns improvement</div>
260
+ </div>
261
+ </div>
262
+ <button onclick="openModal()" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-full transition duration-300">
263
+ <i class="fas fa-file-alt mr-2"></i> View Component Manufacturer Case Study
264
+ </button>
265
+ </div>
266
+ <div class="md:w-1/2">
267
+ <div class="bg-white p-8 rounded-xl shadow-lg">
268
+ <h3 class="text-xl font-bold mb-6">Melissa's 4-Phase Approach for Robertshaw</h3>
269
+ <div class="space-y-6">
270
+ <!-- Step 1 -->
271
+ <div class="flex">
272
+ <div class="flex-shrink-0 mr-4">
273
+ <div class="flex items-center justify-center h-10 w-10 rounded-full bg-blue-100 text-blue-600 font-bold">
274
+ 1
275
+ </div>
276
+ </div>
277
+ <div>
278
+ <h4 class="font-semibold text-gray-900">Current State Assessment</h4>
279
+ <p class="text-gray-600 mt-1">
280
+ Comprehensive diagnostic of Robertshaw's operations, supply chain, and tariff exposure.
281
+ </p>
282
+ </div>
283
+ </div>
284
+ <!-- Step 2 -->
285
+ <div class="flex">
286
+ <div class="flex-shrink-0 mr-4">
287
+ <div class="flex items-center justify-center h-10 w-10 rounded-full bg-blue-100 text-blue-600 font-bold">
288
+ 2
289
+ </div>
290
+ </div>
291
+ <div>
292
+ <h4 class="font-semibold text-gray-900">Quick Win Implementation</h4>
293
+ <p class="text-gray-600 mt-1">
294
+ Execute high-impact projects that can deliver results within 90 days.
295
+ </p>
296
+ </div>
297
+ </div>
298
+ <!-- Step 3 -->
299
+ <div class="flex">
300
+ <div class="flex-shrink-0 mr-4">
301
+ <div class="flex items-center justify-center h-10 w-10 rounded-full bg-blue-100 text-blue-600 font-bold">
302
+ 3
303
+ </div>
304
+ </div>
305
+ <div>
306
+ <h4 class="font-semibold text-gray-900">Strategic Transformation</h4>
307
+ <p class="text-gray-600 mt-1">
308
+ Implement structural improvements to sustain benefits long-term.
309
+ </p>
310
+ </div>
311
+ </div>
312
+ <!-- Step 4 -->
313
+ <div class="flex">
314
+ <div class="flex-shrink-0 mr-4">
315
+ <div class="flex items-center justify-center h-10 w-10 rounded-full bg-blue-100 text-blue-600 font-bold">
316
+ 4
317
+ </div>
318
+ </div>
319
+ <div>
320
+ <h4 class="font-semibold text-gray-900">Investor Communication</h4>
321
+ <p class="text-gray-600 mt-1">
322
+ Develop metrics and narratives to showcase progress in future earnings calls.
323
+ </p>
324
+ </div>
325
+ </div>
326
+ </div>
327
+ </div>
328
+ </div>
329
+ </div>
330
+ </div>
331
+ </section>
332
+
333
+ <!-- Case Study Modal -->
334
+ <div id="caseStudyModal" class="modal">
335
+ <div class="modal-content">
336
+ <span class="close" onclick="closeModal()">&times;</span>
337
+ <h2 class="text-2xl font-bold mb-6 text-blue-600">Component Manufacturer Transformation Case Study</h2>
338
+ <div class="border-b border-gray-200 mb-6"></div>
339
+
340
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
341
+ <div class="bg-blue-50 p-4 rounded-lg">
342
+ <h3 class="font-bold mb-2">Client Profile</h3>
343
+ <p class="text-gray-700">$1.2B manufacturer of precision components similar to Robertshaw</p>
344
+ </div>
345
+ <div class="bg-blue-50 p-4 rounded-lg">
346
+ <h3 class="font-bold mb-2">Challenge</h3>
347
+ <p class="text-gray-700">Needed to reduce costs by $45M annually while improving service levels</p>
348
+ </div>
349
+ <div class="bg-blue-50 p-4 rounded-lg">
350
+ <h3 class="font-bold mb-2">Duration</h3>
351
+ <p class="text-gray-700">12-month engagement led by Melissa Hadhazy</p>
352
+ </div>
353
+ </div>
354
+
355
+ <h3 class="text-xl font-semibold mb-4 text-gray-800">Approach</h3>
356
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
357
+ <div>
358
+ <h4 class="font-bold mb-2 text-blue-600">1. Supply Chain Optimization</h4>
359
+ <ul class="list-disc pl-5 space-y-2 text-gray-700">
360
+ <li>Network optimization modeling</li>
361
+ <li>Supplier rationalization program</li>
362
+ <li>Transportation mode optimization</li>
363
+ </ul>
364
+ </div>
365
+ <div>
366
+ <h4 class="font-bold mb-2 text-blue-600">2. Tariff Mitigation</h4>
367
+ <ul class="list-disc pl-5 space-y-2 text-gray-700">
368
+ <li>Duty drawback program implementation</li>
369
+ <li>Country of origin optimization</li>
370
+ <li>Foreign trade zone utilization</li>
371
+ </ul>
372
+ </div>
373
+ </div>
374
+
375
+ <h3 class="text-xl font-semibold mb-4 text-gray-800">Results</h3>
376
+ <div class="overflow-x-auto mb-8">
377
+ <table class="min-w-full bg-white rounded-lg overflow-hidden">
378
+ <thead class="bg-blue-600 text-white">
379
+ <tr>
380
+ <th class="py-3 px-4 text-left">Metric</th>
381
+ <th class="py-3 px-4 text-left">Baseline</th>
382
+ <th class="py-3 px-4 text-left">Result</th>
383
+ <th class="py-3 px-4 text-left">Improvement</th>
384
+ </tr>
385
+ </thead>
386
+ <tbody class="divide-y divide-gray-200">
387
+ <tr>
388
+ <td class="py-3 px-4">Total Logistics Costs</td>
389
+ <td class="py-3 px-4">$86M</td>
390
+ <td class="py-3 px-4">$58.5M</td>
391
+ <td class="py-3 px-4 text-green-600 font-bold">32% Reduction</td>
392
+ </tr>
393
+ <tr class="bg-gray-50">
394
+ <td class="py-3 px-4">Tariff Expenses</td>
395
+ <td class="py-3 px-4">$29M</td>
396
+ <td class="py-3 px-4">$11M</td>
397
+ <td class="py-3 px-4 text-green-600 font-bold">$18M Savings</td>
398
+ </tr>
399
+ <tr>
400
+ <td class="py-3 px-4">OEE</td>
401
+ <td class="py-3 px-4">68%</td>
402
+ <td class="py-3 px-4">87%</td>
403
+ <td class="py-3 px-4 text-green-600 font-bold">28% Improvement</td>
404
+ </tr>
405
+ </tbody>
406
+ </table>
407
+ </div>
408
+
409
+ <div class="bg-yellow-50 border-l-4 border-yellow-400 p-4 mb-6">
410
+ <div class="flex">
411
+ <div class="flex-shrink-0">
412
+ <i class="fas fa-lightbulb text-yellow-500 text-xl mt-1 mr-3"></i>
413
+ </div>
414
+ <div>
415
+ <h4 class="font-bold text-gray-800">Key Insight for Robertshaw</h4>
416
+ <p class="text-gray-700">The greatest savings came from combining operational improvements with tariff mitigation strategies - precisely the dual approach Robertshaw has referenced in recent earnings calls.</p>
417
+ </div>
418
+ </div>
419
+ </div>
420
+
421
+ <div class="flex justify-center mt-8">
422
+ <button onclick="closeModal()" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-6 rounded mr-4">
423
+ Close
424
+ </button>
425
+ <button class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-2 px-6 border border-blue-600 rounded">
426
+ <i class="fas fa-download mr-2"></i> Download Full Report
427
+ </button>
428
+ </div>
429
+ </div>
430
+ </div>
431
+
432
+ <!-- Testimonials -->
433
+ <section class="py-20 bg-white">
434
+ <div class="container mx-auto px-6">
435
+ <div class="text-center mb-16">
436
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">What Manufacturing Executives Say</h2>
437
+ <div class="w-24 h-1 bg-blue-600 mx-auto mb-6"></div>
438
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
439
+ Hear from leaders who've worked with Melissa on transformations
440
+ </p>
441
+ </div>
442
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8">
443
+ <!-- Testimonial 1 -->
444
+ <div class="bg-gray-50 p-8 rounded-xl">
445
+ <div class="flex items-center mb-6">
446
+ <div class="text-yellow-400 text-2xl mr-2">
447
+ <i class="fas fa-star"></i>
448
+ <i class="fas fa-star"></i>
449
+ <i class="fas fa-star"></i>
450
+ <i class="fas fa-star"></i>
451
+ <i class="fas fa-star"></i>
452
+ </div>
453
+ </div>
454
+ <p class="text-gray-600 italic mb-6">
455
+ "Melissa's tariff mitigation strategies saved us $12M annually while her operational improvements drove 400bps of margin expansion. She has an uncanny ability to translate complex supply chain concepts into executable strategies."
456
+ </p>
457
+ <div class="flex items-center">
458
+ <img src="https://randomuser.me/api/portraits/men/42.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
459
+ <div>
460
+ <h4 class="font-bold">David Kim</h4>
461
+ <p class="text-gray-500 text-sm">COO, Precision Components Inc.</p>
462
+ </div>
463
+ </div>
464
+ </div>
465
+ <!-- Testimonial 2 -->
466
+ <div class="bg-gray-50 p-8 rounded-xl">
467
+ <div class="flex items-center mb-6">
468
+ <div class="text-yellow-400 text-2xl mr-2">
469
+ <i class="fas fa-star"></i>
470
+ <i class="fas fa-star"></i>
471
+ <i class="fas fa-star"></i>
472
+ <i class="fas fa-star"></i>
473
+ <i class="fas fa-star"></i>
474
+ </div>
475
+ </div>
476
+ <p class="text-gray-600 italic mb-6">
477
+ "We engaged Melissa specifically to address investor concerns about our operational efficiency. In 9 months, she helped us improve productivity by 26% and reduce working capital by $35M - results we proudly highlighted in our next earnings call."
478
+ </p>
479
+ <div class="flex items-center">
480
+ <img src="https://randomuser.me/api/portraits/women/63.jpg" alt="Client" class="w-12 h-12 rounded-full mr-4">
481
+ <div>
482
+ <h4 class="font-bold">Lisa Rodriguez</h4>
483
+ <p class="text-gray-500 text-sm">CFO, Advanced Manufacturing Co.</p>
484
+ </div>
485
+ </div>
486
+ </div>
487
+ </div>
488
+ </div>
489
+ </section>
490
+
491
+ <!-- CTA -->
492
+ <section class="gradient-bg text-white py-20">
493
+ <div class="container mx-auto px-6 text-center">
494
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Help Robertshaw Deliver on Its Commitments?</h2>
495
+ <p class="text-xl mb-8 max-w-2xl mx-auto">
496
+ Let's discuss how Melissa can translate Robertshaw's public priorities into measurable operational results.
497
+ </p>
498
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
499
+ <button class="bg-white hover:bg-gray-100 text-blue-600 font-bold py-3 px-8 rounded-full transition duration-300">
500
+ <i class="fas fa-phone-alt mr-2"></i> Schedule Call with Melissa
501
+ </button>
502
+ <button class="bg-transparent hover:bg-blue-800 text-white font-bold py-3 px-8 border-2 border-white rounded-full transition duration-300">
503
+ <i class="fas fa-envelope mr-2"></i> Request Custom Proposal
504
+ </button>
505
+ </div>
506
+ </div>
507
+ </section>
508
+
509
+ <!-- Footer -->
510
+ <footer class="bg-gray-900 text-white py-12">
511
+ <div class="container mx-auto px-6">
512
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
513
+ <div>
514
+ <h3 class="text-xl font-bold mb-4">Xcelerant Consulting</h3
515
+ </html>
prompts.txt ADDED
File without changes