DjayChucko commited on
Commit
fc0b1a2
·
verified ·
1 Parent(s): b1779c1

Manual changes saved

Browse files
Files changed (1) hide show
  1. academy.html +189 -134
academy.html CHANGED
@@ -6,6 +6,7 @@
6
  <title>Sales Academy | McGPT</title>
7
 
8
  <script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
 
9
  <link rel="icon" type="image/png" href="Images/scaleway-logomark-white.png">
10
  <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
11
  <script src="https://cdn.tailwindcss.com"></script>
@@ -13,195 +14,229 @@
13
 
14
  <script>
15
  tailwind.config = {
16
- darkMode: 'class',
17
  theme: {
18
  extend: {
19
  fontFamily: { sans: ['Space Grotesk', 'sans-serif'] },
20
- colors: {
21
- primary: '#a855f7',
22
- brandDark: '#0f051a',
23
- skyAccent: '#06b6d4',
24
- blueAccent: '#3b82f6',
25
- violetAccent: '#8b5cf6'
26
- }
27
  }
28
  }
29
  }
30
  </script>
31
  <style>
32
- body { font-family: 'Space Grotesk', sans-serif; overflow-x: hidden; }
33
- .nav-link { @apply text-white/80 hover:text-white transition-all duration-200 relative text-sm uppercase font-bold; }
34
  .nav-link.active { @apply text-white border-b-2 border-primary; }
35
 
36
- .hamburger-line { @apply w-6 h-0.5 bg-white transition-all duration-300; }
37
- #mobileMenuButton.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
38
- #mobileMenuButton.open .hamburger-line:nth-child(2) { opacity: 0; }
39
- #mobileMenuButton.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
40
 
41
- /* --- THE BUTTON TILES --- */
42
  .why-btn {
43
  @apply flex items-center justify-center py-6 px-4 rounded-[1.5rem] font-black uppercase tracking-[0.1em] text-sm md:text-lg
44
  transition-all duration-300 border-2 shadow-2xl cursor-pointer transform
45
- hover:-translate-y-1 active:scale-95 text-center w-full backdrop-blur-md;
 
 
46
  }
 
 
 
47
 
48
- .btn-buy { background-color: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.4); color: #06b6d4; }
49
- .btn-now { background-color: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.4); color: #3b82f6; }
50
- .btn-us { background-color: rgba(139, 92, 246, 0.1); border-color: rgba(139, 92, 246, 0.4); color: #8b5cf6; }
51
-
52
- .btn-buy.active { background-color: #06b6d4 !important; color: white !important; border-color: #06b6d4; shadow: 0 10px 30px rgba(6,182,212,0.4); }
53
- .btn-now.active { background-color: #3b82f6 !important; color: white !important; border-color: #3b82f6; shadow: 0 10px 30px rgba(59,130,246,0.4); }
54
- .btn-us.active { background-color: #8b5cf6 !important; color: white !important; border-color: #8b5cf6; shadow: 0 10px 30px rgba(139,92,246,0.4); }
55
 
56
- /* --- COMPACT MODULES WITH GENEROUS INDENTATION --- */
57
  .content-wrap { display: none !important; }
58
  .content-wrap.active { display: block !important; }
59
 
60
  .module-card {
61
- @apply p-8 border transition-all flex flex-col justify-between shadow-lg;
62
- background-color: rgba(255, 255, 255, 0.15);
63
- border-color: rgba(255, 255, 255, 0.2);
64
- border-radius: 2rem;
65
- min-height: 240px;
66
- }
67
-
68
- .module-card:hover {
69
- background-color: rgba(255, 255, 255, 0.2);
70
- border-color: rgba(255, 255, 255, 0.3);
71
- }
72
-
73
- /* Indentation Logic: Adding significant left padding to elements */
74
- .module-card h3, .module-card p, .module-card span {
75
- @apply pl-6 pr-4;
76
  }
 
 
 
77
 
78
- /* --- AUTH GUARD --- */
79
- body:not(.logged-in) nav,
80
- body:not(.logged-in) #mobileMenuButton,
81
- body:not(.logged-in) #mobileMenu,
82
- body:not(.logged-in) main,
83
- body:not(.logged-in) footer {
84
- display: none !important;
85
  }
 
 
 
86
  </style>
87
  </head>
88
- <body class="bg-[#3D1862] text-white min-h-screen flex flex-col transition-colors duration-300">
89
 
90
  <header class="sticky top-0 z-[60] bg-[#0f051a]/90 backdrop-blur-lg border-b border-white/10 shadow-2xl">
91
- <div class="container mx-auto px-4 py-3 flex justify-between items-center">
92
- <a href="index.html" class="flex items-center space-x-2 group shrink-0">
93
- <img src="Images/scaleway-logomark-white.png" alt="Logo" class="h-6 mr-2 transition-transform group-hover:rotate-12">
94
- <span class="text-xl font-bold tracking-tight text-white font-heading">McGPT</span>
95
  </a>
96
- <nav class="hidden md:flex space-x-8 items-center">
97
- <a href="value-mapper.html" class="nav-link py-1">Map Industry</a>
98
- <a href="intel.html" class="nav-link py-1">Map Products</a>
99
- <a href="proof.html" class="nav-link py-1">Proof</a>
100
- <a href="scorecard.html" class="nav-link py-1">Scorecard</a>
101
- <a href="strategy.html" class="nav-link py-1">Value-Centric</a>
102
- <a href="academy.html" class="nav-link py-1 active">Academy</a>
103
  </nav>
104
  <div class="flex items-center space-x-4">
105
  <div data-netlify-identity-button class="text-[10px] font-bold uppercase cursor-pointer hover:text-primary transition-colors"></div>
106
- <button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1 p-2 z-[70] bg-primary rounded-lg">
107
- <span class="hamburger-line"></span><span class="hamburger-line"></span><span class="hamburger-line"></span>
108
- </button>
109
  </div>
110
  </div>
 
 
 
 
 
 
 
 
 
111
  </header>
112
 
113
  <main class="flex-grow bg-gradient-to-br from-[#3D1862] to-[#0f051a]">
114
- <div class="container mx-auto px-4 py-8">
115
- <div class="text-center max-w-4xl mx-auto mb-10">
116
- <h1 class="text-4xl md:text-5xl font-extrabold mb-2 tracking-tighter">Sales Academy</h1>
117
- <p class="text-white/60 text-sm">To master Value-Centric selling is to master how to qualify, quantify and justify the "3 Whys"</p>
118
- <p class="text-white/60 text-sm italic mt-1">Click a path below to learn more</p>
119
  </div>
120
 
121
- <div class="grid grid-cols-3 gap-4 md:gap-6 w-full max-w-5xl mx-auto mb-12 px-2">
122
  <button onclick="toggleWhy('buy')" id="btn-buy" class="why-btn btn-buy">Why Buy?</button>
123
  <button onclick="toggleWhy('now')" id="btn-now" class="why-btn btn-now">Why Now?</button>
124
  <button onclick="toggleWhy('us')" id="btn-us" class="why-btn btn-us">Why Us?</button>
125
  </div>
126
 
127
- <div id="academy-content" class="max-w-[98%] mx-auto pb-12" style="display: none !important;">
128
 
129
- <div id="wrap-buy" class="content-wrap">
130
- <div class="flex flex-col lg:flex-row gap-8 items-stretch">
131
- <div class="lg:w-1/5 flex flex-col items-center justify-center bg-white/5 rounded-[2rem] p-6 border border-white/5">
132
- <img src="Images/Sales.png" alt="Badge" class="w-32 h-32 md:w-40 md:h-40 object-contain drop-shadow-[0_10px_30px_rgba(6,182,212,0.3)]">
133
- <h2 class="text-lg md:text-xl font-extrabold text-skyAccent mt-4 uppercase tracking-widest text-center leading-tight">Identify & Listen</h2>
134
  </div>
135
- <div class="lg:w-4/5 grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-4">
136
- <div class="module-card border-l-8 border-l-skyAccent">
137
- <div><span class="text-skyAccent text-[10px] font-bold uppercase"> Mod 01</span><h3 class="text-base font-bold mt-2"> Targeting Customers</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Master ICP mapping and win-loss analysis.</p></div>
138
- <a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/content/all" target="_blank" class="block w-[90%] mx-auto py-2 bg-skyAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-skyAccent/80">Start</a>
 
 
 
 
139
  </div>
140
- <div class="module-card border-l-8 border-l-skyAccent">
141
- <div><span class="text-skyAccent text-[10px] font-bold uppercase"> Mod 02</span><h3 class="text-base font-bold mt-2"> Elite Prospecting</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Qualification logic and business pain identification.</p></div>
142
- <a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/content/all" target="_blank" class="block w-[90%] mx-auto py-2 bg-skyAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-skyAccent/80">Start</a>
 
 
 
 
143
  </div>
144
- <div class="module-card border-l-8 border-l-skyAccent">
145
- <div><span class="text-skyAccent text-[10px] font-bold uppercase"> Mod 03</span><h3 class="text-base font-bold mt-2"> Buyer Engagement</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Increase SSI and engage buyers on core pain points.</p></div>
146
- <a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/content/all" target="_blank" class="block w-[90%] mx-auto py-2 bg-skyAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-skyAccent/80">Start</a>
 
 
 
 
147
  </div>
148
- <div class="module-card border-l-8 border-l-skyAccent">
149
- <div><span class="text-skyAccent text-[10px] font-bold uppercase"> Mod 04</span><h3 class="text-base font-bold mt-2"> Pitching Scaleway</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Correctly position value props across industries.</p></div>
150
- <a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/content/all" target="_blank" class="block w-[90%] mx-auto py-2 bg-skyAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-skyAccent/80">Start</a>
 
 
 
 
151
  </div>
152
  </div>
153
  </div>
154
  </div>
155
 
156
- <div id="wrap-now" class="content-wrap">
157
- <div class="flex flex-col lg:flex-row gap-6 items-stretch">
158
- <div class="lg:w-1/5 flex flex-col items-center justify-center bg-white/5 rounded-[2rem] p-6 border border-white/5">
159
- <img src="Images/Strategic_Sales.png" alt="Badge" class="w-32 h-32 md:w-40 md:h-40 object-contain drop-shadow-[0_10px_30px_rgba(59,130,246,0.3)]">
160
- <h2 class="text-lg md:text-xl font-extrabold text-blueAccent mt-4 uppercase tracking-widest text-center leading-tight">Learn & Investigate</h2>
161
  </div>
162
- <div class="lg:w-4/5 grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-4">
163
- <div class="module-card border-l-8 border-l-blueAccent">
164
- <div><span class="text-blueAccent text-[10px] font-bold uppercase"> Mod 05</span><h3 class="text-base font-bold mt-2"> Mapping Stakeholders</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Identify key stakeholders, deal mobilizers and access the EB.</p></div>
165
- <a href="#" class="block w-[90%] mx-auto py-2 bg-blueAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-blueAccent/80">Start</a>
 
 
 
 
166
  </div>
167
- <div class="module-card border-l-8 border-l-blueAccent">
168
- <div><span class="text-blueAccent text-[10px] font-bold uppercase"> Mod 06</span><h3 class="text-base font-bold mt-2"> Meetings & Multithreaded</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Progress deals more effectively and find the power base earlier.</p></div>
169
- <a href="#" class="block w-[90%] mx-auto py-2 bg-blueAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-blueAccent/80">Start</a>
 
 
 
 
170
  </div>
171
- <div class="module-card border-l-8 border-l-blueAccent">
172
- <div><span class="text-blueAccent text-[10px] font-bold uppercase"> Mod 07</span><h3 class="text-base font-bold mt-2"> MEDDICC Mastery</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Build customer verified "bulletproof" business cases.</p></div>
173
- <a href="#" class="block w-[90%] mx-auto py-2 bg-blueAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-blueAccent/80">Start</a>
 
 
 
 
174
  </div>
175
- <div class="module-card border-l-8 border-l-blueAccent">
176
- <div><span class="text-blueAccent text-[10px] font-bold uppercase"> Mod 08</span><h3 class="text-base font-bold mt-2"> Urgency & Upselling</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Drive urgency, quantify inaction and expand Scaleway value.</p></div>
177
- <a href="#" class="block w-[90%] mx-auto py-2 bg-blueAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-blueAccent/80">Start</a>
 
 
 
 
178
  </div>
179
  </div>
180
  </div>
181
  </div>
182
 
183
- <div id="wrap-us" class="content-wrap">
184
- <div class="flex flex-col lg:flex-row gap-6 items-stretch">
185
- <div class="lg:w-1/5 flex flex-col items-center justify-center bg-white/5 rounded-[2rem] p-6 border border-white/5">
186
- <img src="Images/ELITE_Sales.png" alt="Badge" class="w-32 h-32 md:w-40 md:h-40 object-contain drop-shadow-[0_10px_30px_rgba(139,92,246,0.3)]">
187
- <h2 class="text-lg md:text-xl font-extrabold text-violetAccent mt-4 uppercase tracking-widest text-center leading-tight">Access & Deliver</h2>
188
  </div>
189
- <div class="lg:w-4/5 grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-4">
190
- <div class="module-card border-l-8 border-l-violetAccent">
191
- <div><span class="text-violetAccent text-[10px] font-bold uppercase"> Mod 09</span><h3 class="text-base font-bold mt-2"> Maximising PSA Teams</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Partner with engineering to win complex technical deals.</p></div>
192
- <a href="#" class="block w-[90%] mx-auto py-2 bg-violetAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-violetAccent/80">Start</a>
 
 
 
 
193
  </div>
194
- <div class="module-card border-l-8 border-l-violetAccent">
195
- <div><span class="text-violetAccent text-[10px] font-bold uppercase"> Mod 10</span><h3 class="text-base font-bold mt-2"> Solution Proposal</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Winning high-stakes technical business bids with value.</p></div>
196
- <a href="#" class="block w-[90%] mx-auto py-2 bg-violetAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-violetAccent/80">Start</a>
 
 
 
 
197
  </div>
198
- <div class="module-card border-l-8 border-l-violetAccent">
199
- <div><span class="text-violetAccent text-[10px] font-bold uppercase"> Mod 11</span><h3 class="text-base font-bold mt-2"> Forecast Mastery</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Data-driven accuracy and CRM hygiene standards.</p></div>
200
- <a href="#" class="block w-[90%] mx-auto py-2 bg-violetAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-violetAccent/80">Start</a>
 
 
 
 
201
  </div>
202
- <div class="module-card border-l-8 border-l-violetAccent">
203
- <div><span class="text-violetAccent text-[10px] font-bold uppercase"> Mod 12</span><h3 class="text-base font-bold mt-2"> Negotiation & Closing</h3><p class="text-white text-[11px] mt-3 leading-relaxed">Master mirroring and give-to-get closing tactics.</p></div>
204
- <a href="#" class="block w-[90%] mx-auto py-2 bg-violetAccent text-white rounded-lg text-[10px] font-bold uppercase text-center mt-6 transition-colors hover:bg-violetAccent/80">Start</a>
 
 
 
 
205
  </div>
206
  </div>
207
  </div>
@@ -211,30 +246,50 @@
211
  </div>
212
  </main>
213
 
214
- <footer class="bg-[#0f051a] py-8 border-t border-white/5 mt-auto">
215
- <div class="container mx-auto px-4 flex flex-col md:flex-row justify-between items-center opacity-60">
216
- <p class="text-xs text-center md:text-left">Strategic Tools Enabling Elite Sales. Contact enableingsales@scaleway.com</p>
217
- <p class="text-xs mt-4 md:mt-0 uppercase tracking-widest">&copy; 2025 McGPT</p>
218
- </div>
219
- </footer>
220
-
221
  <script>
 
222
  const checkAuth = (user) => {
223
- if (user) { document.body.classList.add('logged-in'); }
224
- else { window.location.href = "index.html"; }
 
 
 
225
  };
226
  netlifyIdentity.on('init', user => checkAuth(user));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
 
 
228
  function toggleWhy(id) {
229
  const container = document.getElementById('academy-content');
 
 
230
  document.querySelectorAll('.why-btn').forEach(btn => btn.classList.remove('active'));
231
  document.querySelectorAll('.content-wrap').forEach(wrap => wrap.classList.remove('active'));
232
-
233
- container.style.setProperty('display', 'block', 'important');
234
  document.getElementById('btn-' + id).classList.add('active');
235
  document.getElementById('wrap-' + id).classList.add('active');
 
236
  feather.replace();
 
237
  }
 
 
 
 
 
238
  </script>
239
  </body>
240
- </html>
 
6
  <title>Sales Academy | McGPT</title>
7
 
8
  <script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
9
+
10
  <link rel="icon" type="image/png" href="Images/scaleway-logomark-white.png">
11
  <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
12
  <script src="https://cdn.tailwindcss.com"></script>
 
14
 
15
  <script>
16
  tailwind.config = {
 
17
  theme: {
18
  extend: {
19
  fontFamily: { sans: ['Space Grotesk', 'sans-serif'] },
20
+ colors: { primary: '#a855f7', skyAccent: '#06b6d4', blueAccent: '#3b82f6', violetAccent: '#8b5cf6' }
 
 
 
 
 
 
21
  }
22
  }
23
  }
24
  </script>
25
  <style>
26
+ body { font-family: 'Space Grotesk', sans-serif; }
27
+ .nav-link { @apply text-white/80 hover:text-white transition-all duration-200 relative text-sm uppercase font-bold px-1; }
28
  .nav-link.active { @apply text-white border-b-2 border-primary; }
29
 
30
+ /* AUTH GUARD */
31
+ body:not(.logged-in) main, body:not(.logged-in) header nav, body:not(.logged-in) #mobileMenuBtn { display: none !important; }
 
 
32
 
 
33
  .why-btn {
34
  @apply flex items-center justify-center py-6 px-4 rounded-[1.5rem] font-black uppercase tracking-[0.1em] text-sm md:text-lg
35
  transition-all duration-300 border-2 shadow-2xl cursor-pointer transform
36
+ hover:-translate-y-1 active:scale-95 text-center w-full;
37
+ background-color: rgba(255, 255, 255, 0.05);
38
+ backdrop-filter: blur(10px);
39
  }
40
+ .btn-buy { border-color: rgba(6, 182, 212, 0.4); color: #06b6d4; }
41
+ .btn-now { border-color: rgba(59, 130, 246, 0.4); color: #3b82f6; }
42
+ .btn-us { border-color: rgba(139, 92, 246, 0.4); color: #8b5cf6; }
43
 
44
+ .btn-buy.active { background-color: #06b6d4 !important; color: white !important; }
45
+ .btn-now.active { background-color: #3b82f6 !important; color: white !important; }
46
+ .btn-us.active { background-color: #8b5cf6 !important; color: white !important; }
 
 
 
 
47
 
 
48
  .content-wrap { display: none !important; }
49
  .content-wrap.active { display: block !important; }
50
 
51
  .module-card {
52
+ @apply flex flex-col items-center justify-between text-center transition-all;
53
+ padding: 2.5rem 2rem !important;
54
+ background: rgba(255, 255, 255, 0.12) !important; border: 1px solid rgba(255, 255, 255, 0.2) !important;
55
+ border-radius: 2.5rem !important; min-height: 360px !important; box-sizing: border-box !important;
 
 
 
 
 
 
 
 
 
 
 
56
  }
57
+ .active-buy { border-left: 8px solid #06b6d4 !important; }
58
+ .active-now { border-left: 8px solid #3b82f6 !important; }
59
+ .active-us { border-left: 8px solid #8b5cf6 !important; }
60
 
61
+ .oval-button {
62
+ @apply px-10 py-3 rounded-full text-xs font-black uppercase tracking-widest transition-all shadow-lg transform hover:scale-105 active:scale-95;
63
+ margin-top: auto !important;
 
 
 
 
64
  }
65
+ .buy-theme .oval-button { background: #06b6d4; color: white; }
66
+ .now-theme .oval-button { background: #3b82f6; color: white; }
67
+ .us-theme .oval-button { background: #8b5cf6; color: white; }
68
  </style>
69
  </head>
70
+ <body class="bg-[#3D1862] text-white min-h-screen flex flex-col">
71
 
72
  <header class="sticky top-0 z-[60] bg-[#0f051a]/90 backdrop-blur-lg border-b border-white/10 shadow-2xl">
73
+ <div class="container mx-auto px-4 py-4 flex justify-between items-center">
74
+ <a href="index.html" class="flex items-center space-x-2 group">
75
+ <img src="Images/scaleway-logomark-white.png" alt="Logo" class="h-8 transition-transform group-hover:rotate-12">
76
+ <span class="text-2xl font-bold tracking-tight text-white font-heading">McGPT</span>
77
  </a>
78
+ <nav class="hidden lg:flex space-x-8 items-center">
79
+ <a href="value-mapper.html" class="nav-link">Map Industry</a>
80
+ <a href="intel.html" class="nav-link">Map Products</a>
81
+ <a href="proof.html" class="nav-link">Proof</a>
82
+ <a href="scorecard.html" class="nav-link">Scorecard</a>
83
+ <a href="academy.html" class="nav-link active">Sales Academy</a>
 
84
  </nav>
85
  <div class="flex items-center space-x-4">
86
  <div data-netlify-identity-button class="text-[10px] font-bold uppercase cursor-pointer hover:text-primary transition-colors"></div>
87
+ <button id="mobileMenuBtn" class="lg:hidden text-white p-2"><i data-feather="menu"></i></button>
 
 
88
  </div>
89
  </div>
90
+ <div id="mobileMenu" class="hidden lg:hidden bg-[#0f051a] border-t border-white/10">
91
+ <nav class="flex flex-col p-6 space-y-4 font-bold uppercase tracking-widest text-sm">
92
+ <a href="value-mapper.html" class="py-3 border-b border-white/5">Map Industry</a>
93
+ <a href="intel.html" class="py-3 border-b border-white/5">Map Products</a>
94
+ <a href="proof.html" class="py-3 border-b border-white/5">Proof</a>
95
+ <a href="scorecard.html" class="py-3 border-b border-white/5">Scorecard</a>
96
+ <a href="academy.html" class="py-3 text-primary">Academy</a>
97
+ </nav>
98
+ </div>
99
  </header>
100
 
101
  <main class="flex-grow bg-gradient-to-br from-[#3D1862] to-[#0f051a]">
102
+ <div class="container mx-auto px-4 py-12">
103
+ <div class="text-center max-w-4xl mx-auto mb-16">
104
+ <h1 class="text-5xl md:text-7xl font-extrabold mb-4 tracking-tighter">Sales Academy</h1>
105
+ <h2 class="text-xl md:text-2xl font-medium mb-4 tracking-tighter text-white/80 italic">Qualify the "3 Whys" and master value-centric selling!</h2>
 
106
  </div>
107
 
108
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 w-full max-w-5xl mx-auto mb-20 px-8">
109
  <button onclick="toggleWhy('buy')" id="btn-buy" class="why-btn btn-buy">Why Buy?</button>
110
  <button onclick="toggleWhy('now')" id="btn-now" class="why-btn btn-now">Why Now?</button>
111
  <button onclick="toggleWhy('us')" id="btn-us" class="why-btn btn-us">Why Us?</button>
112
  </div>
113
 
114
+ <div id="academy-content" class="max-w-full mx-auto pb-24 hidden">
115
 
116
+ <div id="wrap-buy" class="content-wrap buy-theme">
117
+ <div class="flex flex-col lg:flex-row gap-10">
118
+ <div class="lg:w-1/4 flex flex-col items-center justify-center bg-white/5 rounded-[3rem] p-10 border border-white/10 h-auto">
119
+ <img src="Images/Sales.png" alt="Badge" class="w-48 h-48 md:w-64 md:h-64 object-contain mb-6 drop-shadow-2xl">
120
+ <h2 class="text-2xl md:text-3xl font-black text-skyAccent uppercase tracking-widest text-center leading-tight">Identify & Listen</h2>
121
  </div>
122
+ <div class="lg:w-3/4 grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-6">
123
+ <div class="module-card active-buy">
124
+ <div class="w-full">
125
+ <span class="text-skyAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 01</span>
126
+ <h3 class="text-lg font-black mb-4 leading-tight">Targeting Customers</h3>
127
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Master ICP mapping and reverse-engineered qualification to find high-value targets.</p>
128
+ </div>
129
+ <a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/content/all" target="_blank" class="oval-button">Start</a>
130
  </div>
131
+ <div class="module-card active-buy">
132
+ <div class="w-full">
133
+ <span class="text-skyAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 02</span>
134
+ <h3 class="text-lg font-black mb-4 leading-tight">Elite Prospecting</h3>
135
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Learn strategic business pain identification and outreach frequency logic.</p>
136
+ </div>
137
+ <a href="#" class="oval-button">Start</a>
138
  </div>
139
+ <div class="module-card active-buy">
140
+ <div class="w-full">
141
+ <span class="text-skyAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 03</span>
142
+ <h3 class="text-lg font-black mb-4 leading-tight">Buyer Engagement</h3>
143
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Navigate gatekeepers and establish authority across social selling platforms.</p>
144
+ </div>
145
+ <a href="#" class="oval-button">Start</a>
146
  </div>
147
+ <div class="module-card active-buy">
148
+ <div class="w-full">
149
+ <span class="text-skyAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 04</span>
150
+ <h3 class="text-lg font-black mb-4 leading-tight">Pitching Scaleway</h3>
151
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Adapt our core value propositions to different industry stakeholders.</p>
152
+ </div>
153
+ <a href="#" class="oval-button">Start</a>
154
  </div>
155
  </div>
156
  </div>
157
  </div>
158
 
159
+ <div id="wrap-now" class="content-wrap now-theme">
160
+ <div class="flex flex-col lg:flex-row gap-10">
161
+ <div class="lg:w-1/4 flex flex-col items-center justify-center bg-white/5 rounded-[3rem] p-10 border border-white/10 h-auto">
162
+ <img src="Images/Strategic_Sales.png" alt="Badge" class="w-48 h-48 md:w-64 md:h-64 object-contain mb-6 drop-shadow-2xl">
163
+ <h2 class="text-2xl md:text-3xl font-black text-blueAccent uppercase tracking-widest text-center leading-tight">Learn & Investigate</h2>
164
  </div>
165
+ <div class="lg:w-3/4 grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-6">
166
+ <div class="module-card active-now">
167
+ <div class="w-full">
168
+ <span class="text-blueAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 05</span>
169
+ <h3 class="text-lg font-black mb-4 leading-tight">Mapping Stakeholders</h3>
170
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Identify mobilizers and map the executive power base to reduce inaction risk.</p>
171
+ </div>
172
+ <a href="#" class="oval-button">Start</a>
173
  </div>
174
+ <div class="module-card active-now">
175
+ <div class="w-full">
176
+ <span class="text-blueAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 06</span>
177
+ <h3 class="text-lg font-black mb-4 leading-tight">Multithreaded Deals</h3>
178
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Master the Challenger sale by engaging multiple stakeholders driven by motivation.</p>
179
+ </div>
180
+ <a href="#" class="oval-button">Start</a>
181
  </div>
182
+ <div class="module-card active-now">
183
+ <div class="w-full">
184
+ <span class="text-blueAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 07</span>
185
+ <h3 class="text-lg font-black mb-4 leading-tight">MEDDICC Mastery</h3>
186
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Quantify verified business cases and justify unique value propositions.</p>
187
+ </div>
188
+ <a href="#" class="oval-button">Start</a>
189
  </div>
190
+ <div class="module-card active-now">
191
+ <div class="w-full">
192
+ <span class="text-blueAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 08</span>
193
+ <h3 class="text-lg font-black mb-4 leading-tight">Urgency & Upselling</h3>
194
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Align solutions with objectives by quantifying the cost of doing nothing.</p>
195
+ </div>
196
+ <a href="#" class="oval-button">Start</a>
197
  </div>
198
  </div>
199
  </div>
200
  </div>
201
 
202
+ <div id="wrap-us" class="content-wrap us-theme">
203
+ <div class="flex flex-col lg:flex-row gap-10">
204
+ <div class="lg:w-1/4 flex flex-col items-center justify-center bg-white/5 rounded-[3rem] p-10 border border-white/10 h-auto">
205
+ <img src="Images/ELITE_Sales.png" alt="Badge" class="w-48 h-48 md:w-64 md:h-64 object-contain mb-6 drop-shadow-2xl">
206
+ <h2 class="text-2xl md:text-3xl font-black text-violetAccent uppercase tracking-widest text-center leading-tight">Access & Deliver</h2>
207
  </div>
208
+ <div class="lg:w-3/4 grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-6">
209
+ <div class="module-card active-us">
210
+ <div class="w-full">
211
+ <span class="text-violetAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 09</span>
212
+ <h3 class="text-lg font-black mb-4 leading-tight">Maximising PSA</h3>
213
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Partner with engineering to warrant deeper technical investigation and win.</p>
214
+ </div>
215
+ <a href="#" class="oval-button">Start</a>
216
  </div>
217
+ <div class="module-card active-us">
218
+ <div class="w-full">
219
+ <span class="text-violetAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 10</span>
220
+ <h3 class="text-lg font-black mb-4 leading-tight">Solution Proposal</h3>
221
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Build corporate proposals that demonstrate tangible value and sell internally.</p>
222
+ </div>
223
+ <a href="#" class="oval-button">Start</a>
224
  </div>
225
+ <div class="module-card active-us">
226
+ <div class="w-full">
227
+ <span class="text-violetAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 11</span>
228
+ <h3 class="text-lg font-black mb-4 leading-tight">Forecast Mastery</h3>
229
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Utilize account mapping and triggering events for data-driven accuracy.</p>
230
+ </div>
231
+ <a href="#" class="oval-button">Start</a>
232
  </div>
233
+ <div class="module-card active-us">
234
+ <div class="w-full">
235
+ <span class="text-violetAccent font-bold text-[10px] uppercase block mb-2 tracking-widest">Mod 12</span>
236
+ <h3 class="text-lg font-black mb-4 leading-tight">Closing Deals</h3>
237
+ <p class="text-white/70 text-sm leading-relaxed mb-6 italic">Master negotiation tactics and BATNA to increase win rates.</p>
238
+ </div>
239
+ <a href="#" class="oval-button">Start</a>
240
  </div>
241
  </div>
242
  </div>
 
246
  </div>
247
  </main>
248
 
 
 
 
 
 
 
 
249
  <script>
250
+ // --- NETLIFY AUTH GUARD ---
251
  const checkAuth = (user) => {
252
+ if (user) {
253
+ document.body.classList.add('logged-in');
254
+ } else {
255
+ window.location.href = "index.html";
256
+ }
257
  };
258
  netlifyIdentity.on('init', user => checkAuth(user));
259
+ netlifyIdentity.on('login', user => { checkAuth(user); netlifyIdentity.close(); });
260
+ netlifyIdentity.on('logout', () => window.location.href = "index.html");
261
+
262
+ // --- MOBILE MENU ---
263
+ function setupMobileMenu() {
264
+ const btn = document.getElementById('mobileMenuBtn');
265
+ const menu = document.getElementById('mobileMenu');
266
+ if (!btn || !menu) return;
267
+ btn.addEventListener('click', () => {
268
+ const isHidden = menu.classList.toggle('hidden');
269
+ btn.innerHTML = isHidden ? '<i data-feather="menu"></i>' : '<i data-feather="x"></i>';
270
+ feather.replace();
271
+ });
272
+ }
273
 
274
+ // --- ACADEMY TOGGLE LOGIC ---
275
  function toggleWhy(id) {
276
  const container = document.getElementById('academy-content');
277
+ container.classList.remove('hidden');
278
+
279
  document.querySelectorAll('.why-btn').forEach(btn => btn.classList.remove('active'));
280
  document.querySelectorAll('.content-wrap').forEach(wrap => wrap.classList.remove('active'));
281
+
 
282
  document.getElementById('btn-' + id).classList.add('active');
283
  document.getElementById('wrap-' + id).classList.add('active');
284
+
285
  feather.replace();
286
+ container.scrollIntoView({ behavior: 'smooth', block: 'start' });
287
  }
288
+
289
+ window.onload = () => {
290
+ setupMobileMenu();
291
+ feather.replace();
292
+ };
293
  </script>
294
  </body>
295
+ </html>