<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>PivotingToAI | Safe Copilot Adoption</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap" rel="stylesheet">
<style>
/* === GLOBAL VARIABLES === */
:root {
--pta-orange: #D97706;
--pta-orange-hover: #b45309;
--pta-blue-deep: #0f172a;
--pta-blue-mid: #1e293b;
--pta-box-bg: #1f2937;
--pta-text-dark: #111111;
--pta-text-light: #f3f3f3;
--pta-white: #ffffff;
--pta-bg-light: #f8fafc;
--pta-border: #374151;
--safe-red: #dc2626;
--safe-amber: #d97706;
--safe-green: #16a34a;
--max-w: 1500px;
}
/* === BASE TYPOGRAPHY (HARD 22px MINIMUM) === */
body {
margin: 0;
padding: 0;
font-family: 'Inter', sans-serif;
font-size: 22px;
line-height: 1.6;
color: var(--pta-text-dark);
background: var(--pta-white);
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
/* === TYPOGRAPHY HIERARCHY === */
h1 { font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 900; line-height: 1.1; margin: 0 0 0.4em; text-transform: uppercase; letter-spacing: -0.02em; color: var(--pta-white); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.15; margin: 0 0 0.5em; text-transform: uppercase; letter-spacing: -0.02em; }
h3 { font-size: 1.4rem; font-weight: 800; margin: 0 0 0.4em; text-transform: uppercase; }
p { margin: 0 0 1.2em; max-width: 70ch; }
.pta-accent { color: var(--pta-orange); }
.pta-kicker { display: inline-block; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--pta-orange); margin-bottom: 1em; }
/* === BUTTONS === */
.pta-btn-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; justify-content: flex-start; }
.pta-btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 36px; border-radius: 6px; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.2s ease; border: 2px solid transparent; cursor: pointer; }
.pta-btn--primary { background: var(--pta-orange); color: var(--pta-white); border-color: var(--pta-orange); }
.pta-btn--primary:hover { background: transparent; color: var(--pta-orange); transform: translateY(-2px); }
.pta-btn--outline-light { background: transparent; border-color: var(--pta-white); color: var(--pta-white); }
.pta-btn--outline-light:hover { background: var(--pta-white); color: var(--pta-blue-deep); transform: translateY(-2px); }
.pta-btn--outline-dark { background: transparent; border-color: var(--pta-blue-deep); color: var(--pta-blue-deep); }
.pta-btn--outline-dark:hover { background: var(--pta-blue-deep); color: var(--pta-white); transform: translateY(-2px); }
/* === CONTAINERS & BACKGROUNDS === */
.pta-section { padding: 100px 0; width: 100%; display: block; text-align: left; }
.pta-container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: block; }
.pta-bg-dark { background: var(--pta-blue-deep); color: var(--pta-text-light); }
.pta-bg-dark h2, .pta-bg-dark h3 { color: var(--pta-white); }
.pta-bg-light { background: var(--pta-bg-light); color: var(--pta-text-dark); }
/* === 50/50 CSS GRID SPLIT MECHANIC === */
.pta-split {
display: grid;
grid-template-columns: minmax(20px, 1fr) minmax(0, 750px) minmax(0, 750px) minmax(20px, 1fr);
width: 100%;
min-height: 650px;
background: var(--pta-white);
}
.pta-split--dark { background: var(--pta-blue-deep); color: var(--pta-text-light); }
.pta-split--dark h2 { color: var(--pta-white); }
.pta-split--light { background: var(--pta-bg-light); }
/* Left Image Alignment */
.pta-split--img-left .pta-split__img-wrap { grid-column: 1 / 3; }
.pta-split--img-left .pta-split__text-wrap { grid-column: 3 / 4; padding: 80px 40px 80px 60px; display: flex; flex-direction: column; justify-content: center; }
/* Right Image Alignment */
.pta-split--img-right .pta-split__text-wrap { grid-column: 2 / 3; padding: 80px 60px 80px 40px; display: flex; flex-direction: column; justify-content: center; }
.pta-split--img-right .pta-split__img-wrap { grid-column: 3 / 5; }
.pta-split__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1024px) {
.pta-split { display: flex; flex-direction: column; min-height: auto; }
.pta-split__img-wrap { order: 1; min-height: 400px; width: 100%; }
.pta-split__text-wrap { order: 2; padding: 60px 40px !important; width: 100%; }
}
/* === LISTS (Divi Bullet Fix) === */
.pta-list { list-style: none !important; padding: 0 !important; margin: 30px 0 0 0 !important; }
.pta-list li { list-style-type: none !important; display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-weight: 700; color: inherit; }
.pta-list li::before { display: none !important; content: none !important; }
.pta-list-ico { flex: 0 0 auto; color: var(--pta-orange); font-weight: 900; font-size: 1.2rem; line-height: 1.4; }
.pta-list-text { font-weight: 700; line-height: 1.6; }
.pta-list-text span { font-weight: 400; opacity: 0.9; }
/* === COMPONENTS === */
.pta-trust-strip { display: flex; flex-wrap: wrap; gap: 20px 40px; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-weight: 700; font-size: 1rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; }
.pta-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.pta-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 50px; }
.pta-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; }
.pta-card { background: var(--pta-white); padding: 40px; border-radius: 6px; border: 1px solid #e2e8f0; border-left: 6px solid var(--pta-orange); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.pta-card--dark { background: var(--pta-box-bg); border-color: rgba(255,255,255,0.1); color: var(--pta-text-light); }
.pta-card--dark h3 { color: var(--pta-white); }
.pta-stat-box { border-left: 4px solid var(--pta-orange); padding-left: 20px; margin-top: 30px; }
.pta-stat-num { font-size: 4rem; font-weight: 900; color: var(--pta-orange); line-height: 1; margin-bottom: 5px; }
.pta-stat-label { font-weight: 700; font-size: 1.1rem; color: inherit; text-transform: uppercase; }
@media (max-width: 768px) {
.pta-grid-2 { grid-template-columns: 1fr; }
.pta-btn-row { flex-direction: column; }
.pta-btn { width: 100%; text-align: center; }
}
</style>
</head>
<body>
<section class="pta-section pta-bg-dark" style="padding-top: 140px;">
<div class="pta-container">
<div style="border-left: 6px solid var(--pta-orange); padding-left: 30px;">
<span class="pta-kicker">Microsoft Copilot Training</span>
<h1>Half your workforce is already using AI.<br><span class="pta-accent">You just can't see it.</span></h1>
<p style="color: #cbd5e1; max-width: 800px;">We train high-stakes, regulated environments to adopt Microsoft Copilot safely. When mistakes cost millions, you don't hire a generic training company.</p>
<div class="pta-btn-row">
<a href="https://calendly.com/pivotingtoai/talk" class="pta-btn pta-btn--primary">Book a 30-Minute Call</a>
<a href="https://pivotingtoai.co.uk/Procurement-Document.pdf" class="pta-btn pta-btn--outline-light">Download Pricing & Syllabus</a>
</div>
</div>
<div class="pta-trust-strip" style="margin-left: 36px;">
<span>NHS & Healthcare</span>
<span>Banking & Financial Services</span>
<span>Construction</span>
<span>Legal</span>
<span>Military & Police</span>
</div>
</div>
</section>
<section class="pta-split pta-split--img-left pta-split--light">
<div class="pta-split__img-wrap" style="border-right: 1px solid #e2e8f0;">
<img src="https://pivotingtoai.co.uk/wp-content/uploads/2026/03/image_007c86.jpg" alt="Red, Amber, Green crisp packets">
</div>
<div class="pta-split__text-wrap">
<span class="pta-kicker">The Problem & The Fix</span>
<h2 style="color: var(--pta-blue-deep);">Don't blame your staff. <span class="pta-accent">Blame the training.</span></h2>
<p>Most AI courses are built by enthusiasts showing off parlour tricks. We deal with paramedics, fire stations, and banks. They don't need parlour tricks. They need to clear backlogs without breaking compliance. We teach what actually gets the job done.</p>
<div class="pta-grid-2">
<div style="padding: 30px; background: var(--safe-red); color: white; border-radius: 6px;">
<h3 style="color: white; margin-bottom: 10px;">The Threat</h3>
<p style="margin: 0; font-size: 1rem; font-weight: 500;">69% of UK orgs have no AI access controls. Staff are copying sensitive data into consumer tools you can't govern.</p>
</div>
<div style="padding: 30px; background: var(--safe-green); color: white; border-radius: 6px;">
<h3 style="color: white; margin-bottom: 10px;">The Fix: RAG Rule</h3>
<p style="margin: 0; font-size: 1rem; font-weight: 500;">3 seconds to classify data. A safe decision framework for every member of staff. No IT escalation needed.</p>
</div>
</div>
</div>
</section>
<section class="pta-split pta-split--dark pta-split--img-right">
<div class="pta-split__text-wrap">
<span class="pta-kicker">The Evidence</span>
<h2>Secret Cyborgs.</h2>
<p>Professor Ethan Mollick's research reveals over half of workers use AI without telling their employer. They use personal accounts and unvetted tools.</p>
<p>They hide it because they fear showing productivity gains will cost them their job. In regulated environments, that is a compliance incident waiting to happen.</p>
<div style="display: flex; gap: 60px; flex-wrap: wrap;">
<div class="pta-stat-box">
<div class="pta-stat-num">50%+</div>
<div class="pta-stat-label">Secret Usage</div>
</div>
<div class="pta-stat-box">
<div class="pta-stat-num">3×</div>
<div class="pta-stat-label">Productivity Gain</div>
</div>
</div>
</div>
<div class="pta-split__img-wrap" style="border-left: 1px solid rgba(255,255,255,0.1);">
<img src="https://pivotingtoai.co.uk/wp-content/uploads/2026/03/Gemini_Generated_Image_mwkjj1mwkjj1mwkj-1.webp" alt="Worker using AI in secret">
</div>
</section>
<section class="pta-section" style="background: var(--pta-box-bg); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);">
<div class="pta-container">
<div style="border-left: 6px solid var(--pta-orange); padding-left: 30px;">
<span class="pta-kicker">Anti-Department AI</span>
<h2 style="color: var(--pta-white);">We turn fear into <span class="pta-accent">job security</span>.</h2>
<p style="color: var(--pta-text-light);">We specialise in hostile rooms and change-fatigued teams. Your staff aren't stupid; they think AI is here to replace them, so they resist it.</p>
<p style="color: var(--pta-text-light);">We don't teach "department automation." We teach them to build personal Copilot Agents that <strong>they</strong> control. We turn cynical staff into highly productive, irreplaceable operators.</p>
</div>
<div class="pta-grid-4">
<div class="pta-card pta-card--dark">
<h3>Productivity</h3>
<p style="font-size: 1.1rem; margin: 0;">Real outputs in email, documents, meetings and day-to-day admin.</p>
</div>
<div class="pta-card pta-card--dark">
<h3>Role Practice</h3>
<p style="font-size: 1.1rem; margin: 0;">Your language, your scenarios, your standards. Not generic demos.</p>
</div>
<div class="pta-card pta-card--dark">
<h3>Safe Use</h3>
<p style="font-size: 1.1rem; margin: 0;">Clear do/don't rules so people don't leak data or over-trust the tool.</p>
</div>
<div class="pta-card pta-card--dark">
<h3>Adoption</h3>
<p style="font-size: 1.1rem; margin: 0;">Practise on real tasks + follow-through so usage becomes normal.</p>
</div>
</div>
</div>
</section>
<section class="pta-split pta-split--light pta-split--img-right">
<div class="pta-split__text-wrap">
<span class="pta-kicker">Effort vs Output</span>
<h2 style="color: var(--pta-blue-deep);">You bought the digger. Stop letting your team use a spoon.</h2>
<p>Manual typing and generic prompting is the spoon. Copilot Agents are the digger. We teach your team to build automated workflows that do 10x the work. The goal isn't more software; it's less effort and massive output.</p>
<ul class="pta-list" style="color: var(--pta-blue-deep);">
<li>
<span class="pta-list-ico">✓</span>
<div class="pta-list-text">What you'll do: <span>Bring one real task. Rebuild it with Copilot.</span></div>
</li>
<li>
<span class="pta-list-ico">✓</span>
<div class="pta-list-text">What you'll leave with: <span>A working tool you reuse all week.</span></div>
</li>
</ul>
<div class="pta-btn-row">
<a href="/thecourse/" class="pta-btn pta-btn--outline-dark">See the Full Course</a>
</div>
</div>
<div class="pta-split__img-wrap">
<img src="https://pivotingtoai.co.uk/wp-content/uploads/2026/03/image.webp" alt="Digger vs Spoon">
</div>
</section>
<section class="pta-split pta-split--dark pta-split--img-left">
<div class="pta-split__img-wrap">
<img src="https://pivotingtoai.co.uk/wp-content/uploads/2026/03/image-1.webp" alt="Yorkshire Landscape">
</div>
<div class="pta-split__text-wrap">
<span class="pta-kicker">Our Methodology</span>
<h2>The Yorkshire Method.<br>No one left behind.</h2>
<p>Listen first. Train what matters. We start with the people doing the job — not a slide deck about features.</p>
<ul class="pta-list" style="color: var(--pta-text-light);">
<li>
<span class="pta-list-ico">✓</span>
<div class="pta-list-text">Listen: <span>Surface the fear of job loss before we open laptops.</span></div>
</li>
<li>
<span class="pta-list-ico">✓</span>
<div class="pta-list-text">Instruct: <span>Clear steps. One concept at a time.</span></div>
</li>
<li>
<span class="pta-list-ico">✓</span>
<div class="pta-list-text">Practise: <span>Your actual files. Your actual work.</span></div>
</li>
<li>
<span class="pta-list-ico">✓</span>
<div class="pta-list-text">Discuss: <span>Share what works. We go at the speed of the room.</span></div>
</li>
</ul>
<p style="margin-top: 40px; font-weight: 900; font-size: 1.4rem; color: var(--pta-orange); text-transform: uppercase;">Clear. Calm. Professional.</p>
</div>
</section>
<section class="pta-section pta-bg-light">
<div class="pta-container">
<span class="pta-kicker">The Toolkit</span>
<h2 style="color: var(--pta-blue-deep);">9 pre-built agents.<br>Immediate productivity.</h2>
<p style="font-weight: 700; color: var(--pta-orange);">Works natively on all versions of Copilot (Free & Microsoft 365).</p>
<p>We don't just teach theory. Delegates leave with working tools installed and customised. These are personal tools staff control to empower themselves.</p>
<div class="pta-grid-3">
<div class="pta-card">
<h3 style="color: var(--pta-blue-deep);">Email Writer</h3>
<p style="margin:0; font-size: 1.1rem;">70% reduction in drafting time. Drafts in your voice.</p>
</div>
<div class="pta-card">
<h3 style="color: var(--pta-blue-deep);">Fact Checker</h3>
<p style="margin:0; font-size: 1.1rem;">Verifies AI claims. £5k+ risk mitigation per error.</p>
</div>
<div class="pta-card">
<h3 style="color: var(--pta-blue-deep);">Virtual Manager</h3>
<p style="margin:0; font-size: 1.1rem;">2 hours/week recovered. Triages tasks immediately.</p>
</div>
<div class="pta-card">
<h3 style="color: var(--pta-blue-deep);">Brainstorm Buddy</h3>
<p style="margin:0; font-size: 1.1rem;">60 seconds to a viable shortlist, grounded in reality.</p>
</div>
<div class="pta-card">
<h3 style="color: var(--pta-blue-deep);">Argue Both Sides</h3>
<p style="margin:0; font-size: 1.1rem;">Pre-mortem analysis. 5× stronger business proposals.</p>
</div>
<div class="pta-card">
<h3 style="color: var(--pta-blue-deep);">Emotional Support</h3>
<p style="margin:0; font-size: 1.1rem;">Converts angry rants into professional, calm responses.</p>
</div>
<div class="pta-card">
<h3 style="color: var(--pta-blue-deep);">Make My Case</h3>
<p style="margin:0; font-size: 1.1rem;">3× persuasion power. Adapts argument to the audience.</p>
</div>
<div class="pta-card">
<h3 style="color: var(--pta-blue-deep);">Jargon Translator</h3>
<p style="margin:0; font-size: 1.1rem;">Rewrites corporate waffle into plain, clear English.</p>
</div>
<div class="pta-card">
<h3 style="color: var(--pta-blue-deep);">Prompt Maker</h3>
<p style="margin:0; font-size: 1.1rem;">80% improvement in output reliability and quality.</p>
</div>
</div>
</div>
</section>
<section class="pta-section">
<div class="pta-container" style="border-top: 1px solid #e2e8f0; padding-top: 80px;">
<span class="pta-kicker">The Missing Link</span>
<h2 style="color: var(--pta-blue-deep);">The 30-Day Accountability Agent.</h2>
<p>Generic training gives you a certificate and leaves. We build a custom Copilot Agent specifically for your team that guides them for 30 days after we leave the building. It reinforces habits and answers questions so the training actually sticks.</p>
<div class="pta-grid-3" style="margin-top: 60px;">
<div class="pta-card pta-card--dark">
<span style="display: block; color: var(--pta-orange); font-weight: 800; margin-bottom: 10px;">STEP 1</span>
<h3>Baseline Compliance</h3>
<p style="font-size: 1.1rem; margin-bottom: 0;">Industry-specific eLearning for your entire workforce. Embeds the RAG Rule across all staff with interactive sector scenarios.</p>
</div>
<div class="pta-card pta-card--dark">
<span style="display: block; color: var(--pta-orange); font-weight: 800; margin-bottom: 10px;">STEP 2</span>
<h3>Advanced Operations</h3>
<p style="font-size: 1.1rem; margin-bottom: 0;">The 1-Day Core Course for premium licence holders. CRISP prompting, Power 9 Toolkit installed, face-to-face or virtual.</p>
</div>
<div class="pta-card pta-card--dark">
<span style="display: block; color: var(--pta-orange); font-weight: 800; margin-bottom: 10px;">STEP 3</span>
<h3>Quality Assurance</h3>
<p style="font-size: 1.1rem; margin-bottom: 0;">AI Manager Day for non-technical managers — governing Shadow AI, setting policies, and bespoke Agent building workshops.</p>
</div>
</div>
</div>
</section>
<section class="pta-section" style="background: #eef2ff;">
<div class="pta-container">
<div style="border-left: 6px solid #3730a3; padding-left: 30px;">
<span class="pta-kicker" style="color: #3730a3;">The Parent Company</span>
<h2 style="color: #1e1b4b;">The Training Emergency Service.</h2>
<p style="color: #312e81; font-size: 1.2rem; font-weight: 700;">PivotingToAI is the dedicated AI division of Experienced Training Ltd.</p>
<p style="color: #374151;">We don't deal in startup hype or generic slide decks. We bring the discipline of established systems training to AI adoption, focusing on operational realities, clear frameworks, and accountable delivery for highly regulated environments like the NHS, Military, Police, and Banking sectors.</p>
<div class="pta-btn-row">
<a href="https://experiencedtraining.co.uk/" target="_blank" class="pta-btn" style="background: #3730a3; color: white;">Visit Experienced Training</a>
</div>
</div>
</div>
</section>
<section class="pta-section pta-bg-dark" style="border-top: 4px solid var(--pta-orange);">
<div class="pta-container">
<div style="border-left: 6px solid var(--pta-orange); padding-left: 30px;">
<h2>Stop the compliance gap.<br><span class="pta-accent">Start the conversation.</span></h2>
<p>30-minute scoping call. No pitch, no slides. We'll understand your situation, your licence split, and your risk profile.</p>
<div class="pta-btn-row">
<a href="https://calendly.com/pivotingtoai/talk" class="pta-btn pta-btn--primary">Book Your Call</a>
<a href="https://pivotingtoai.co.uk/Procurement-Document.pdf" class="pta-btn pta-btn--outline-light">Download Procurement PDF</a>
</div>
<p style="margin-top: 40px; font-weight: 700; color: #94a3b8;">Or email directly: <a href="mailto:contact@pivotingtoai.co.uk" class="pta-accent">contact@pivotingtoai.co.uk</a></p>
</div>
</div>
</section>
</body>
</html>
Recent Comments