-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadvisory.html
More file actions
862 lines (834 loc) · 24.5 KB
/
advisory.html
File metadata and controls
862 lines (834 loc) · 24.5 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
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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Advisory — Solutions Page</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #f9f8f5;
--bg-alt: #ffffff;
--text-primary: #111111;
--text-secondary: #555555;
--text-muted: #888888;
--border: #e2e0d8;
--accent: #111111;
--radius-lg: 16px;
--radius-md: 8px;
}
body {
font-family: Georgia, 'Times New Roman', serif;
background: var(--bg);
color: var(--text-primary);
font-size: 16px;
line-height: 1.7;
}
/* ── NAVBAR ── */
nav {
background: var(--bg-alt);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
}
.nav-inner {
max-width: 1080px;
margin: 0 auto;
padding: 0 2rem;
height: 60px;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-logo {
font-family: 'Courier New', monospace;
font-size: 13px;
font-weight: bold;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-primary);
}
.nav-links {
display: flex;
gap: 28px;
list-style: none;
}
.nav-links a {
font-family: 'Courier New', monospace;
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-secondary);
text-decoration: none;
}
.nav-cta {
font-family: 'Courier New', monospace;
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
background: var(--accent);
color: #fff;
padding: 8px 18px;
border-radius: var(--radius-md);
text-decoration: none;
}
/* ── SHARED LAYOUT ── */
.container {
max-width: 1080px;
margin: 0 auto;
padding: 0 2rem;
}
/* ── HERO ── */
.hero {
background: var(--bg-alt);
padding: 6rem 2rem 5rem;
text-align: left;
}
.hero-inner {
max-width: 1080px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.hero-eyebrow {
font-family: 'Courier New', monospace;
font-size: 10px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 1rem;
}
.hero-headline {
font-size: 38px;
font-weight: normal;
line-height: 1.2;
color: var(--text-primary);
margin-bottom: 1.25rem;
font-style: italic;
}
.hero-sub {
font-family: 'Courier New', monospace;
font-size: 13px;
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 2rem;
}
.hero-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.btn-primary {
font-family: 'Courier New', monospace;
font-size: 11px;
letter-spacing: 0.07em;
text-transform: uppercase;
background: var(--accent);
color: #fff;
padding: 12px 22px;
border-radius: var(--radius-md);
text-decoration: none;
border: none;
cursor: pointer;
}
.btn-outline {
font-family: 'Courier New', monospace;
font-size: 11px;
letter-spacing: 0.07em;
text-transform: uppercase;
background: transparent;
color: var(--text-primary);
padding: 12px 22px;
border-radius: var(--radius-md);
border: 1px solid var(--border);
text-decoration: none;
cursor: pointer;
}
.img-placeholder {
background: #eeede8;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
color: #bbb;
font-family: 'Courier New', monospace;
font-size: 10px;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.hero-img { height: 320px; }
/* ── LOGO / TRUST STRIP ── */
.trust-strip {
background: var(--bg);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 1.5rem 2rem;
}
.trust-inner {
max-width: 1080px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 2.5rem;
flex-wrap: wrap;
}
.trust-label {
font-family: 'Courier New', monospace;
font-size: 9.5px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--text-muted);
white-space: nowrap;
}
.trust-logos {
display: flex;
gap: 2rem;
flex-wrap: wrap;
align-items: center;
}
.trust-logo {
font-family: 'Courier New', monospace;
font-size: 11px;
color: #aaa;
letter-spacing: 0.06em;
border: 0.5px solid #ddd;
padding: 5px 12px;
border-radius: 4px;
}
/* ── SECTION HEADERS ── */
.section-header {
text-align: left;
padding: 5rem 0 3rem;
}
.section-eyebrow {
font-family: 'Courier New', monospace;
font-size: 10px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 0.75rem;
}
.section-headline {
font-size: 30px;
font-weight: normal;
font-style: italic;
line-height: 1.3;
color: var(--text-primary);
margin-bottom: 0.75rem;
max-width: 580px;
}
.section-sub {
font-family: 'Courier New', monospace;
font-size: 12.5px;
color: var(--text-secondary);
max-width: 520px;
line-height: 1.65;
}
/* ── 3-STEP HOW IT WORKS ── */
.how-it-works {
background: var(--bg-alt);
padding: 5rem 2rem;
}
.steps-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 1.5rem;
margin-top: 3rem;
}
.step-card {
background: var(--bg);
border: 0.5px solid var(--border);
border-radius: var(--radius-lg);
padding: 2rem;
}
.step-num {
font-family: 'Courier New', monospace;
font-size: 11px;
color: var(--text-muted);
letter-spacing: 0.08em;
margin-bottom: 1rem;
border: 0.5px solid var(--border);
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border-radius: 50%;
}
.step-title {
font-size: 18px;
font-weight: normal;
font-style: italic;
margin-bottom: 0.75rem;
}
.step-copy {
font-family: 'Courier New', monospace;
font-size: 12px;
color: var(--text-secondary);
line-height: 1.65;
}
.step-img-placeholder {
height: 140px;
background: #eeede8;
border-radius: var(--radius-md);
margin-top: 1.25rem;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Courier New', monospace;
font-size: 9px;
color: #bbb;
letter-spacing: 0.08em;
text-transform: uppercase;
}
/* ── ALTERNATING FEATURE ROWS ── */
.features {
padding: 2rem 0 5rem;
}
.feature-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
padding: 4rem 0;
border-bottom: 0.5px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-eyebrow {
font-family: 'Courier New', monospace;
font-size: 9.5px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 0.75rem;
}
.feature-title {
font-size: 26px;
font-weight: normal;
font-style: italic;
line-height: 1.3;
margin-bottom: 1rem;
}
.feature-copy {
font-family: 'Courier New', monospace;
font-size: 12px;
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 1.25rem;
}
.feature-benefit {
font-family: 'Courier New', monospace;
font-size: 11px;
color: var(--text-primary);
border-left: 2px solid var(--accent);
padding-left: 12px;
line-height: 1.6;
}
.feature-img {
height: 340px;
background: #eeede8;
border-radius: var(--radius-lg);
display: flex;
align-items: center;
justify-content: center;
font-family: 'Courier New', monospace;
font-size: 9px;
color: #bbb;
letter-spacing: 0.08em;
text-transform: uppercase;
}
/* ── RESULTS / BEFORE-AFTER ── */
.results-section {
background: var(--bg-alt);
padding: 5rem 2rem;
}
.before-after {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-top: 2.5rem;
margin-bottom: 1.5rem;
}
.ba-card {
border: 0.5px solid var(--border);
border-radius: var(--radius-lg);
padding: 1.75rem;
}
.ba-label {
font-family: 'Courier New', monospace;
font-size: 9px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 0.75rem;
}
.ba-card.before { background: #f5f4f0; }
.ba-card.after { background: #111; color: #eee; }
.ba-card.after .ba-label { color: #888; }
.ba-copy {
font-family: 'Courier New', monospace;
font-size: 12px;
line-height: 1.7;
}
.roi-card {
background: #f5f4f0;
border: 0.5px solid var(--border);
border-radius: var(--radius-lg);
padding: 1.5rem 1.75rem;
margin-bottom: 1.5rem;
}
.roi-label {
font-family: 'Courier New', monospace;
font-size: 9px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 0.5rem;
}
.roi-copy {
font-family: 'Courier New', monospace;
font-size: 12px;
color: var(--text-secondary);
line-height: 1.65;
}
.case-placeholder {
border: 1px dashed #ccc;
border-radius: var(--radius-lg);
height: 80px;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Courier New', monospace;
font-size: 10px;
color: #bbb;
letter-spacing: 0.06em;
text-transform: uppercase;
}
/* ── COMPARISON TABLE ── */
.compare-section {
padding: 5rem 2rem;
background: var(--bg);
}
.compare-table {
width: 100%;
border-collapse: collapse;
margin-top: 2.5rem;
font-size: 13px;
}
.compare-table th {
text-align: left;
font-family: 'Courier New', monospace;
font-size: 10px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-muted);
padding: 10px 14px;
border-bottom: 1px solid var(--border);
font-weight: normal;
background: var(--bg-alt);
}
.compare-table th:first-child { border-radius: var(--radius-md) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-md) 0 0; }
.compare-table td {
padding: 11px 14px;
border-bottom: 0.5px solid var(--border);
font-family: 'Courier New', monospace;
font-size: 11.5px;
color: var(--text-secondary);
background: var(--bg-alt);
}
.compare-table td:first-child { color: var(--text-primary); font-size: 12.5px; font-family: Georgia, serif; }
.compare-table tr:last-child td { border-bottom: none; }
.tick { color: #2a7a5a; font-weight: bold; }
.part { color: #b07010; }
.cross { color: #ccc; }
.our-col { background: #f5f4f0 !important; font-weight: bold; color: var(--text-primary) !important; }
/* ── SOCIAL PROOF ── */
.social-section {
background: var(--bg-alt);
padding: 5rem 2rem;
}
.quotes-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-top: 2.5rem;
}
.quote-card {
border: 0.5px solid var(--border);
border-radius: var(--radius-lg);
padding: 1.75rem;
background: var(--bg);
}
.quote-stars {
color: #ccc;
font-size: 13px;
letter-spacing: 2px;
margin-bottom: 1rem;
}
.quote-text {
font-size: 14px;
font-style: italic;
line-height: 1.65;
color: var(--text-primary);
margin-bottom: 1.25rem;
}
.quote-attr {
font-family: 'Courier New', monospace;
font-size: 10px;
color: var(--text-muted);
letter-spacing: 0.06em;
}
.quote-placeholder {
border: 1px dashed #ccc;
border-radius: var(--radius-lg);
height: 80px;
grid-column: 1 / -1;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Courier New', monospace;
font-size: 10px;
color: #bbb;
letter-spacing: 0.06em;
text-transform: uppercase;
}
/* ── FINAL CTA ── */
.cta-section {
background: #111;
padding: 6rem 2rem;
text-align: center;
}
.cta-headline {
font-size: 34px;
font-style: italic;
font-weight: normal;
color: #fff;
margin-bottom: 1rem;
line-height: 1.3;
}
.cta-sub {
font-family: 'Courier New', monospace;
font-size: 12px;
color: #888;
margin-bottom: 2.5rem;
line-height: 1.65;
}
.cta-actions {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
.btn-white {
font-family: 'Courier New', monospace;
font-size: 11px;
letter-spacing: 0.07em;
text-transform: uppercase;
background: #fff;
color: #111;
padding: 13px 24px;
border-radius: var(--radius-md);
border: none;
cursor: pointer;
text-decoration: none;
}
.btn-ghost {
font-family: 'Courier New', monospace;
font-size: 11px;
letter-spacing: 0.07em;
text-transform: uppercase;
background: transparent;
color: #fff;
padding: 13px 24px;
border-radius: var(--radius-md);
border: 1px solid #444;
cursor: pointer;
text-decoration: none;
}
.cta-context {
font-family: 'Courier New', monospace;
font-size: 11px;
color: #666;
margin-top: 1.5rem;
font-style: italic;
}
/* ── FOOTER ── */
footer {
background: #0d0d0d;
padding: 2rem;
border-top: 0.5px solid #222;
}
.footer-inner {
max-width: 1080px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
}
.footer-tagline {
font-family: Georgia, serif;
font-size: 12px;
font-style: italic;
color: #555;
}
.footer-links {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.footer-links a {
font-family: 'Courier New', monospace;
font-size: 10px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #555;
text-decoration: none;
}
</style>
</head>
<body>
<!-- NAVBAR -->
<nav>
<div class="nav-inner">
<span class="nav-logo">Dunamis</span>
<ul class="nav-links">
<li><a href="#">What We Do</a></li>
<li><a href="#">How It Works</a></li>
<li><a href="#">Results</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<a href="#" class="nav-cta">Request a Strategy Call</a>
</div>
</nav>
<!-- HERO -->
<section class="hero">
<div class="hero-inner">
<div>
<p class="hero-eyebrow">Advisory</p>
<h1 class="hero-headline">You're About to Make a High-Stakes Decision. Let's Make Sure It's the Right One.</h1>
<p class="hero-sub">For leadership teams navigating commercial complexity, partner risk, and execution uncertainty.</p>
<div class="hero-actions">
<a href="#" class="btn-primary">Download Advisory Brief</a>
<a href="#" class="btn-outline">Book a Strategy Call</a>
</div>
</div>
<div class="img-placeholder hero-img">[ Hero image / illustration ]</div>
</div>
</section>
<!-- TRUST STRIP -->
<div class="trust-strip">
<div class="trust-inner">
<span class="trust-label">Trusted by leadership teams across</span>
<div class="trust-logos">
<span class="trust-logo">Telecom</span>
<span class="trust-logo">Infrastructure</span>
<span class="trust-logo">Trade & Commodities</span>
<span class="trust-logo">Government</span>
<span class="trust-logo">Financial Services</span>
</div>
</div>
</div>
<!-- HOW IT WORKS -->
<section class="how-it-works">
<div class="container">
<div class="section-header">
<p class="section-eyebrow">How it works</p>
<h2 class="section-headline">A clear process designed for decisions that can't afford to go wrong.</h2>
<p class="section-sub">We step in before commitments are made — and work with you through every stage until your engagement is aligned, governed, and ready to deliver.</p>
</div>
<div class="steps-grid">
<div class="step-card">
<div class="step-num">1</div>
<h3 class="step-title">Assess</h3>
<p class="step-copy">We analyse your options, commercial context, and decision landscape to surface what matters most.</p>
<div class="step-img-placeholder">[ Screenshot / diagram ]</div>
</div>
<div class="step-card">
<div class="step-num">2</div>
<h3 class="step-title">Structure</h3>
<p class="step-copy">We identify best-fit partners and define roles, governance, and decision authority to keep engagements aligned.</p>
<div class="step-img-placeholder">[ Screenshot / diagram ]</div>
</div>
<div class="step-card">
<div class="step-num">3</div>
<h3 class="step-title">Ready</h3>
<p class="step-copy">We close execution gaps, resolve misalignment, and ensure your team is prepared to move into delivery with confidence.</p>
<div class="step-img-placeholder">[ Screenshot / diagram ]</div>
</div>
</div>
</div>
</section>
<!-- ALTERNATING FEATURES -->
<section style="background: var(--bg); padding: 2rem 0;">
<div class="container">
<div class="section-header">
<p class="section-eyebrow">What we do</p>
<h2 class="section-headline">Does your leadership team feel exposed when it matters most?</h2>
<p class="section-sub">Critical decisions on partners, commercial structures, and execution readiness are often made without sufficient clarity — and too late to course-correct.</p>
</div>
</div>
<!-- Row 1: text left, image right -->
<div class="container">
<div class="feature-row">
<div>
<p class="feature-eyebrow">Commercial & Strategic Guidance</p>
<h3 class="feature-title">Clarity on the decisions that define your trajectory.</h3>
<p class="feature-copy">We advise clients on commercial and strategic decisions where clarity is required. This includes assessing options, testing viability, and supporting leadership to choose practical, defensible courses of action.</p>
<p class="feature-benefit">"Clients reduce costly mid-engagement realignments by catching critical gaps before contracts are signed."</p>
</div>
<div class="feature-img">[ Feature image / screenshot ]</div>
</div>
<!-- Row 2: image left, text right -->
<div class="feature-row reverse">
<div>
<p class="feature-eyebrow">Partner Identification & Governance Structuring</p>
<h3 class="feature-title">The right partners. The right structure. From the start.</h3>
<p class="feature-copy">We identify and advise on best-fit partners within the market and help structure how parties work together. This includes defining roles, decision authority, governance frameworks, and engagement protocols.</p>
<p class="feature-benefit">"Engagements structured from day one hold together when complexity increases — because governance was never an afterthought."</p>
</div>
<div class="feature-img">[ Feature image / screenshot ]</div>
</div>
<!-- Row 3: text left, image right -->
<div class="feature-row">
<div>
<p class="feature-eyebrow">Risk, Alignment & Execution Readiness</p>
<h3 class="feature-title">Risks identified. Gaps closed. Ready to move.</h3>
<p class="feature-copy">We identify risks, misalignment, and execution gaps early, and help address them before commitments are made. The focus is on ensuring engagements are aligned, controlled, and ready to progress into delivery.</p>
<p class="feature-benefit">"Fewer failed partnerships. Reduced legal and renegotiation costs. Faster time-to-delivery."</p>
</div>
<div class="feature-img">[ Feature image / screenshot ]</div>
</div>
</div>
</section>
<!-- RESULTS / BEFORE-AFTER -->
<section class="results-section">
<div class="container">
<div class="section-header">
<p class="section-eyebrow">Results & Outcomes</p>
<h2 class="section-headline">What changes when advisory is done right.</h2>
</div>
<div class="before-after">
<div class="ba-card before">
<p class="ba-label">Before</p>
<p class="ba-copy">Leadership teams enter partnerships with undefined roles, unclear risk exposure, and governance designed on the fly. Decisions are made under pressure without adequate commercial testing or partner validation.</p>
</div>
<div class="ba-card after">
<p class="ba-label">After</p>
<p class="ba-copy">Engagements move forward with structured authority, aligned parties, and risks addressed before they become problems. Leadership teams move into delivery with confidence and a defensible position.</p>
</div>
</div>
<div class="roi-card">
<p class="roi-label">ROI framing</p>
<p class="roi-copy">Fewer failed partnerships · Reduced legal and renegotiation costs · Faster time-to-delivery · Governance that holds under operational pressure</p>
</div>
<div class="case-placeholder">[ Case study — CEO / CCO navigating a major commercial partnership ]</div>
</div>
</section>
<!-- COMPARISON TABLE -->
<section class="compare-section">
<div class="container">
<div class="section-header">
<p class="section-eyebrow">Why us</p>
<h2 class="section-headline">How we compare to the alternatives leadership teams typically consider.</h2>
</div>
<table class="compare-table">
<thead>
<tr>
<th>Capability</th>
<th class="our-col">Dunamis Advisory</th>
<th>Management Consultancy</th>
<th>Legal Advisor</th>
</tr>
</thead>
<tbody>
<tr>
<td>Commercial & strategic guidance</td>
<td class="our-col tick">✓</td>
<td class="tick">✓</td>
<td class="cross">—</td>
</tr>
<tr>
<td>Partner identification</td>
<td class="our-col tick">✓</td>
<td class="part">Partial</td>
<td class="cross">—</td>
</tr>
<tr>
<td>Governance structuring</td>
<td class="our-col tick">✓</td>
<td class="part">Partial</td>
<td class="part">Partial</td>
</tr>
<tr>
<td>Execution readiness focus</td>
<td class="our-col tick">✓</td>
<td class="cross">—</td>
<td class="cross">—</td>
</tr>
<tr>
<td>Lean, senior-led engagement</td>
<td class="our-col tick">✓</td>
<td class="cross">—</td>
<td class="cross">—</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- SOCIAL PROOF -->
<section class="social-section">
<div class="container">
<div class="section-header">
<p class="section-eyebrow">Social proof</p>
<h2 class="section-headline">What leadership teams say after working with us.</h2>
</div>
<div class="quotes-grid">
<div class="quote-card">
<p class="quote-stars">★ ★ ★ ★ ★</p>
<p class="quote-text">"They helped us assess three potential partners in two weeks and gave us a clear recommendation we could defend to the board."</p>
<p class="quote-attr">[Name], CEO — [Company]</p>
</div>
<div class="quote-card">
<p class="quote-stars">★ ★ ★ ★ ★</p>
<p class="quote-text">"We went into the engagement with a governance structure that actually held up under pressure. That's rare."</p>
<p class="quote-attr">[Name], Chief Commercial Officer — [Industry]</p>
</div>
<div class="quote-placeholder">[ Add 1–2 further testimonials from C-suite / senior leadership ]</div>
</div>
</div>
</section>
<!-- FINAL CTA -->
<section class="cta-section">
<h2 class="cta-headline">Bring us your decision.<br>We'll help you make it with confidence.</h2>
<p class="cta-sub">Tell us your challenge. We'll show you how to move forward clearly and decisively.</p>
<div class="cta-actions">
<a href="#" class="btn-white">Download Our Advisory Brief</a>
<a href="#" class="btn-ghost">Book a 30-Min Strategy Call</a>
</div>
<p class="cta-context">"Advisory for leadership teams that can't afford the wrong call."</p>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-inner">
<p class="footer-tagline">"Advisory for leadership teams that can't afford the wrong call."</p>
<div class="footer-links">
<a href="#">What We Do</a>
<a href="#">Pricing</a>
<a href="#">Case Studies</a>
<a href="#">About</a>
<a href="#">Contact</a>
<a href="#">Privacy Policy</a>
</div>
</div>
</footer>
</body>
</html>