Spaces:
Running
Running
Manual changes saved
Browse files- academy.html +0 -252
academy.html
CHANGED
|
@@ -1,252 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html lang="en" class="scroll-smooth">
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="UTF-8">
|
| 5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<meta name="description" content="McGPT - Our Sales Methodology">
|
| 7 |
-
<title>Sales Academy | McGPT</title>
|
| 8 |
-
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 9 |
-
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
-
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 11 |
-
<script src="https://unpkg.com/feather-icons"></script>
|
| 12 |
-
<script>
|
| 13 |
-
tailwind.config = {
|
| 14 |
-
darkMode: 'class',
|
| 15 |
-
theme: {
|
| 16 |
-
extend: {
|
| 17 |
-
colors: {
|
| 18 |
-
primary: '#6366f1',
|
| 19 |
-
secondary: '#8b5cf6',
|
| 20 |
-
dark: '#1e293b'
|
| 21 |
-
}
|
| 22 |
-
}
|
| 23 |
-
}
|
| 24 |
-
}
|
| 25 |
-
</script>
|
| 26 |
-
<style>
|
| 27 |
-
/* --- UNIFIED HEADER STYLES --- */
|
| 28 |
-
.nav-link.active {
|
| 29 |
-
@apply text-primary font-medium border-b-2 border-primary;
|
| 30 |
-
}
|
| 31 |
-
.hamburger-line {
|
| 32 |
-
@apply w-6 h-0.5 bg-white transition-all duration-300;
|
| 33 |
-
}
|
| 34 |
-
#mobileMenuButton.open .hamburger-line:nth-child(1) {
|
| 35 |
-
transform: rotate(45deg) translate(5px, 6px);
|
| 36 |
-
}
|
| 37 |
-
#mobileMenuButton.open .hamburger-line:nth-child(2) {
|
| 38 |
-
opacity: 0;
|
| 39 |
-
}
|
| 40 |
-
#mobileMenuButton.open .hamburger-line:nth-child(3) {
|
| 41 |
-
transform: rotate(-45deg) translate(5px, -6px);
|
| 42 |
-
}
|
| 43 |
-
|
| 44 |
-
/* --- PAGE-SPECIFIC STYLES --- */
|
| 45 |
-
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }
|
| 46 |
-
</style>
|
| 47 |
-
</head>
|
| 48 |
-
<body class="bg-[#3D1862] text-white min-h-screen flex flex-col" style="background-image: radial-gradient(circle at 25% 25%, rgba(39, 8, 71, 0.6) 0%, rgba(39, 8, 71, 0) 50%), radial-gradient(circle at 75% 75%, rgba(59, 15, 110, 0.6) 0%, rgba(59, 15, 110, 0) 50%);">
|
| 49 |
-
|
| 50 |
-
<header class="sticky top-0 z-50 bg-purple-800/80 backdrop-blur-md shadow-sm">
|
| 51 |
-
<div class="container mx-auto px-4 py-3">
|
| 52 |
-
<div class="flex justify-between items-center">
|
| 53 |
-
<a href="index.html" class="flex items-center space-x-2">
|
| 54 |
-
<img src="https://huggingface.co/spaces/DjayChucko/EnablingSales/resolve/main/images/Scaleway-Logomark-White.png" alt="Logo" class="h-8 mr-2">
|
| 55 |
-
<span class="text-xl font-bold text-white font-heading">McGPT</span>
|
| 56 |
-
</a>
|
| 57 |
-
<nav class="hidden md:flex space-x-8">
|
| 58 |
-
<a href="index.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Home</a>
|
| 59 |
-
<a href="value-mapper.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Mapper</a>
|
| 60 |
-
<a href="scorecard.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Scorecard</a>
|
| 61 |
-
<a href="strategy.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Method</a>
|
| 62 |
-
<a href="academy.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Academy</a>
|
| 63 |
-
<a href="intel.html" class="nav-link py-2 px-1 text-white hover:text-primary transition-colors">Products</a>
|
| 64 |
-
</nav>
|
| 65 |
-
<div class="flex items-center space-x-4">
|
| 66 |
-
<button id="themeToggle" class="p-2 rounded-full text-white hover:bg-white/20">
|
| 67 |
-
<i data-feather="moon" class="hidden dark:block"></i>
|
| 68 |
-
<i data-feather="sun" class="block dark:hidden"></i>
|
| 69 |
-
</button>
|
| 70 |
-
<button id="mobileMenuButton" class="md:hidden flex flex-col space-y-1.5 p-2 z-50 bg-[#9B5CEB] rounded-lg">
|
| 71 |
-
<span class="hamburger-line"></span>
|
| 72 |
-
<span class="hamburger-line"></span>
|
| 73 |
-
<span class="hamburger-line"></span>
|
| 74 |
-
</button>
|
| 75 |
-
</div>
|
| 76 |
-
</div>
|
| 77 |
-
</div>
|
| 78 |
-
</header>
|
| 79 |
-
|
| 80 |
-
<div id="mobileMenu" class="hidden fixed inset-0 z-40 bg-purple-900 bg-opacity-95 backdrop-blur-sm">
|
| 81 |
-
<div class="flex flex-col items-center justify-center h-full space-y-8">
|
| 82 |
-
<a href="index.html" class="nav-link text-3xl text-white">Home</a>
|
| 83 |
-
<a href="value-mapper.html" class="nav-link text-3xl text-white">Mapper</a>
|
| 84 |
-
<a href="scorecard.html" class="nav-link text-3xl text-white">Scorecard</a>
|
| 85 |
-
<a href="strategy.html" class="nav-link text-3xl text-white">Method</a>
|
| 86 |
-
<a href="academy.html" class="nav-link text-3xl text-white">Academy</a>
|
| 87 |
-
<a href="intel.html" class="nav-link text-3xl text-white">Products</a>
|
| 88 |
-
</div>
|
| 89 |
-
</div>
|
| 90 |
-
<main class="flex-grow">
|
| 91 |
-
<div class="container mx-auto px-4 py-16">
|
| 92 |
-
<div class="text-center mb-12">
|
| 93 |
-
<h1 class="text-4xl font-extrabold text-white"> CORE Sales</h1>
|
| 94 |
-
<p class="mt-4 text-lg text-purple-200">Great discovery focuses on the "Why buy?"</p>
|
| 95 |
-
</div>
|
| 96 |
-
<div id="content-container" class="max-w-4xl mx-auto space-y-8">
|
| 97 |
-
<div id="discovery-qualification" class="content-block bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 98 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">Phase 1: Discovery & Qualification</h2>
|
| 99 |
-
<p class="text-purple-100 mb-4">This initial phase is about deep listening and understanding. We use tools like the Value Mapper to connect a prospect's challenges to our core strengths. The goal is not to sell, but to diagnose. By the end of this phase, we should have a clear understanding of the customer's pain and the potential metrics for success.</p>
|
| 100 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 101 |
-
</div>
|
| 102 |
-
<div id="business-case" class="content-block bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 103 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">Phase 2: Building the Business Case</h2>
|
| 104 |
-
<p class="text-purple-100 mb-4">Once a legitimate pain is identified, we transition to quantifying the value of our solution. This involves co-creating a business case with our champion, aligning our technical solution to measurable business outcomes. The <strong>MEDDICC Scorecard</strong> becomes critical here to track our alignment with the key people and processes involved in the decision.</p>
|
| 105 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 106 |
-
</div>
|
| 107 |
-
<div id="evaluation-justification" class="content-block bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 108 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">Phase 3: Evaluation & Justification</h2>
|
| 109 |
-
<p class="text-purple-100 mb-4">In this phase, we prove our claims through a PoC or detailed evaluation. Success is not just technical validation, but demonstrating the agreed-upon business value. We focus on differentiating against the competition and mitigating any perceived risks or blockers, ensuring our champion is equipped to justify the investment to the Economic Buyer.</p>
|
| 110 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 111 |
-
</div>
|
| 112 |
-
</div>
|
| 113 |
-
|
| 114 |
-
<div class="max-w-4xl mx-auto space-y-8 mt-24">
|
| 115 |
-
<div class="text-center mb-12">
|
| 116 |
-
<h1 class="text-4xl font-extrabold text-white">STRATEGIC Sales</h1>
|
| 117 |
-
<p class="mt-4 text-lg text-purple-200">Compelling business cases answer "Why now?"</p>
|
| 118 |
-
</div>
|
| 119 |
-
<div id="stakeholder-mapping" class="bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 120 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">1. Map Stakeholders to Find Your Mobilizer</h2>
|
| 121 |
-
<p class="text-purple-100 mb-4">Before you can create urgency, you must understand who holds the power to act. Use tools like <strong>Sales Navigator & Generative AI</strong> to identify stakeholders and the <strong>Economic Buyer</strong>. Tailor your message for different personas (Strategic, Tactical, Operational) to build consensus and find a champion who can drive change.</p>
|
| 122 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 123 |
-
</div>
|
| 124 |
-
<div id="meetings-demos" class="bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 125 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">2. Master Meetings & Demos to Drive Momentum</h2>
|
| 126 |
-
<p class="text-purple-100 mb-4">Every interaction is an opportunity to move the deal forward. <strong> Prepare</strong> with a clear agenda, <strong>execute</strong> by focusing on their pain points, and **follow up** immediately with a summary and next steps to maintain the urgency you've built.</p>
|
| 127 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 128 |
-
</div>
|
| 129 |
-
<div id="qualify-meddicc" class="bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 130 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">3. Qualify with MEDDICC to Build the Business Case</h2>
|
| 131 |
-
<p class="text-purple-100 mb-4">The <strong>MEDDICC Scorecard</strong> is your tool for rigorously qualifying a deal. Use it to ask targeted questions about <strong>Metrics</strong>, <strong>Decision Criteria</strong>, and the <strong>Decision Process</strong>. By quantifying their pain and understanding their timeline, you can align Scaleway’s value directly with their most pressing needs.</p>
|
| 132 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 133 |
-
</div>
|
| 134 |
-
<div id="deal-progression" class="bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 135 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">4. Accelerate Deal Progression with Trigger Events</h2>
|
| 136 |
-
<p class="text-purple-100 mb-4">Leverage internal or external pressures to accelerate the decision. Use <strong>ROI and Case Studies</strong> to turn your solution into a "must-have." Listen for <strong>trigger events</strong> like regulatory changes, security vulnerabilities, or budget cycles to provide the final, powerful answer to "Why Now?".</p>
|
| 137 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 138 |
-
</div>
|
| 139 |
-
</div>
|
| 140 |
-
|
| 141 |
-
<div class="max-w-4xl mx-auto space-y-8 mt-24">
|
| 142 |
-
<div class="text-center mb-12">
|
| 143 |
-
<h1 class="text-4xl font-extrabold text-white"> ELITE Sales</h1>
|
| 144 |
-
<p class="mt-4 text-lg text-purple-200">Justify Scaleway's unique differentiation.</p>
|
| 145 |
-
</div>
|
| 146 |
-
<div id="solution-architects" class="bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 147 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">Solution Architects as Partners</h2>
|
| 148 |
-
<p class="text-purple-100 mb-4">Our Pre-Sales and Solution Architects (SAs) are your technical partners, ensuring every solution is tailored, validated, and optimized for your unique needs.</p>
|
| 149 |
-
<ul class="space-y-3 text-purple-100 mb-4">
|
| 150 |
-
<li class="flex items-start">
|
| 151 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 152 |
-
<span><strong>Expertise on Demand:</strong> SAs dedicate their time to customer meetings, technical Q&A, and building custom demos.</span>
|
| 153 |
-
</li>
|
| 154 |
-
<li class="flex items-start">
|
| 155 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 156 |
-
<span><strong>Early Engagement:</strong> Involve SAs from qualification to closing to ensure technical feasibility and alignment.</span>
|
| 157 |
-
</li>
|
| 158 |
-
<li class="flex items-start">
|
| 159 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 160 |
-
<span><strong>Seamless Collaboration:</strong> Use dedicated channels like #sales-technical-questions for rapid, expert support.</span>
|
| 161 |
-
</li>
|
| 162 |
-
</ul>
|
| 163 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 164 |
-
</div>
|
| 165 |
-
<div id="proposals" class="bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 166 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">Engaging Proposals & ELITE Sales</h2>
|
| 167 |
-
<p class="text-purple-100 mb-4">We don’t just present—we engage, persuade, and build trust with every stakeholder.</p>
|
| 168 |
-
<ul class="space-y-3 text-purple-100 mb-4">
|
| 169 |
-
<li class="flex items-start">
|
| 170 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 171 |
-
<span><strong>Tailored C-Level Ready Presentations:</strong> Our proposals are structured for clarity and impact, using storytelling, visuals, and reinforcement.</span>
|
| 172 |
-
</li>
|
| 173 |
-
<li class="flex items-start">
|
| 174 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 175 |
-
<span><strong>Stakeholder-Centric:</strong> We adapt our communication style to resonate with every decision-maker, from analytical to expressive.</span>
|
| 176 |
-
</li>
|
| 177 |
-
<li class="flex items-start">
|
| 178 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 179 |
-
<span><strong>Interactive & Personalized:</strong> Polls, live demos, and custom case studies make every presentation relevant and engaging.</span>
|
| 180 |
-
</li>
|
| 181 |
-
</ul>
|
| 182 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 183 |
-
</div>
|
| 184 |
-
<div id="negotiation" class="bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 185 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">Value-Centric Negotiation & Closing</h2>
|
| 186 |
-
<p class="text-purple-100 mb-4">Our negotiation approach is built on value, trust, and mutual success—not just price.</p>
|
| 187 |
-
<ul class="space-y-3 text-purple-100 mb-4">
|
| 188 |
-
<li class="flex items-start">
|
| 189 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 190 |
-
<span><strong>Value-Centric Tactics:</strong> We focus on “win-win” outcomes and understanding your BATNA (Best Alternative To a Negotiated Agreement).</span>
|
| 191 |
-
</li>
|
| 192 |
-
<li class="flex items-start">
|
| 193 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 194 |
-
<span><strong>Advanced Techniques:</strong> We use mirroring and strategic “no” tactics to build rapport and uncover real needs.</span>
|
| 195 |
-
</li>
|
| 196 |
-
<li class="flex items-start">
|
| 197 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 198 |
-
<span><strong>Transparent & Collaborative:</strong> We use emotional intelligence and collaborative problem-solving to align solutions with your goals.</span>
|
| 199 |
-
</li>
|
| 200 |
-
</ul>
|
| 201 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 202 |
-
</div>
|
| 203 |
-
<div id="forecasting" class="bg-white/10 backdrop-blur-md border border-white/10 p-8 rounded-xl shadow-lg scroll-mt-24">
|
| 204 |
-
<h2 class="text-2xl font-bold text-purple-300 mb-4">Forecasting Mastery</h2>
|
| 205 |
-
<p class="text-purple-100 mb-4">Accurate forecasting means better planning, fewer surprises, and more reliable results.</p>
|
| 206 |
-
<ul class="space-y-3 text-purple-100 mb-4">
|
| 207 |
-
<li class="flex items-start">
|
| 208 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 209 |
-
<span><strong>Data-Driven:</strong> We use MEDDICC-aligned scorecards and historical analysis for precise, actionable forecasts.</span>
|
| 210 |
-
</li>
|
| 211 |
-
<li class="flex items-start">
|
| 212 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 213 |
-
<span><strong>Multi-Perspective:</strong> Bottom-up and top-down approaches ensure comprehensive, realistic revenue predictions.</span>
|
| 214 |
-
</li>
|
| 215 |
-
<li class="flex items-start">
|
| 216 |
-
<svg class="w-6 h-6 text-purple-400 mr-3 flex-shrink-0 mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
|
| 217 |
-
<span><strong>Continuous Improvement:</strong> Regular reviews and tool integration keep forecasts sharp and responsive.</span>
|
| 218 |
-
</li>
|
| 219 |
-
</ul>
|
| 220 |
-
<p class="text-purple-100"><a href="https://scaleway.360learning.com/group/66fbe9a4f3281e47975115a2/stats/courses" target="_blank" rel="noopener noreferrer"><strong>To learn more visit this module on Sales Academy (360Learning)</strong>.</a></p>
|
| 221 |
-
</div>
|
| 222 |
-
</div>
|
| 223 |
-
</div>
|
| 224 |
-
</main>
|
| 225 |
-
|
| 226 |
-
<footer class="bg-purple-800/80 dark:bg-purple-800/80 backdrop-blur-sm border-t border-gray-700">
|
| 227 |
-
<div class="container mx-auto px-4 py-8">
|
| 228 |
-
<div class="flex flex-col md:flex-row justify-between items-center">
|
| 229 |
-
<div class="mb-6 md:mb-0">
|
| 230 |
-
<p class="text-white-600 dark:text-gray-300 mt-2 text-sm">
|
| 231 |
-
Strategic Tools Enabling Elite Sales
|
| 232 |
-
</p>
|
| 233 |
-
</div>
|
| 234 |
-
|
| 235 |
-
<div class="mt-8 pt-8 border-t border-gray-200 dark:border-gray-700 text-center text-sm text-gray-500 dark:text-gray-400">
|
| 236 |
-
<p>© 2025 McGPT. Always Be Connecting.</p>
|
| 237 |
-
</div>
|
| 238 |
-
</div>
|
| 239 |
-
</footer>
|
| 240 |
-
|
| 241 |
-
<script>
|
| 242 |
-
feather.replace();
|
| 243 |
-
const mobileMenuButton = document.getElementById('mobileMenuButton');
|
| 244 |
-
const mobileMenu = document.getElementById('mobileMenu');
|
| 245 |
-
mobileMenuButton.addEventListener('click', () => {
|
| 246 |
-
mobileMenu.classList.toggle('hidden');
|
| 247 |
-
mobileMenuButton.classList.toggle('open');
|
| 248 |
-
});
|
| 249 |
-
</script>
|
| 250 |
-
|
| 251 |
-
</body>
|
| 252 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|