Spaces:
Running
Running
Manual changes saved
Browse files- 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;
|
| 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 |
-
|
| 37 |
-
|
| 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
|
|
|
|
|
|
|
| 46 |
}
|
|
|
|
|
|
|
|
|
|
| 47 |
|
| 48 |
-
.btn-buy { background-color:
|
| 49 |
-
.btn-now { background-color:
|
| 50 |
-
.btn-us { background-color:
|
| 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
|
| 62 |
-
|
| 63 |
-
border
|
| 64 |
-
border-radius:
|
| 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 |
-
|
| 79 |
-
|
| 80 |
-
|
| 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
|
| 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-
|
| 92 |
-
<a href="index.html" class="flex items-center space-x-2 group
|
| 93 |
-
<img src="Images/scaleway-logomark-white.png" alt="Logo" class="h-
|
| 94 |
-
<span class="text-
|
| 95 |
</a>
|
| 96 |
-
<nav class="hidden
|
| 97 |
-
<a href="value-mapper.html" class="nav-link
|
| 98 |
-
<a href="intel.html" class="nav-link
|
| 99 |
-
<a href="proof.html" class="nav-link
|
| 100 |
-
<a href="scorecard.html" class="nav-link
|
| 101 |
-
<a href="
|
| 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="
|
| 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-
|
| 115 |
-
<div class="text-center max-w-4xl mx-auto mb-
|
| 116 |
-
<h1 class="text-
|
| 117 |
-
<
|
| 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-
|
| 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-
|
| 128 |
|
| 129 |
-
<div id="wrap-buy" class="content-wrap">
|
| 130 |
-
<div class="flex flex-col lg:flex-row gap-
|
| 131 |
-
<div class="lg:w-1/
|
| 132 |
-
<img src="Images/Sales.png" alt="Badge" class="w-
|
| 133 |
-
<h2 class="text-
|
| 134 |
</div>
|
| 135 |
-
<div class="lg:w-
|
| 136 |
-
<div class="module-card
|
| 137 |
-
<div
|
| 138 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 139 |
</div>
|
| 140 |
-
<div class="module-card
|
| 141 |
-
<div
|
| 142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 143 |
</div>
|
| 144 |
-
<div class="module-card
|
| 145 |
-
<div
|
| 146 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 147 |
</div>
|
| 148 |
-
<div class="module-card
|
| 149 |
-
<div
|
| 150 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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-
|
| 158 |
-
<div class="lg:w-1/
|
| 159 |
-
<img src="Images/Strategic_Sales.png" alt="Badge" class="w-
|
| 160 |
-
<h2 class="text-
|
| 161 |
</div>
|
| 162 |
-
<div class="lg:w-
|
| 163 |
-
<div class="module-card
|
| 164 |
-
<div
|
| 165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
</div>
|
| 167 |
-
<div class="module-card
|
| 168 |
-
<div
|
| 169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 170 |
</div>
|
| 171 |
-
<div class="module-card
|
| 172 |
-
<div
|
| 173 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 174 |
</div>
|
| 175 |
-
<div class="module-card
|
| 176 |
-
<div
|
| 177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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-
|
| 185 |
-
<div class="lg:w-1/
|
| 186 |
-
<img src="Images/ELITE_Sales.png" alt="Badge" class="w-
|
| 187 |
-
<h2 class="text-
|
| 188 |
</div>
|
| 189 |
-
<div class="lg:w-
|
| 190 |
-
<div class="module-card
|
| 191 |
-
<div
|
| 192 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 193 |
</div>
|
| 194 |
-
<div class="module-card
|
| 195 |
-
<div
|
| 196 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 197 |
</div>
|
| 198 |
-
<div class="module-card
|
| 199 |
-
<div
|
| 200 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 201 |
</div>
|
| 202 |
-
<div class="module-card
|
| 203 |
-
<div
|
| 204 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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">© 2025 McGPT</p>
|
| 218 |
-
</div>
|
| 219 |
-
</footer>
|
| 220 |
-
|
| 221 |
<script>
|
|
|
|
| 222 |
const checkAuth = (user) => {
|
| 223 |
-
if (user) {
|
| 224 |
-
|
|
|
|
|
|
|
|
|
|
| 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>
|