<?php
// Basic config
$siteName = "SAP Exam Readiness Platform";
$year = date("Y");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $siteName; ?></title>
<meta name="description" content="Independent SAP certification exam preparation platform with exam-style practice questions and mock tests.">
<meta name="robots" content="index, follow">
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
background: #f7f9fc;
color: #222;
line-height: 1.6;
}
.container {
max-width: 1100px;
margin: auto;
padding: 20px;
}
header {
background: #0b5ed7;
color: #fff;
padding: 60px 20px;
text-align: center;
}
header h1 {
margin-bottom: 10px;
font-size: 32px;
}
header p {
font-size: 18px;
opacity: 0.95;
}
.btn {
display: inline-block;
margin: 10px;
padding: 12px 24px;
background: #fff;
color: #0b5ed7;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
}
section {
background: #fff;
margin: 30px 0;
padding: 30px;
border-radius: 8px;
}
h2 {
margin-top: 0;
font-size: 26px;
}
ul {
padding-left: 20px;
}
li {
margin-bottom: 8px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
}
footer {
background: #111;
color: #bbb;
padding: 25px;
font-size: 14px;
text-align: center;
}
footer a {
color: #bbb;
text-decoration: none;
margin: 0 6px;
}
.note {
background: #f1f5ff;
padding: 15px;
border-left: 4px solid #0b5ed7;
}
</style>
</head>
<body>
<header>
<h1>SAP Certification Exam Readiness — Done Right</h1>
<p>Practice exam-style SAP questions. Build confidence. Prepare smarter.</p>
<a href="free-practice.php" class="btn">Start Free Practice</a>
<a href="modules.php" class="btn">View Modules</a>
</header>
<div class="container">
<section>
<h2>Why This Platform Exists</h2>
<p>
Many SAP aspirants study hard but fail due to lack of proper exam-oriented practice.
This platform focuses on testing real understanding through structured, exam-style practice.
</p>
</section>
<section>
<h2>What You Get</h2>
<ul>
<li>Updated as per latest SAP certification syllabus</li>
<li>Exam-style, scenario-based practice questions</li>
<li>Clear explanations for every answer</li>
<li>Full-length mock exams with timer</li>
<li>Mobile and desktop friendly experience</li>
</ul>
</section>
<section class="note">
<strong>What this is:</strong> Exam-style practice and self-assessment<br>
<strong>What this is not:</strong> Real exam questions, dumps, or SAP-authorised content
</section>
<section>
<h2>Available Certification Modules</h2>
<div class="grid">
<div>• SAP S/4HANA FICO</div>
<div>• SAP MM</div>
<div>• SAP SD</div>
<div>• SAP ABAP</div>
<div>• More modules coming soon</div>
</div>
</section>
<section>
<h2>How It Works</h2>
<ol>
<li>Select your certification module</li>
<li>Practice topic-wise questions</li>
<li>Attempt timed mock exams</li>
<li>Review explanations and weak areas</li>
<li>Prepare confidently for the exam</li>
</ol>
</section>
<section>
<h2>Secure & Transparent</h2>
<ul>
<li>Secure, encrypted payments</li>
<li>No card details stored</li>
<li>Clear refund policy</li>
<li>Support available via WhatsApp</li>
</ul>
</section>
<section style="text-align:center;">
<h2>Start With Free Practice</h2>
<p>Explore sample questions before you decide.</p>
<a href="free-practice.php" class="btn">Start Free Practice</a>
</section>
</div>
<footer>
<p>
Independent SAP® exam preparation platform. Not affiliated with or authorised by SAP SE.<br>
All content is original and for educational purposes only.
</p>
<p>
© 2007–<?php echo $year; ?> All rights reserved.
</p>
<p>
<a href="privacy.php">Privacy Policy</a> |
<a href="terms.php">Terms & Conditions</a> |
<a href="refund.php">Refund Policy</a> |
<a href="contact.php">Contact Us</a>
</p>
</footer>
</body>
</html>