Files
ukaiautomation/thank-you.php
2026-03-21 10:59:35 +00:00

206 lines
6.5 KiB
PHP

<?php
$page_title = "Thank You | UK AI Automation";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $page_title; ?></title>
<meta name="robots" content="noindex, nofollow">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Lato:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/main.css?v=20260222">
<style>
.thank-you-container {
max-width: 700px;
margin: 60px auto;
padding: 20px;
text-align: center;
}
.success-icon {
font-size: 4em;
margin-bottom: 20px;
}
.thank-you-container h1 {
color: #1e1b4b;
margin-bottom: 15px;
}
.thank-you-container .subtitle {
color: #666;
font-size: 1.1em;
margin-bottom: 40px;
}
.next-steps {
background: #f8f9fa;
border-radius: 12px;
padding: 30px;
text-align: left;
margin-bottom: 40px;
}
.next-steps h3 {
margin: 0 0 20px 0;
color: #1e1b4b;
}
.step {
display: flex;
gap: 15px;
margin-bottom: 20px;
align-items: flex-start;
}
.step:last-child { margin-bottom: 0; }
.step-icon {
background: #00cc66;
color: #fff;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
flex-shrink: 0;
}
.step-content strong {
color: #1e1b4b;
}
.upsell-section {
background: linear-gradient(135deg, #1e1b4b 0%, #1e1b4b 100%);
border-radius: 12px;
padding: 30px;
color: #fff;
margin-bottom: 30px;
}
.upsell-section h3 {
margin: 0 0 15px 0;
}
.upsell-section p {
opacity: 0.9;
margin-bottom: 20px;
}
.upsell-buttons {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn-white {
background: #fff;
color: #1e1b4b;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
}
.btn-outline {
border: 2px solid rgba(255,255,255,0.5);
color: #fff;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
}
.resources {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 20px;
}
.resource-card {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 20px;
text-align: center;
}
.resource-card .icon {
font-size: 2em;
margin-bottom: 10px;
}
.resource-card h4 {
margin: 0 0 10px 0;
color: #1e1b4b;
}
.resource-card a {
color: #4f46e5;
text-decoration: none;
font-weight: 600;
}
</style>
</head>
<body>
<?php include($_SERVER["DOCUMENT_ROOT"] . "/includes/nav.php"); ?>
<div class="thank-you-container">
<div class="success-icon">🎉</div>
<h1>Demo Request Received!</h1>
<p class="subtitle">I'll be in touch within a few hours to arrange a time that works for you.</p>
<div class="next-steps">
<h3>📋 What Happens Next</h3>
<div class="step">
<div class="step-icon">1</div>
<div class="step-content">
<strong>Same day</strong><br>
We will review your submission and reply to confirm receipt
</div>
</div>
<div class="step">
<div class="step-icon">2</div>
<div class="step-content">
<strong>20-min scoping call</strong><br>
We'll pick a time that works and walk through your specific workflow together
</div>
</div>
<div class="step">
<div class="step-icon">3</div>
<div class="step-content">
<strong>Fixed-price proposal</strong><br>
If there's a good fit, you'll receive a clear scope and price within 24 hours of the call
</div>
</div>
</div>
<div class="upsell-section">
<h3>While You Wait</h3>
<p>Learn more about how we work and what we've built for other clients</p>
<div class="upsell-buttons">
<a href="/about" class="btn-white">About Us</a>
<a href="/case-studies/" class="btn-outline">See Case Studies</a>
</div>
</div>
<h3 style="color:#1e1b4b;margin-bottom:10px;">📚 While You Wait</h3>
<p style="color:#666;margin-bottom:20px;">Check out these resources:</p>
<div class="resources">
<div class="resource-card">
<div class="icon">👤</div>
<h4>About</h4>
<a href="/about">Our background →</a>
</div>
<div class="resource-card">
<div class="icon">📖</div>
<h4>Case Studies</h4>
<a href="/case-studies/">See our work →</a>
</div>
<div class="resource-card">
<div class="icon">❓</div>
<h4>FAQ</h4>
<a href="/faq">Common questions →</a>
</div>
</div>
</div>
<!-- Conversion tracking -->
<script>
if (typeof gtag !== 'undefined') {
gtag('event', 'conversion', {
'event_category': 'Quote',
'event_label': 'form_submission'
});
}
</script>
</body>
</html>