File size: 30,773 Bytes
264cd06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>RateDispatch | Freight Dispatch Platform</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .flat-card {
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .flat-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }
        .flat-btn {
            border-radius: 6px;
            transition: all 0.2s ease;
        }
        .flat-btn:hover {
            transform: translateY(-1px);
        }
        .primary-bg {
            background-color: #3b82f6;
        }
        .primary-text {
            color: #3b82f6;
        }
        .secondary-bg {
            background-color: #10b981;
        }
        .secondary-text {
            color: #10b981;
        }
        .divider {
            height: 1px;
            background-color: #e5e7eb;
        }
        .rating-stars {
            color: #f59e0b;
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Navigation -->
    <nav class="bg-white shadow-sm">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16">
                <div class="flex items-center">
                    <div class="flex-shrink-0 flex items-center">
                        <i class="fas fa-truck text-blue-500 text-2xl mr-2"></i>
                        <span class="text-xl font-bold text-gray-800">Rate<span class="text-blue-500">Dispatch</span></span>
                    </div>
                    <div class="hidden sm:ml-6 sm:flex sm:space-x-8">
                        <a href="#" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Find Dispatchers</a>
                        <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Find Carriers</a>
                        <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Messages</a>
                        <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Reports</a>
                    </div>
                </div>
                <div class="hidden sm:ml-6 sm:flex sm:items-center">
                    <button class="flat-btn px-4 py-2 text-sm font-medium text-gray-700 mr-4 bg-gray-100">Log In</button>
                    <button class="flat-btn px-4 py-2 text-sm font-medium text-white bg-blue-500 hover:bg-blue-600">Sign Up</button>
                </div>
                <div class="-mr-2 flex items-center sm:hidden">
                    <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500">
                        <span class="sr-only">Open main menu</span>
                        <i class="fas fa-bars"></i>
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <div class="bg-white">
        <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
            <div class="lg:grid lg:grid-cols-12 lg:gap-8">
                <div class="px-4 sm:px-0 sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left lg:flex lg:items-center">
                    <div>
                        <h1 class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl">
                            <span class="block">The freight dispatch</span>
                            <span class="block text-blue-500">platform that works</span>
                        </h1>
                        <p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
                            Connect with the best trucking companies or find qualified dispatchers to handle your freight. Our platform makes logistics simple and efficient.
                        </p>
                        <div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0">
                            <div class="grid grid-cols-1 gap-3 sm:grid-cols-2">
                                <div class="rounded-md shadow">
                                    <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 hover:bg-blue-600 md:py-4 md:text-lg md:px-10">
                                        Post a Load
                                    </a>
                                </div>
                                <div>
                                    <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-500 bg-blue-50 hover:bg-blue-100 md:py-4 md:text-lg md:px-10">
                                        Find Carriers
                                    </a>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="mt-12 sm:mt-16 lg:mt-0 lg:col-span-6">
                    <div class="bg-white sm:max-w-md sm:w-full sm:mx-auto sm:rounded-lg sm:overflow-hidden">
                        <div class="px-4 py-8 sm:px-10">
                            <div class="text-center">
                                <h3 class="text-lg font-medium text-gray-900">How it works</h3>
                            </div>
                            <div class="mt-6 space-y-6">
                                <div class="flex items-start">
                                    <div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
                                        <i class="fas fa-search text-blue-500"></i>
                                    </div>
                                    <div class="ml-4">
                                        <h4 class="text-sm font-medium text-gray-900">1. Post your load</h4>
                                        <p class="mt-1 text-sm text-gray-500">Describe your freight requirements and budget</p>
                                    </div>
                                </div>
                                <div class="flex items-start">
                                    <div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
                                        <i class="fas fa-bolt text-blue-500"></i>
                                    </div>
                                    <div class="ml-4">
                                        <h4 class="text-sm font-medium text-gray-900">2. Receive bids</h4>
                                        <p class="mt-1 text-sm text-gray-500">Qualified carriers will submit competitive bids</p>
                                    </div>
                                </div>
                                <div class="flex items-start">
                                    <div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
                                        <i class="fas fa-check-circle text-blue-500"></i>
                                    </div>
                                    <div class="ml-4">
                                        <h4 class="text-sm font-medium text-gray-900">3. Select carrier</h4>
                                        <p class="mt-1 text-sm text-gray-500">Review profiles and ratings to choose the best match</p>
                                    </div>
                                </div>
                                <div class="flex items-start">
                                    <div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
                                        <i class="fas fa-truck text-blue-500"></i>
                                    </div>
                                    <div class="ml-4">
                                        <h4 class="text-sm font-medium text-gray-900">4. Track shipment</h4>
                                        <p class="mt-1 text-sm text-gray-500">Monitor your freight in real-time until delivery</p>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Marketplace Section -->
    <div class="bg-gray-50 py-12">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="lg:text-center">
                <h2 class="text-base text-blue-500 font-semibold tracking-wide uppercase">Marketplace</h2>
                <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
                    Available loads and carriers
                </p>
                <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
                    Browse through our active loads or find qualified carriers for your freight.
                </p>
            </div>

            <div class="mt-10">
                <div class="flex space-x-4 mb-6">
                    <button class="flat-btn px-4 py-2 text-sm font-medium text-white bg-blue-500">All Loads</button>
                    <button class="flat-btn px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100">Dry Van</button>
                    <button class="flat-btn px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100">Reefer</button>
                    <button class="flat-btn px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100">Flatbed</button>
                </div>

                <div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
                    <!-- Load Card 1 -->
                    <div class="flat-card bg-white p-6">
                        <div class="flex justify-between">
                            <div>
                                <h3 class="text-lg font-medium text-gray-900">Chicago, IL to Dallas, TX</h3>
                                <p class="mt-1 text-sm text-gray-500">Dry Van • 48,000 lbs</p>
                            </div>
                            <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-blue-100 text-blue-800">
                                $2,850
                            </span>
                        </div>
                        <div class="mt-4">
                            <p class="text-gray-600">Electronics - Must be delivered by Friday</p>
                        </div>
                        <div class="mt-6 pt-4 border-t border-gray-200">
                            <div class="flex justify-between items-center">
                                <div class="flex items-center">
                                    <div class="flex-shrink-0">
                                        <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
                                    </div>
                                    <div class="ml-3">
                                        <p class="text-sm font-medium text-gray-900">Sarah Johnson</p>
                                        <div class="flex space-x-1">
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <span class="text-xs text-gray-500">(24)</span>
                                        </div>
                                    </div>
                                </div>
                                <button class="flat-btn px-3 py-1 text-sm font-medium text-blue-500 bg-blue-50">View</button>
                            </div>
                        </div>
                    </div>

                    <!-- Load Card 2 -->
                    <div class="flat-card bg-white p-6">
                        <div class="flex justify-between">
                            <div>
                                <h3 class="text-lg font-medium text-gray-900">Atlanta, GA to Miami, FL</h3>
                                <p class="mt-1 text-sm text-gray-500">Reefer • 42,500 lbs</p>
                            </div>
                            <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-green-100 text-green-800">
                                $3,200
                            </span>
                        </div>
                        <div class="mt-4">
                            <p class="text-gray-600">Perishable goods - Temp control required</p>
                        </div>
                        <div class="mt-6 pt-4 border-t border-gray-200">
                            <div class="flex justify-between items-center">
                                <div class="flex items-center">
                                    <div class="flex-shrink-0">
                                        <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
                                    </div>
                                    <div class="ml-3">
                                        <p class="text-sm font-medium text-gray-900">Michael Rodriguez</p>
                                        <div class="flex space-x-1">
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star-half-alt rating-stars text-xs"></i>
                                            <span class="text-xs text-gray-500">(18)</span>
                                        </div>
                                    </div>
                                </div>
                                <button class="flat-btn px-3 py-1 text-sm font-medium text-blue-500 bg-blue-50">View</button>
                            </div>
                        </div>
                    </div>

                    <!-- Load Card 3 -->
                    <div class="flat-card bg-white p-6">
                        <div class="flex justify-between">
                            <div>
                                <h3 class="text-lg font-medium text-gray-900">Denver, CO to Phoenix, AZ</h3>
                                <p class="mt-1 text-sm text-gray-500">Flatbed • 45,000 lbs</p>
                            </div>
                            <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-yellow-100 text-yellow-800">
                                $2,600
                            </span>
                        </div>
                        <div class="mt-4">
                            <p class="text-gray-600">Construction materials - Oversized load</p>
                        </div>
                        <div class="mt-6 pt-4 border-t border-gray-200">
                            <div class="flex justify-between items-center">
                                <div class="flex items-center">
                                    <div class="flex-shrink-0">
                                        <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1566492031773-4f4e44671857?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
                                    </div>
                                    <div class="ml-3">
                                        <p class="text-sm font-medium text-gray-900">James Wilson</p>
                                        <div class="flex space-x-1">
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <i class="fas fa-star rating-stars text-xs"></i>
                                            <span class="text-xs text-gray-500">(32)</span>
                                        </div>
                                    </div>
                                </div>
                                <button class="flat-btn px-3 py-1 text-sm font-medium text-blue-500 bg-blue-50">View</button>
                            </div>
                        </div>
                    </div>
                </div>

                <div class="mt-8 text-center">
                    <a href="#" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-blue-500 bg-blue-50 hover:bg-blue-100">
                        View all available loads
                        <i class="fas fa-chevron-right ml-2"></i>
                    </a>
                </div>
            </div>
        </div>
    </div>

    <!-- How It Works -->
    <div class="bg-white py-12">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="lg:text-center">
                <h2 class="text-base text-blue-500 font-semibold tracking-wide uppercase">For Carriers</h2>
                <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
                    Grow your trucking business
                </p>
                <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
                    Find consistent freight and build your reputation on our platform.
                </p>
            </div>

            <div class="mt-10">
                <div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10">
                    <div class="flat-card bg-gray-50 p-6">
                        <div class="flex items-start">
                            <div class="flex-shrink-0 bg-blue-500 rounded-md p-3 text-white">
                                <i class="fas fa-search-dollar"></i>
                            </div>
                            <div class="ml-4">
                                <h3 class="text-lg leading-6 font-medium text-gray-900">Find better paying loads</h3>
                                <p class="mt-2 text-base text-gray-500">
                                    Access thousands of loads daily with transparent pricing and requirements.
                                </p>
                            </div>
                        </div>
                    </div>

                    <div class="flat-card bg-gray-50 p-6">
                        <div class="flex items-start">
                            <div class="flex-shrink-0 bg-green-500 rounded-md p-3 text-white">
                                <i class="fas fa-chart-line"></i>
                            </div>
                            <div class="ml-4">
                                <h3 class="text-lg leading-6 font-medium text-gray-900">Reduce empty miles</h3>
                                <p class="mt-2 text-base text-gray-500">
                                    Our matching algorithm helps you find backhauls and optimize your routes.
                                </p>
                            </div>
                        </div>
                    </div>

                    <div class="flat-card bg-gray-50 p-6">
                        <div class="flex items-start">
                            <div class="flex-shrink-0 bg-purple-500 rounded-md p-3 text-white">
                                <i class="fas fa-medal"></i>
                            </div>
                            <div class="ml-4">
                                <h3 class="text-lg leading-6 font-medium text-gray-900">Build your reputation</h3>
                                <p class="mt-2 text-base text-gray-500">
                                    Earn ratings and reviews that help you stand out to high-quality shippers.
                                </p>
                            </div>
                        </div>
                    </div>

                    <div class="flat-card bg-gray-50 p-6">
                        <div class="flex items-start">
                            <div class="flex-shrink-0 bg-yellow-500 rounded-md p-3 text-white">
                                <i class="fas fa-file-invoice-dollar"></i>
                            </div>
                            <div class="ml-4">
                                <h3 class="text-lg leading-6 font-medium text-gray-900">Get paid faster</h3>
                                <p class="mt-2 text-base text-gray-500">
                                    Our payment system ensures you get paid on time, every time.
                                </p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Stats -->
    <div class="bg-blue-500">
        <div class="max-w-7xl mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8 lg:py-20">
            <div class="max-w-4xl mx-auto text-center">
                <h2 class="text-3xl font-extrabold text-white sm:text-4xl">
                    Trusted by thousands of logistics professionals
                </h2>
                <p class="mt-3 text-xl text-blue-100 sm:mt-4">
                    Join the platform that's transforming freight dispatch.
                </p>
            </div>
            <div class="mt-10 text-center sm:max-w-3xl sm:mx-auto sm:grid sm:grid-cols-3 sm:gap-8">
                <div class="flat-card bg-white p-6 m-4">
                    <span class="text-5xl font-extrabold text-blue-500">5,000+</span>
                    <p class="mt-2 text-base text-gray-500">Active Dispatchers</p>
                </div>
                <div class="flat-card bg-white p-6 m-4">
                    <span class="text-5xl font-extrabold text-blue-500">15,000+</span>
                    <p class="mt-2 text-base text-gray-500">Registered Carriers</p>
                </div>
                <div class="flat-card bg-white p-6 m-4">
                    <span class="text-5xl font-extrabold text-blue-500">$2B+</span>
                    <p class="mt-2 text-base text-gray-500">Freight Moved</p>
                </div>
            </div>
        </div>
    </div>

    <!-- CTA -->
    <div class="bg-white">
        <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
            <h2 class="text-3xl font-extrabold tracking-tight text-gray-900 sm:text-4xl">
                <span class="block">Ready to transform your freight operations?</span>
                <span class="block text-blue-500">Sign up for free today.</span>
            </h2>
            <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
                <div class="inline-flex rounded-md shadow">
                    <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 hover:bg-blue-600">
                        Get started
                    </a>
                </div>
                <div class="ml-3 inline-flex">
                    <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-blue-500 bg-blue-50 hover:bg-blue-100">
                        Learn more
                    </a>
                </div>
            </div>
        </div>
    </div>

    <!-- Footer -->
    <footer class="bg-gray-800">
        <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
            <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Company</h3>
                    <ul class="mt-4 space-y-4">
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">About</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Careers</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Press</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Blog</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Solutions</h3>
                    <ul class="mt-4 space-y-4">
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">For Dispatchers</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">For Carriers</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Enterprise</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Brokerage</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Resources</h3>
                    <ul class="mt-4 space-y-4">
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Help Center</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Community</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Webinars</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">API Docs</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Legal</h3>
                    <ul class="mt-4 space-y-4">
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Privacy</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Terms</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Security</a></li>
                        <li><a href="#" class="text-base text-gray-400 hover:text-white">Compliance</a></li>
                    </ul>
                </div>
            </div>
            <div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between">
                <div class="flex space-x-6 md:order-2">
                    <a href="#" class="text-gray-400 hover:text-gray-300">
                        <i class="fab fa-facebook-f"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-gray-300">
                        <i class="fab fa-twitter"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-gray-300">
                        <i class="fab fa-instagram"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-gray-300">
                        <i class="fab fa-linkedin-in"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-gray-300">
                        <i class="fab fa-youtube"></i>
                    </a>
                </div>
                <p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
                    &copy; 2023 RateDispatch. All rights reserved.
                </p>
            </div>
        </div>
    </footer>

    <script>
        // Simple animation for demo purposes
        document.addEventListener('DOMContentLoaded', function() {
            // Add hover effects to flat cards
            const flatCards = document.querySelectorAll('.flat-card');
            flatCards.forEach(card => {
                card.addEventListener('mouseenter', function() {
                    this.style.transform = 'translateY(-2px)';
                });
                card.addEventListener('mouseleave', function() {
                    this.style.transform = 'translateY(0)';
                });
            });

            // Mobile menu toggle would go here
            const mobileMenuButton = document.querySelector('button[aria-label="Open main menu"]');
            if (mobileMenuButton) {
                mobileMenuButton.addEventListener('click', function() {
                    // This would toggle a mobile menu in a real implementation
                    console.log('Mobile menu clicked');
                });
            }
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=sdurdiyev/ratedispatch5" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>