-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew-clients-starter-offer.html
More file actions
1042 lines (946 loc) · 34.8 KB
/
Copy pathnew-clients-starter-offer.html
File metadata and controls
1042 lines (946 loc) · 34.8 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
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>For New Clients | Low-Risk Security Starter Offer</title>
<meta name="description"
content="Starter package for cloud, compliance, and AI security reviews. Fixed scope, clear deliverables, and a low-risk first step for new clients." />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<!-- New Client Starter Package -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Service",
"name": "New Client Starter Package",
"description": "Fixed-scope starter package for cloud, compliance, and AI security reviews with clear deliverables and a low-risk first step.",
"url": "https://www.mousa-cloud.com/new-clients-starter-offer.html",
"provider": {
"@id": "https://www.mousa-cloud.com/#organization"
},
"areaServed": [
"United States", "US",
"Singapore", "SG",
"Saudi Arabia", "SA",
"Hong Kong", "HK",
"Japan", "JP"
],
"serviceType": "Starter Package"
}
</script>
<!-- Free Discovery Call -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Service",
"name": "Free Discovery Call",
"description": "30-minute call to confirm fit, define the issue, and decide whether the starter package is the right first step.",
"url": "https://www.mousa-cloud.com/new-clients-starter-offer.html",
"provider": {
"@id": "https://www.mousa-cloud.com/#organization"
},
"areaServed": [
"United States", "US",
"Singapore", "SG",
"Saudi Arabia", "SA",
"Hong Kong", "HK",
"Japan", "JP"
],
"serviceType": "Discovery Call"
}
</script>
<style>
:root,
[data-theme="light"] {
--text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
--text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
--text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
--text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
--text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
--text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
--space-1: 0.25rem;
--space-2: 0.5rem;
--space-3: 0.75rem;
--space-4: 1rem;
--space-5: 1.25rem;
--space-6: 1.5rem;
--space-8: 2rem;
--space-10: 2.5rem;
--space-12: 3rem;
--space-16: 4rem;
--space-20: 5rem;
--color-bg: #f7f6f2;
--color-surface: #f9f8f5;
--color-surface-2: #fbfbf9;
--color-surface-offset: #f3f0ec;
--color-border: #d4d1ca;
--color-divider: #dcd9d5;
--color-text: #28251d;
--color-text-muted: #66645e;
--color-text-faint: #8a8781;
--color-text-inverse: #f9f8f4;
--color-primary: #01696f;
--color-primary-hover: #0c4e54;
--color-primary-highlight: #d8e8e6;
--color-success: #437a22;
--color-warning: #964219;
--radius-sm: 0.375rem;
--radius-md: 0.5rem;
--radius-lg: 0.75rem;
--radius-xl: 1rem;
--radius-full: 9999px;
--shadow-sm: 0 1px 2px rgba(26, 25, 22, 0.06);
--shadow-md: 0 8px 24px rgba(26, 25, 22, 0.08);
--shadow-lg: 0 20px 50px rgba(26, 25, 22, 0.12);
--content-default: 1100px;
--content-narrow: 720px;
--font-display: 'Instrument Serif', Georgia, serif;
--font-body: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;
}
[data-theme="dark"] {
--color-bg: #171614;
--color-surface: #1c1b19;
--color-surface-2: #201f1d;
--color-surface-offset: #22211f;
--color-border: #393836;
--color-divider: #2b2a28;
--color-text: #e3e0d9;
--color-text-muted: #b2ada4;
--color-text-faint: #8b857d;
--color-text-inverse: #171614;
--color-primary: #4f98a3;
--color-primary-hover: #6aaebb;
--color-primary-highlight: #263638;
--color-success: #78b356;
--color-warning: #cf8f6a;
--shadow-sm: 0 1px 2px rgba(0, 0, 0, .2);
--shadow-md: 0 8px 24px rgba(0, 0, 0, .28);
--shadow-lg: 0 20px 50px rgba(0, 0, 0, .38);
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
min-height: 100vh;
background: var(--color-bg);
color: var(--color-text);
font-family: var(--font-body);
font-size: var(--text-base);
line-height: 1.6;
}
a {
color: inherit;
}
img,
svg {
display: block;
max-width: 100%;
}
.container {
width: min(calc(100% - 2rem), var(--content-default));
margin: 0 auto;
}
.narrow {
width: min(calc(100% - 2rem), var(--content-narrow));
margin: 0 auto;
}
.site-header {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(14px);
background: color-mix(in srgb, var(--color-bg) 86%, transparent);
border-bottom: 1px solid var(--color-divider);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-4);
padding: .9rem 0;
}
.brand {
display: inline-flex;
align-items: center;
gap: .9rem;
text-decoration: none;
font-weight: 600;
}
.brand-mark {
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
background: var(--color-primary);
color: white;
display: grid;
place-items: center;
box-shadow: var(--shadow-sm);
}
.brand-name {
display: flex;
flex-direction: column;
gap: .1rem;
}
.brand-name small {
color: var(--color-text-muted);
font-size: var(--text-xs);
font-weight: 500;
}
.header-actions {
display: flex;
align-items: center;
gap: .75rem;
}
.theme-toggle,
.ghost-link,
.btn {
min-height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: var(--radius-full);
text-decoration: none;
font-weight: 600;
font-size: var(--text-sm);
border: 1px solid transparent;
}
.theme-toggle {
width: 44px;
color: var(--color-text);
background: var(--color-surface);
border-color: var(--color-border);
}
.ghost-link {
padding: 0 1rem;
color: var(--color-text);
background: var(--color-surface);
border-color: var(--color-border);
}
.btn {
padding: 0 1.2rem;
}
.btn-primary {
background: var(--color-primary);
color: var(--color-text-inverse);
}
.btn-primary:hover {
background: var(--color-primary-hover);
}
.btn-secondary {
background: transparent;
color: var(--color-primary);
border-color: color-mix(in srgb, var(--color-primary) 28%, var(--color-border));
}
main section {
padding: clamp(var(--space-10), 8vw, var(--space-20)) 0;
}
.hero {
padding-top: clamp(var(--space-12), 9vw, 7rem);
background:
radial-gradient(circle at top left, color-mix(in srgb, var(--color-primary-highlight) 75%, transparent), transparent 42%),
linear-gradient(180deg, color-mix(in srgb, var(--color-surface-offset) 88%, transparent), transparent 70%);
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: .5rem;
padding: .45rem .8rem;
border-radius: var(--radius-full);
background: var(--color-primary-highlight);
color: var(--color-primary);
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: .04em;
text-transform: uppercase;
}
.hero-grid {
display: grid;
gap: var(--space-8);
align-items: start;
}
.hero h1 {
margin: var(--space-4) 0 var(--space-4);
font-family: var(--font-display);
font-size: var(--text-2xl);
line-height: 1.02;
letter-spacing: -0.03em;
max-width: 12ch;
}
.lead {
color: var(--color-text-muted);
max-width: 62ch;
font-size: var(--text-lg);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: .9rem;
margin-top: var(--space-6);
}
.trust-strip {
display: flex;
flex-wrap: wrap;
gap: .8rem;
margin-top: var(--space-6);
color: var(--color-text-muted);
font-size: var(--text-sm);
}
.trust-pill {
padding: .65rem .9rem;
border-radius: var(--radius-full);
background: var(--color-surface);
border: 1px solid var(--color-border);
}
.hero-card,
.card {
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-xl);
box-shadow: var(--shadow-md);
}
.hero-card {
padding: var(--space-6);
}
.price-tag {
display: inline-flex;
align-items: baseline;
gap: .4rem;
font-weight: 700;
color: var(--color-primary);
margin-bottom: var(--space-4);
}
.price-tag strong {
font-size: clamp(2rem, 1.1rem + 2.8vw, 3.25rem);
line-height: 1;
}
.hero-card h2,
.section-title {
font-size: var(--text-xl);
line-height: 1.12;
margin: 0 0 var(--space-4);
}
.hero-card p,
.card p,
.muted {
color: var(--color-text-muted);
}
.check-list,
.step-list,
.faq-list,
.deliver-list {
list-style: none;
padding: 0;
margin: 0;
}
.check-list li,
.deliver-list li,
.step-list li {
display: grid;
grid-template-columns: auto 1fr;
gap: .8rem;
align-items: start;
padding: .8rem 0;
border-bottom: 1px solid var(--color-divider);
}
.check-list li:last-child,
.deliver-list li:last-child,
.step-list li:last-child {
border-bottom: 0;
}
.icon-dot {
width: 1.5rem;
height: 1.5rem;
margin-top: .15rem;
border-radius: 50%;
display: grid;
place-items: center;
flex-shrink: 0;
background: color-mix(in srgb, var(--color-primary) 15%, var(--color-surface-offset));
color: var(--color-primary);
font-weight: 700;
font-size: .85rem;
}
.section-head {
max-width: 58ch;
margin-bottom: var(--space-8);
}
.section-head p {
color: var(--color-text-muted);
}
.grid-2,
.grid-3 {
display: grid;
gap: var(--space-5);
}
.grid-3 {
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.grid-2 {
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
padding: var(--space-6);
}
.card h3 {
margin: 0 0 .65rem;
font-size: var(--text-lg);
line-height: 1.15;
}
.soft-note {
margin-top: var(--space-4);
padding: 1rem 1.1rem;
border-radius: var(--radius-lg);
background: var(--color-surface-offset);
border: 1px solid var(--color-divider);
color: var(--color-text-muted);
font-size: var(--text-sm);
}
.band {
background: var(--color-surface-offset);
border-block: 1px solid var(--color-divider);
}
.steps-grid {
display: grid;
gap: var(--space-4);
}
.step {
display: grid;
grid-template-columns: auto 1fr;
gap: 1rem;
padding: 1.15rem;
background: var(--color-surface);
border: 1px solid var(--color-border);
border-radius: var(--radius-lg);
}
.step-number {
width: 2rem;
height: 2rem;
border-radius: 50%;
display: grid;
place-items: center;
background: var(--color-primary);
color: white;
font-weight: 700;
}
.proof-callout {
padding: var(--space-6);
border-radius: var(--radius-xl);
background: linear-gradient(180deg, color-mix(in srgb, var(--color-primary-highlight) 70%, transparent), var(--color-surface));
border: 1px solid color-mix(in srgb, var(--color-primary) 16%, var(--color-border));
}
.proof-callout blockquote {
margin: 0;
font-family: var(--font-display);
font-size: clamp(1.5rem, 1rem + 1.4vw, 2.15rem);
line-height: 1.12;
}
.mini-grid {
display: grid;
gap: var(--space-4);
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
margin-top: var(--space-5);
}
.mini-stat {
padding: 1rem;
border-radius: var(--radius-lg);
background: var(--color-surface);
border: 1px solid var(--color-border);
}
.mini-stat strong {
display: block;
font-size: var(--text-lg);
margin-bottom: .2rem;
}
.faq-item {
padding: 1rem 0;
border-bottom: 1px solid var(--color-divider);
}
.faq-item:last-child {
border-bottom: 0;
}
.faq-item h3 {
margin: 0 0 .35rem;
font-size: 1.05rem;
}
.cta-panel {
padding: clamp(var(--space-6), 5vw, var(--space-10));
border-radius: calc(var(--radius-xl) + 2px);
background: var(--color-text);
color: var(--color-text-inverse);
box-shadow: var(--shadow-lg);
}
.cta-panel h2 {
margin: 0 0 .8rem;
font-size: clamp(2rem, 1.3rem + 2vw, 3rem);
font-family: var(--font-display);
line-height: 1.02;
}
.cta-panel p {
color: color-mix(in srgb, var(--color-text-inverse) 74%, transparent);
max-width: 55ch;
}
.cta-panel .btn-secondary {
color: var(--color-text-inverse);
border-color: rgba(255, 255, 255, .22);
}
footer {
padding: var(--space-8) 0 var(--space-10);
color: var(--color-text-muted);
font-size: var(--text-sm);
}
.footer-row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 1rem;
border-top: 1px solid var(--color-divider);
padding-top: var(--space-5);
}
@media (min-width: 900px) {
.hero-grid {
grid-template-columns: 1.1fr .9fr;
}
.steps-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 640px) {
.header-inner {
align-items: flex-start;
flex-direction: column;
}
.header-actions {
width: 100%;
justify-content: space-between;
}
.hero h1 {
max-width: 100%;
}
.hero-actions {
flex-direction: column;
}
.hero-actions .btn,
.hero-actions .ghost-link {
width: 100%;
}
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
* {
transition: none !important;
}
}
</style>
</head>
<body>
<noscript>
<div
style="position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(233, 7, 7, 0.7); color: white; padding: 20px; border-radius: 10px;">
<p><strong>JavaScript is disabled in your browser.</strong></p>
<p>Please enable JavaScript to view this page correctly.</p>
</div>
</noscript>
<div id="profile-container" style="width:fit-content;">
<header class="logo-video-container"
style="width: 100%; max-width: 400px; margin: 0 auto 1rem auto; overflow: hidden; border-radius: 8px;">
<div class="logo-video"
style="position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 aspect ratio */ height: 0;">
<a href="/">
<video autoplay muted>
<source src="resized-logo.mp4" type='video/mp4'>
Your browser does not support the video tag.
</video>
</a>
</div>
</header>
<header class="site-header">
<div class="container header-inner">
<a class="brand" href="#top" aria-label="Starter offer page home">
<span class="brand-mark" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5 12.5L9.5 17L19 7.5" stroke="currentColor" stroke-width="2.3" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M12 3L3 7.5V12C3 17 6.4 20.6 12 22C17.6 20.6 21 17 21 12V7.5L12 3Z" stroke="currentColor"
stroke-width="1.7" stroke-linejoin="round" />
</svg>
</span>
<span class="brand-name">
<span>For New Clients</span>
<small>Low-risk first engagement</small>
</span>
</a>
<div class="header-actions">
<button class="theme-toggle" type="button" data-theme-toggle aria-label="Switch color theme">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="5"></circle>
<path
d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42">
</path>
</svg>
</button>
<a class="ghost-link" href="#how-it-works">How it works</a>
<a class="btn btn-primary" href="https://calendly.com/contact-mousa-cloud-consulting/30min"
target="_blank">Book free call</a>
</div>
</div>
</header>
<main id="main">
<section class="hero" id="top">
<div class="container hero-grid">
<div>
<span class="eyebrow">Start here if you are a new client</span>
<h1>Begin with one clear, low-risk security engagement.</h1>
<p class="lead">If you are interested but not ready to commit to a large project, this page gives you the
safest first step: a fixed-scope assessment with clear deliverables, a fixed price, and no obligation to
continue afterwards.</p>
<div class="hero-actions">
<a class="btn btn-primary" href="https://calendly.com/contact-mousa-cloud-consulting/30min"
target="_blank">Book a free 30-minute discovery call</a>
<a class="ghost-link" href="#starter-package">See the starter package</a>
</div>
<div class="trust-strip" aria-label="Trust signals">
<span class="trust-pill">Fixed scope</span>
<span class="trust-pill">Fixed price</span>
<span class="trust-pill">Written findings</span>
<span class="trust-pill">Optional NDA</span>
<span class="trust-pill">No long-term commitment</span>
</div>
</div>
<aside class="hero-card" aria-labelledby="starter-package-title" id="starter-package">
<div class="price-tag"><span>Starter package</span> <strong>USD 1,500</strong></div>
<h2 id="starter-package-title">48-Hour Risk Snapshot</h2>
<p>A fast, structured first engagement for teams that want senior security input before deciding on broader
consulting work.</p>
<ul class="check-list" role="list">
<li><span class="icon-dot">1</span>
<div><strong>Focused review</strong><br><span class="muted">A narrow review of the environment, use
case,
or security concern you want examined first.</span></div>
</li>
<li><span class="icon-dot">2</span>
<div><strong>Top risks identified</strong><br><span class="muted">A short list of the highest-priority
issues, weak points, or governance gaps.</span></div>
</li>
<li><span class="icon-dot">3</span>
<div><strong>Actionable next steps</strong><br><span class="muted">The fastest fixes, the most important
follow-up work, and the order to tackle them.</span></div>
</li>
<li><span class="icon-dot">4</span>
<div><strong>Debrief call included</strong><br><span class="muted">A walkthrough call so you leave with
clarity, not just a document.</span></div>
</li>
</ul>
<div class="soft-note">Best for new clients who want to assess fit, reduce uncertainty, and get immediate
value without buying a full audit or long engagement.</div>
</aside>
</div>
</section>
<section>
<div class="container">
<div class="section-head">
<h2 class="section-title">Who this is for</h2>
<p>This page is designed for cautious first-time buyers who want to move forward carefully, with a defined
first step and very clear expectations.</p>
</div>
<div class="grid-3">
<article class="card">
<h3>Teams that need a safe first step</h3>
<p>You know there may be cloud, compliance, or AI security issues, but you are not ready to approve a
larger
project yet.</p>
</article>
<article class="card">
<h3>Founders and CTOs comparing options</h3>
<p>You want to test how I think, communicate, and deliver before deciding whether broader work makes
sense.
</p>
</article>
<article class="card">
<h3>Companies with a real problem now</h3>
<p>You do not need theory. You need a practical view of risks, priorities, and next actions within days.
</p>
</article>
</div>
</div>
</section>
<section class="band">
<div class="container">
<div class="section-head">
<h2 class="section-title">What you get</h2>
<p>The package is intentionally small, but it still delivers something concrete enough to help you make a
decision and move forward with confidence.</p>
</div>
<div class="grid-2">
<div class="card">
<h3>Included deliverables</h3>
<ul class="deliver-list" role="list">
<li><span class="icon-dot">✓</span>
<div><strong>Scoped review</strong><br><span class="muted">A focused examination of the area we agree
to
review first, such as AWS security posture, GenAI risk, access control, or compliance
readiness.</span></div>
</li>
<li><span class="icon-dot">✓</span>
<div><strong>Short written summary</strong><br><span class="muted">A concise findings document you can
share internally.</span></div>
</li>
<li><span class="icon-dot">✓</span>
<div><strong>Priority ranking</strong><br><span class="muted">The top issues ordered by urgency,
impact,
and effort.</span></div>
</li>
<li><span class="icon-dot">✓</span>
<div><strong>Debrief call</strong><br><span class="muted">A call to walk through findings, answer
questions, and explain what should happen next.</span></div>
</li>
</ul>
</div>
<div class="card">
<h3>What it is not</h3>
<ul class="deliver-list" role="list">
<li><span class="icon-dot">–</span>
<div><strong>Not a full security programme</strong><br><span class="muted">This first step is meant to
reduce risk and create clarity, not replace a broader engagement.</span></div>
</li>
<li><span class="icon-dot">–</span>
<div><strong>Not open-ended hourly work</strong><br><span class="muted">The scope is fixed so you know
what you are buying.</span></div>
</li>
<li><span class="icon-dot">–</span>
<div><strong>Not a vague discovery exercise</strong><br><span class="muted">You receive actual
findings
and practical output, not just conversation.</span></div>
</li>
<li><span class="icon-dot">–</span>
<div><strong>Not a commitment to phase two</strong><br><span class="muted">You are free to stop after
the starter package if that is what makes sense.</span></div>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="how-it-works">
<div class="container">
<div class="section-head">
<h2 class="section-title">How it works</h2>
<p>The process is designed to feel predictable and low-stress. You should know what happens before, during,
and after the engagement.</p>
</div>
<div class="steps-grid">
<article class="step">
<div class="step-number">1</div>
<div>
<h3>Discovery call</h3>
<p>We use the free 30-minute call to confirm fit, define the specific issue you want reviewed, and
decide
whether the starter package is the right first step.</p>
</div>
</article>
<article class="step">
<div class="step-number">2</div>
<div>
<h3>Scope confirmation</h3>
<p>You get a clear definition of what is included, what is excluded, what access is needed, and what the
final output will look like.</p>
</div>
</article>
<article class="step">
<div class="step-number">3</div>
<div>
<h3>48-hour review window</h3>
<p>I review the agreed area, identify top risks, and prepare concise findings with practical next
actions.
</p>
</div>
</article>
<article class="step">
<div class="step-number">4</div>
<div>
<h3>Report and debrief</h3>
<p>You receive the written summary and we discuss what matters most, what can wait, and what a sensible
next phase would be if you want one.</p>
</div>
</article>
</div>
</div>
</section>
<section>
<div class="container grid-2" style="align-items:start;">
<div class="proof-callout">
<h2 class="section-title">Why this is low risk</h2>
<blockquote>It gives you a real output, a real decision point, and a real chance to assess fit without
jumping
straight into a larger commitment.</blockquote>
<div class="mini-grid">
<div class="mini-stat"><strong>Fixed fee</strong><span class="muted">No open-ended billing
surprise.</span>
</div>
<div class="mini-stat"><strong>Short timeline</strong><span class="muted">Fast enough to help active
decisions.</span></div>
<div class="mini-stat"><strong>Clear deliverable</strong><span class="muted">You leave with findings, not
ambiguity.</span></div>
<div class="mini-stat"><strong>Optional next phase</strong><span class="muted">Continue only if it makes
sense.</span></div>
</div>
</div>
<div class="card">
<h3>What usually happens next</h3>
<ul class="step-list" role="list">
<li><span class="icon-dot">A</span>
<div><strong>You stop there</strong><br><span class="muted">If you only needed clarity, the package can
stand on its own.</span></div>
</li>
<li><span class="icon-dot">B</span>
<div><strong>You ask for a larger proposal</strong><br><span class="muted">For example, a cloud security
audit, compliance readiness assessment, or architecture hardening review.</span></div>
</li>
<li><span class="icon-dot">C</span>
<div><strong>You keep me as an advisor</strong><br><span class="muted">If you want ongoing support
rather
than a one-off engagement.</span></div>
</li>
</ul>
<div class="soft-note">This structure helps first-time clients buy with less pressure. The package stands on
its own, but it can also open the door to a deeper engagement later.</div>
</div>
</div>
</section>
<section class="band">
<div class="container">
<div class="section-head">
<h2 class="section-title">Trust and practical assurances</h2>
<p>New clients usually need clarity about process, professionalism, and confidentiality before they feel
comfortable taking a first step.</p>
</div>
<div class="grid-3">
<article class="card">
<h3>Professional process</h3>
<p>Scope is defined up front, communication is structured, and the engagement ends with a specific output
and discussion of next steps.</p>
</article>
<article class="card">
<h3>Confidentiality respected</h3>
<p>NDA-friendly, confidentiality-conscious, and suitable for teams that do not want to expose more than
needed at the start.</p>
</article>
<article class="card">
<h3>Built for hesitant first engagements</h3>
<p>This page exists specifically because many buyers want a lower-risk way to begin before committing to a
broader consulting relationship.</p>
</article>
</div>
</div>
</section>
<section>
<div class="container">
<div class="section-head narrow">
<h2 class="section-title">Questions new clients usually ask</h2>
</div>
<div class="narrow card" style="padding-top:1.2rem; padding-bottom:1.2rem;">
<div class="faq-item">
<h3>What if I am not sure the package is the right fit?</h3>
<p>The free discovery call exists for that reason. We can decide together whether the starter package
makes
sense or whether another first step would be better.</p>
</div>
<div class="faq-item">
<h3>What if my issue is larger than a starter package?</h3>
<p>Then the starter package becomes a focused first cut: enough to identify priorities and scope the
larger
engagement more intelligently.</p>
</div>
<div class="faq-item">
<h3>Will I be pushed into a larger project afterwards?</h3>
<p>No. A larger proposal is only discussed if you ask for it or if it is clearly useful after the initial
findings are delivered.</p>
</div>
<div class="faq-item">
<h3>What kind of teams is this best for?</h3>
<p>It is best for startups, SaaS teams, and regulated or security-conscious teams that want senior input
but
want to begin with a smaller, lower-risk engagement.</p>
</div>
</div>
</div>
</section>
<section>
<div class="container cta-panel">
<h2>Start with one smart first step.</h2>
<p>If you want a lower-risk way to begin, the starter package is designed for exactly that. Book the free
call,
explain the issue you want reviewed, and we can confirm whether this is the right entry point.</p>
<div class="hero-actions" style="margin-top:1.25rem;">
<a class="btn btn-primary" href="https://calendly.com/contact-mousa-cloud-consulting/30min"
target="_blank">Book your free 30-minute discovery call</a>
<a class="btn btn-secondary" href="#starter-package">Review the package again</a>
</div>
</div>
</section>
</main>
<footer>
<div class="container footer-row">
<span>Low-risk starter offer page for new consulting clients.</span>
<span>Fixed scope · Clear output · Optional next phase</span>
</div>
</footer>
<script>
(function () {
const root = document.documentElement;
const button = document.querySelector('[data-theme-toggle]');
let theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
root.setAttribute('data-theme', theme);
const updateIcon = () => {
button.innerHTML = theme === 'dark'
? '<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="5"></circle><path d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"></path></svg>'
: '<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg>';
};
updateIcon();
button.addEventListener('click', function () {
theme = theme === 'dark' ? 'light' : 'dark';
root.setAttribute('data-theme', theme);
updateIcon();