<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Legal Pages — Smart Realtors & Creators Academy</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
:root {
--navy: #0B1535;
--navy-light: #132044;
--gold: #C9A84C;
--gold-light: #E8C96A;
--gold-pale: #F7EDD3;
--white: #FFFFFF;
--off-white: #F9F6F0;
--text: #1A1A2E;
--muted: #6B7280;
--border: rgba(201,168,76,0.2);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--off-white);
color: var(--text);
font-size: 15px;
line-height: 1.8;
}
/* ── HEADER ── */
header {
background: var(--navy);
padding: 0;
position: sticky;
top: 0;
z-index: 100;
border-bottom: 2px solid var(--gold);
box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header-inner {
max-width: 960px;
margin: 0 auto;
padding: 18px 24px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.brand {
display: flex;
flex-direction: column;
}
.brand-name {
font-family: 'Playfair Display', serif;
color: var(--gold);
font-size: 17px;
font-weight: 700;
letter-spacing: 0.3px;
line-height: 1.2;
}
.brand-sub {
color: rgba(255,255,255,0.5);
font-size: 10px;
letter-spacing: 2px;
text-transform: uppercase;
margin-top: 2px;
}
.header-badge {
background: rgba(201,168,76,0.12);
border: 1px solid var(--border);
border-radius: 4px;
padding: 6px 14px;
color: var(--gold-light);
font-size: 11px;
letter-spacing: 1.5px;
text-transform: uppercase;
font-weight: 600;
white-space: nowrap;
}
/* ── HERO ── */
.hero {
background: linear-gradient(160deg, var(--navy) 0%, #1a2d5a 100%);
padding: 64px 24px 56px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%),
radial-gradient(ellipse 40% 60% at 100% 100%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.hero-inner { position: relative; max-width: 680px; margin: 0 auto; }
.hero-eyebrow {
display: inline-block;
color: var(--gold);
font-size: 11px;
letter-spacing: 3px;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 18px;
border-bottom: 1px solid rgba(201,168,76,0.4);
padding-bottom: 8px;
}
.hero h1 {
font-family: 'Playfair Display', serif;
color: var(--white);
font-size: clamp(28px, 5vw, 42px);
font-weight: 700;
line-height: 1.2;
margin-bottom: 16px;
}
.hero p {
color: rgba(255,255,255,0.6);
font-size: 14px;
max-width: 480px;
margin: 0 auto 28px;
}
.last-updated {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 20px;
padding: 6px 16px;
color: rgba(255,255,255,0.5);
font-size: 12px;
}
.last-updated span { color: var(--gold-light); font-weight: 500; }
/* ── NAV TABS ── */
.nav-tabs {
background: var(--white);
border-bottom: 1px solid #E5E7EB;
position: sticky;
top: 62px;
z-index: 90;
box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.tabs-inner {
max-width: 960px;
margin: 0 auto;
padding: 0 24px;
display: flex;
gap: 0;
overflow-x: auto;
scrollbar-width: none;
}
.tabs-inner::-webkit-scrollbar { display: none; }
.tab-btn {
background: none;
border: none;
padding: 18px 24px;
font-family: 'DM Sans', sans-serif;
font-size: 13px;
font-weight: 600;
color: var(--muted);
cursor: pointer;
white-space: nowrap;
border-bottom: 3px solid transparent;
transition: all 0.2s;
letter-spacing: 0.3px;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
color: var(--navy);
border-bottom-color: var(--gold);
}
/* ── CONTENT ── */
main {
max-width: 960px;
margin: 0 auto;
padding: 48px 24px 80px;
}
.policy-section { display: none; animation: fadeIn 0.35s ease; }
.policy-section.active { display: block; }
@keyframes fadeIn {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
/* ── SECTION HEADER ── */
.section-header {
margin-bottom: 40px;
padding-bottom: 24px;
border-bottom: 1px solid #E5E7EB;
}
.section-tag {
display: inline-block;
background: var(--gold-pale);
color: #8B6914;
font-size: 10px;
letter-spacing: 2.5px;
text-transform: uppercase;
font-weight: 700;
padding: 4px 12px;
border-radius: 3px;
margin-bottom: 14px;
}
.section-header h2 {
font-family: 'Playfair Display', serif;
font-size: clamp(24px, 4vw, 34px);
color: var(--navy);
font-weight: 700;
line-height: 1.2;
margin-bottom: 10px;
}
.section-header p {
color: var(--muted);
font-size: 14px;
max-width: 540px;
}
/* ── ARTICLE LAYOUT ── */
.article-grid {
display: grid;
grid-template-columns: 220px 1fr;
gap: 40px;
align-items: start;
}
/* Sidebar TOC */
.toc {
position: sticky;
top: 130px;
background: var(--white);
border: 1px solid #E5E7EB;
border-radius: 12px;
padding: 20px;
}
.toc-title {
font-size: 10px;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 700;
color: var(--muted);
margin-bottom: 12px;
}
.toc a {
display: block;
font-size: 12px;
color: var(--muted);
text-decoration: none;
padding: 5px 0 5px 10px;
border-left: 2px solid #E5E7EB;
margin-bottom: 2px;
transition: all 0.2s;
line-height: 1.4;
}
.toc a:hover {
color: var(--navy);
border-left-color: var(--gold);
}
/* Article body */
.article-body {}
.policy-block {
margin-bottom: 36px;
padding-bottom: 36px;
border-bottom: 1px solid #F0F0F0;
}
.policy-block:last-child {
border-bottom: none;
margin-bottom: 0;
}
.policy-block h3 {
font-family: 'Playfair Display', serif;
font-size: 18px;
color: var(--navy);
font-weight: 600;
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 10px;
}
.policy-block h3::before {
content: '';
display: inline-block;
width: 22px;
height: 3px;
background: var(--gold);
border-radius: 2px;
flex-shrink: 0;
}
.policy-block p {
color: #374151;
margin-bottom: 12px;
font-size: 14.5px;
}
.policy-block p:last-child { margin-bottom: 0; }
.policy-block ul, .policy-block ol {
padding-left: 0;
list-style: none;
margin: 12px 0;
}
.policy-block ul li, .policy-block ol li {
position: relative;
padding-left: 22px;
margin-bottom: 8px;
font-size: 14.5px;
color: #374151;
}
.policy-block ul li::before {
content: '▸';
position: absolute;
left: 0;
color: var(--gold);
font-size: 11px;
top: 3px;
}
.policy-block ol {
counter-reset: item;
}
.policy-block ol li::before {
counter-increment: item;
content: counter(item) '.';
position: absolute;
left: 0;
color: var(--gold);
font-weight: 700;
font-size: 12px;
top: 2px;
}
/* Callout boxes */
.callout {
background: var(--navy);
border-radius: 10px;
padding: 20px 24px;
margin: 20px 0;
border-left: 4px solid var(--gold);
}
.callout p {
color: rgba(255,255,255,0.85) !important;
font-size: 14px !important;
margin: 0 !important;
}
.callout strong { color: var(--gold-light); }
.callout-info {
background: #EFF6FF;
border-left-color: #3B82F6;
border-radius: 10px;
padding: 20px 24px;
margin: 20px 0;
}
.callout-info p { color: #1E40AF !important; font-size: 14px !important; margin: 0 !important; }
.callout-warn {
background: #FFFBEB;
border-left: 4px solid #F59E0B;
border-radius: 10px;
padding: 20px 24px;
margin: 20px 0;
}
.callout-warn p { color: #92400E !important; font-size: 14px !important; margin: 0 !important; }
/* Contact block */
.contact-box {
background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 100%);
border-radius: 14px;
padding: 32px;
margin-top: 48px;
text-align: center;
border: 1px solid rgba(201,168,76,0.25);
position: relative;
overflow: hidden;
}
.contact-box::before {
content: '';
position: absolute;
top: -40px; right: -40px;
width: 160px; height: 160px;
border-radius: 50%;
background: rgba(201,168,76,0.06);
}
.contact-box h4 {
font-family: 'Playfair Display', serif;
color: var(--white);
font-size: 20px;
margin-bottom: 10px;
}
.contact-box p {
color: rgba(255,255,255,0.6);
font-size: 14px;
margin-bottom: 20px;
}
.contact-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
}
.contact-link {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(201,168,76,0.12);
border: 1px solid rgba(201,168,76,0.3);
color: var(--gold-light);
padding: 10px 20px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
text-decoration: none;
transition: all 0.2s;
}
.contact-link:hover {
background: rgba(201,168,76,0.22);
border-color: var(--gold);
}
/* ── FOOTER ── */
footer {
background: var(--navy);
text-align: center;
padding: 28px 24px;
border-top: 2px solid var(--gold);
}
footer p {
color: rgba(255,255,255,0.4);
font-size: 12px;
letter-spacing: 0.5px;
}
footer strong { color: var(--gold-light); }
/* ── RESPONSIVE ── */
@media (max-width: 720px) {
.article-grid {
grid-template-columns: 1fr;
}
.toc { display: none; }
.header-badge { display: none; }
}
</style>
</head>
<body>
<!-- HEADER -->
<header>
<div class="header-inner">
<div class="brand">
<div class="brand-name">Smart Realtors & Creators Academy</div>
<div class="brand-sub">The Smartphone Realtors Movement · Nigeria</div>
</div>
<div class="header-badge">Legal Pages</div>
</div>
</header>
<!-- HERO -->
<div class="hero">
<div class="hero-inner">
<div class="hero-eyebrow">Official Documentation</div>
<h1>Legal Information & Policies</h1>
<p>These documents govern your use of Smart Realtors & Creators Academy's products, digital courses, and services. Please read them carefully.</p>
<div class="last-updated">📅 Last Updated: <span>May 2025</span></div>
</div>
</div>
<!-- NAV TABS -->
<div class="nav-tabs">
<div class="tabs-inner">
<button class="tab-btn active" onclick="showTab('privacy')">🔒 Privacy Policy</button>
<button class="tab-btn" onclick="showTab('refund')">💳 Refund Policy</button>
<button class="tab-btn" onclick="showTab('terms')">📜 Terms & Conditions</button>
</div>
</div>
<!-- MAIN CONTENT -->
<main>
<!-- ═══ PRIVACY POLICY ═══ -->
<section id="privacy" class="policy-section active">
<div class="section-header">
<div class="section-tag">Privacy Policy</div>
<h2>How We Protect Your Data</h2>
<p>Smart Realtors & Creators Academy is committed to safeguarding your personal information. This policy explains what we collect, why, and how we use it.</p>
</div>
<div class="article-grid">
<nav class="toc">
<div class="toc-title">On This Page</div>
<a href="#p1">Information We Collect</a>
<a href="#p2">How We Use Your Data</a>
<a href="#p3">Data Sharing</a>
<a href="#p4">Cookies & Tracking</a>
<a href="#p5">Data Storage & Security</a>
<a href="#p6">Your Rights</a>
<a href="#p7">Third-Party Links</a>
<a href="#p8">Children's Privacy</a>
<a href="#p9">Policy Updates</a>
<a href="#p10">Contact Us</a>
</nav>
<div class="article-body">
<div class="callout">
<p><strong>In plain language:</strong> We only collect what we need to deliver your purchase and improve your experience. We do not sell your personal data to anyone.</p>
</div>
<div class="policy-block" id="p1">
<h3>1. Information We Collect</h3>
<p>When you purchase a course, ebook, or digital product from Smart Realtors & Creators Academy, we may collect the following:</p>
<ul>
<li><strong>Personal Identifiers:</strong> Full name, email address, phone number (WhatsApp number where applicable)</li>
<li><strong>Payment Information:</strong> Transaction records processed via Selar, Paystack, or other authorised payment gateways. We do not store your card details directly on our servers.</li>
<li><strong>Device & Usage Data:</strong> IP address, browser type, device type, and how you interact with our website or digital content</li>
<li><strong>Communications:</strong> Messages you send us via WhatsApp, email, or social media DMs</li>
</ul>
</div>
<div class="policy-block" id="p2">
<h3>2. How We Use Your Data</h3>
<p>We use the information we collect to:</p>
<ul>
<li>Process and fulfil your orders (deliver ebooks, course access, and digital downloads)</li>
<li>Send purchase receipts, access credentials, and product updates</li>
<li>Provide customer support and respond to enquiries</li>
<li>Send you marketing messages about new products, promotions, or educational content — only if you have opted in</li>
<li>Improve our website, products, and overall service quality</li>
<li>Prevent fraud and maintain the security of our platform</li>
</ul>
</div>
<div class="policy-block" id="p3">
<h3>3. Data Sharing</h3>
<p>We do not sell, rent, or trade your personal data. We may share your information only in the following limited circumstances:</p>
<ul>
<li><strong>Service Providers:</strong> Trusted third-party tools (e.g., Selar, Paystack, Google Workspace, email platforms) that help us operate our business — these providers are bound by data protection agreements</li>
<li><strong>Legal Obligations:</strong> If required by Nigerian law, a court order, or government authority</li>
<li><strong>Business Transfer:</strong> In the unlikely event of a merger or acquisition, your data may be transferred, and you will be notified in advance</li>
</ul>
</div>
<div class="policy-block" id="p4">
<h3>4. Cookies & Tracking</h3>
<p>Our website and sales pages may use cookies and similar technologies to:</p>
<ul>
<li>Remember your preferences and maintain your session</li>
<li>Analyse website traffic and behaviour via tools like Google Analytics or Meta Pixel</li>
<li>Serve relevant advertisements on Facebook and Instagram</li>
</ul>
<p>You may disable cookies in your browser settings, though this may affect certain features of our platform.</p>
</div>
<div class="policy-block" id="p5">
<h3>5. Data Storage & Security</h3>
<p>Your data is stored securely on our service providers' servers. We implement appropriate technical and organisational measures to protect your personal information against unauthorised access, disclosure, alteration, or destruction.</p>
<p>However, no method of internet transmission is 100% secure. While we strive to protect your data, we cannot guarantee absolute security.</p>
</div>
<div class="policy-block" id="p6">
<h3>6. Your Rights</h3>
<p>You have the right to:</p>
<ul>
<li>Access the personal information we hold about you</li>
<li>Request correction of inaccurate or incomplete data</li>
<li>Request deletion of your data (subject to legal and contractual obligations)</li>
<li>Withdraw consent to marketing communications at any time by clicking "Unsubscribe" or sending us a message</li>
</ul>
<p>To exercise any of these rights, contact us via the details at the end of this page.</p>
</div>
<div class="policy-block" id="p7">
<h3>7. Third-Party Links</h3>
<p>Our platforms may contain links to third-party websites (e.g., WhatsApp, YouTube, Facebook, Selar). Smart Realtors & Creators Academy is not responsible for the privacy practices of those external sites. We encourage you to read their policies independently.</p>
</div>
<div class="policy-block" id="p8">
<h3>8. Children's Privacy</h3>
<p>Our products and services are intended for adults (18 years and above). We do not knowingly collect personal information from children under 18. If you believe a minor has provided us with personal data, please contact us immediately for removal.</p>
</div>
<div class="policy-block" id="p9">
<h3>9. Policy Updates</h3>
<p>We may update this Privacy Policy from time to time. When we do, we will revise the "Last Updated" date at the top of this page and, where appropriate, notify you via email or our WhatsApp broadcast. Continued use of our services after any changes constitutes acceptance of the updated policy.</p>
</div>
<div class="policy-block" id="p10">
<h3>10. Contact Us</h3>
<p>For any questions or concerns regarding this Privacy Policy, please reach out to us through the channels listed in the contact section below.</p>
</div>
</div>
</div>
</section>
<!-- ═══ REFUND POLICY ═══ -->
<section id="refund" class="policy-section">
<div class="section-header">
<div class="section-tag">Refund Policy</div>
<h2>Our Refund & Return Policy</h2>
<p>We stand behind the quality of everything we create. Please read this policy carefully before making a purchase.</p>
</div>
<div class="article-grid">
<nav class="toc">
<div class="toc-title">On This Page</div>
<a href="#r1">General Policy</a>
<a href="#r2">Digital Products</a>
<a href="#r3">Online Courses</a>
<a href="#r4">Eligible Refunds</a>
<a href="#r5">How to Request</a>
<a href="#r6">Processing Time</a>
<a href="#r7">Non-Refundable Items</a>
<a href="#r8">Chargebacks</a>
<a href="#r9">Contact</a>
</nav>
<div class="article-body">
<div class="callout">
<p><strong>Our commitment:</strong> We put enormous effort into every product we release. If something is genuinely defective or was never delivered, we will make it right. We ask for your understanding that digital products are non-returnable once accessed.</p>
</div>
<div class="policy-block" id="r1">
<h3>1. General Policy</h3>
<p>Smart Realtors & Creators Academy sells digital products including ebooks, PDF guides, online courses, video trainings, templates, and other downloadable content. Due to the nature of digital goods, <strong>all sales are generally final.</strong></p>
<p>By completing a purchase, you acknowledge that you have read and understood this refund policy.</p>
</div>
<div class="policy-block" id="r2">
<h3>2. Digital Products (Ebooks & Downloadable Files)</h3>
<div class="callout-warn">
<p>⚠️ <strong>No refunds are issued for ebooks, PDF guides, or downloadable digital products once the file has been accessed, downloaded, or delivered.</strong> This applies to all products sold via Selar or any other platform.</p>
</div>
<p>Before purchasing, we encourage you to:</p>
<ul>
<li>Read the full product description on the sales page</li>
<li>Review any available free previews or sample content</li>
<li>Reach out to us via WhatsApp with any questions before buying</li>
</ul>
</div>
<div class="policy-block" id="r3">
<h3>3. Online Courses & Training Programmes</h3>
<p>For cohort-based or self-paced online courses:</p>
<ul>
<li>A <strong>7-day refund window</strong> is available if the student has accessed less than 20% of the course content</li>
<li>No refunds will be issued after 7 days of purchase or if more than 20% of the course content has been consumed</li>
<li>Lifetime-access or one-time payment courses are non-refundable once the student has logged in and begun the curriculum</li>
</ul>
</div>
<div class="policy-block" id="r4">
<h3>4. Situations Eligible for a Refund</h3>
<p>We will process a refund in the following situations:</p>
<ul>
<li>The product was never delivered and we are unable to resend it within 48 hours of your complaint</li>
<li>You were charged twice for the same product (duplicate payment error)</li>
<li>The product file is completely corrupted and we cannot provide a replacement</li>
<li>You purchased the wrong product by mistake and have not yet opened, downloaded, or accessed the file — you must contact us within 24 hours of purchase</li>
</ul>
<div class="callout-info">
<p>ℹ️ In all refund cases, we may first offer a product exchange, a store credit, or a replacement before processing a monetary refund. We appreciate your patience.</p>
</div>
</div>
<div class="policy-block" id="r5">
<h3>5. How to Request a Refund</h3>
<p>To initiate a refund request, please follow these steps:</p>
<ol>
<li>Contact us via WhatsApp or email within the applicable refund window</li>
<li>Provide your full name, email address used for purchase, order/transaction ID, and reason for the request</li>
<li>Include a screenshot of your payment receipt or confirmation email</li>
<li>Our team will review your request and respond within <strong>2–3 business days</strong></li>
</ol>
</div>
<div class="policy-block" id="r6">
<h3>6. Refund Processing Time</h3>
<p>Once a refund is approved:</p>
<ul>
<li>Refunds via Paystack are typically processed within <strong>5–10 business days</strong>, depending on your bank</li>
<li>Bank transfers are processed within <strong>3–5 business days</strong></li>
<li>You will receive a confirmation message once the refund has been initiated from our end</li>
</ul>
</div>
<div class="policy-block" id="r7">
<h3>7. Non-Refundable Items</h3>
<p>The following are strictly non-refundable under all circumstances:</p>
<ul>
<li>Ebooks and PDF guides that have been downloaded or delivered</li>
<li>Templates, swipe files, or prompt packs that have been accessed</li>
<li>Courses where more than 20% of the content has been consumed</li>
<li>Coaching sessions, live trainings, or 1-on-1 consultations once conducted</li>
<li>Products purchased during a promotional sale or at a discounted price</li>
<li>Bundled products where any component has been accessed</li>
</ul>
</div>
<div class="policy-block" id="r8">
<h3>8. Chargebacks & Disputes</h3>
<p>We strongly discourage filing a chargeback without first contacting us. If you believe there is an issue with your purchase, please reach out — we are committed to finding a fair resolution.</p>
<p>Filing an illegitimate chargeback may result in:</p>
<ul>
<li>Permanent revocation of access to all Smart Realtors & Creators Academy products</li>
<li>Being banned from future purchases</li>
<li>Legal action where applicable under Nigerian consumer protection law</li>
</ul>
</div>
<div class="policy-block" id="r9">
<h3>9. Contact for Refund Requests</h3>
<p>Please reach out to us through the contact channels below. We aim to resolve all disputes fairly and promptly.</p>
</div>
</div>
</div>
</section>
<!-- ═══ TERMS & CONDITIONS ═══ -->
<section id="terms" class="policy-section">
<div class="section-header">
<div class="section-tag">Terms & Conditions</div>
<h2>Terms of Use & Service</h2>
<p>By accessing or purchasing from Smart Realtors & Creators Academy, you agree to these terms. Please read them in full.</p>
</div>
<div class="article-grid">
<nav class="toc">
<div class="toc-title">On This Page</div>
<a href="#t1">Acceptance of Terms</a>
<a href="#t2">Who We Are</a>
<a href="#t3">Products & Services</a>
<a href="#t4">Purchases & Payment</a>
<a href="#t5">Intellectual Property</a>
<a href="#t6">Prohibited Use</a>
<a href="#t7">Disclaimer</a>
<a href="#t8">Limitation of Liability</a>
<a href="#t9">User Conduct</a>
<a href="#t10">Community Rules</a>
<a href="#t11">Governing Law</a>
<a href="#t12">Amendments</a>
<a href="#t13">Contact</a>
</nav>
<div class="article-body">
<div class="callout">
<p><strong>Important:</strong> These Terms constitute a legally binding agreement between you ("the User") and Smart Realtors & Creators Academy ("the Academy," "we," "us," or "our"). By completing any purchase or accessing any content, you confirm that you have read, understood, and agreed to these Terms.</p>
</div>
<div class="policy-block" id="t1">
<h3>1. Acceptance of Terms</h3>
<p>By accessing our website, purchasing any product, enrolling in any programme, or joining any community or group managed by Smart Realtors & Creators Academy, you agree to be bound by these Terms & Conditions, our Privacy Policy, and our Refund Policy.</p>
<p>If you do not agree with any part of these terms, you must not use our services or purchase our products.</p>
</div>
<div class="policy-block" id="t2">
<h3>2. Who We Are</h3>
<p><strong>Smart Realtors & Creators Academy</strong> (also operating as "Smart Realtors Academy") is a Nigerian digital education and content creation brand founded by <strong>Jason CEO</strong>. We specialise in real estate marketing education, smartphone selling systems, and digital creator training — primarily targeting real estate professionals across Nigeria.</p>
<p>Our flagship intellectual property is the <strong>Smartphone Property Selling (SPS) System</strong>.</p>
</div>
<div class="policy-block" id="t3">
<h3>3. Products & Services</h3>
<p>Smart Realtors & Creators Academy offers the following types of products and services:</p>
<ul>
<li>Digital ebooks, PDF guides, and downloadable resources</li>
<li>Online courses and video training programmes</li>
<li>Marketing templates, scripts, content calendars, and swipe files</li>
<li>Coaching sessions and consulting services</li>
<li>Community memberships and WhatsApp/Telegram groups</li>
</ul>
<p>All product descriptions, features, and pricing are subject to change without prior notice. We reserve the right to discontinue any product or service at any time.</p>
</div>
<div class="policy-block" id="t4">
<h3>4. Purchases & Payment</h3>
<p>All prices are listed in Nigerian Naira (₦) unless otherwise stated. Payments are processed through authorised third-party gateways including Selar and Paystack. By purchasing, you agree to the applicable terms of those payment processors.</p>
<ul>
<li>All transactions are processed in Nigerian Naira (₦)</li>
<li>You are responsible for ensuring your payment information is accurate</li>
<li>Upon successful payment, product access or delivery will be initiated within the stated timeframe (typically immediately to 24 hours)</li>
<li>We reserve the right to cancel any order at our discretion if fraud or abuse is suspected</li>
</ul>
</div>
<div class="policy-block" id="t5">
<h3>5. Intellectual Property</h3>
<div class="callout-warn">
<p>⚠️ <strong>All content produced and distributed by Smart Realtors & Creators Academy is protected intellectual property.</strong> Unauthorised reproduction, distribution, or resale is strictly prohibited and may result in legal action.</p>
</div>
<p>This includes but is not limited to:</p>
<ul>
<li>All ebooks, PDF guides, and written content</li>
<li>Video lessons, course materials, and training recordings</li>
<li>Templates, scripts, content calendars, and marketing assets</li>
<li>The "Smartphone Property Selling (SPS) System" framework and methodology</li>
<li>The "Smart Realtors Academy" and "Smartphone Realtors Movement" brand names, logos, and taglines</li>
</ul>
<p>Upon purchase, you are granted a <strong>non-transferable, single-user licence</strong> for personal or professional use only. You may not share, resell, republish, or redistribute our content without written authorisation from the Academy.</p>
</div>
<div class="policy-block" id="t6">
<h3>6. Prohibited Use</h3>
<p>You agree that you will NOT:</p>
<ul>
<li>Copy, reproduce, or republish any of our content without written permission</li>
<li>Resell or redistribute our digital products under any name or brand</li>
<li>Use our materials to create competing products or courses</li>
<li>Share login credentials or download links with third parties</li>
<li>Use our brand name, logo, or likeness without written consent</li>
<li>Engage in any fraudulent activity including false refund claims or chargebacks</li>
<li>Harass, defame, or abuse Academy staff, instructors, or community members</li>
</ul>
</div>
<div class="policy-block" id="t7">
<h3>7. Disclaimer — No Guaranteed Results</h3>
<p>All content provided by Smart Realtors & Creators Academy is for <strong>educational and informational purposes only</strong>. While we share strategies, frameworks, and systems that have worked in real estate marketing, we make no guarantees of specific income, sales results, or business outcomes.</p>
<p>Results vary based on individual effort, market conditions, consistency, and other external factors entirely outside our control. Testimonials and case studies shared on our platforms represent exceptional outcomes and are not typical.</p>
<p>By purchasing from us, you acknowledge that success in real estate or digital business is not guaranteed and depends on your own effort and application.</p>
</div>
<div class="policy-block" id="t8">
<h3>8. Limitation of Liability</h3>
<p>To the fullest extent permitted by Nigerian law, Smart Realtors & Creators Academy, its founder, staff, and affiliates shall not be liable for:</p>
<ul>
<li>Any indirect, incidental, or consequential damages arising from use of our products</li>
<li>Loss of income, business opportunity, or data resulting from use or inability to use our services</li>
<li>Technical issues, service interruptions, or third-party platform failures beyond our control</li>
</ul>
<p>Our total liability to you shall not exceed the amount you paid for the specific product or service in question.</p>
</div>
<div class="policy-block" id="t9">
<h3>9. User Conduct & Responsibilities</h3>
<p>As a customer or community member, you agree to:</p>
<ul>
<li>Provide accurate personal and payment information at the time of purchase</li>
<li>Use our products only for lawful purposes</li>
<li>Respect the intellectual property rights of the Academy and fellow community members</li>
<li>Not use our platforms to spam, solicit, or promote unrelated businesses without permission</li>
</ul>
</div>
<div class="policy-block" id="t10">
<h3>10. Community & WhatsApp Group Rules</h3>
<p>Members of any Smart Realtors & Creators Academy WhatsApp group, Telegram channel, or online community agree to the following rules:</p>
<ul>
<li>Maintain respect and professionalism in all interactions</li>
<li>No posting of adult content, hate speech, or political material</li>
<li>No spamming or unsolicited advertising of external products or services</li>
<li>No sharing of pirated or copyrighted material</li>
<li>The Academy reserves the right to remove any member who violates community standards without prior notice or refund</li>
</ul>
</div>
<div class="policy-block" id="t11">
<h3>11. Governing Law</h3>
<p>These Terms & Conditions are governed by and construed in accordance with the laws of the <strong>Federal Republic of Nigeria</strong>. Any disputes arising from these terms shall be resolved first through good-faith negotiation, and if unresolved, through the appropriate courts of competent jurisdiction in Nigeria.</p>
</div>
<div class="policy-block" id="t12">
<h3>12. Amendments to These Terms</h3>
<p>Smart Realtors & Creators Academy reserves the right to update or modify these Terms & Conditions at any time. Updated terms will be published on this page with the revised date. Continued use of our products or services after any update constitutes your acceptance of the new terms.</p>
<p>We encourage you to review this page periodically to stay informed of any changes.</p>
</div>
<div class="policy-block" id="t13">
<h3>13. Contact & Queries</h3>
<p>If you have any questions about these Terms, please reach out via the contact channels listed below.</p>
</div>
</div>
</div>
</section>
<!-- CONTACT BOX -->
<div class="contact-box">
<h4>Need to Reach Us?</h4>
<p>For refund requests, policy questions, or any concerns — our team is available via the channels below. We respond within 1–2 business days.</p>
<div class="contact-links">
<a class="contact-link" href="https://wa.me/" target="_blank">📱 WhatsApp Us</a>
<a class="contact-link" href="mailto:[email protected]">✉️ Email Us</a>
<a class="contact-link" href="https://instagram.com/" target="_blank">📸 Instagram DM</a>
</div>
</div>
</main>
<!-- FOOTER -->
<footer>
<p>© 2025 <strong>Smart Realtors & Creators Academy</strong> · Jason CEO · All Rights Reserved<br>
The Voice of the Smartphone Realtors Professionals · Nigeria</p>
</footer>
<script>
function showTab(id) {
document.querySelectorAll('.policy-section').forEach(s => s.classList.remove('active'));
document.querySelectorAll('.tab-btn').forEach(b => b.classList.remove('active'));
document.getElementById(id).classList.add('active');
event.target.classList.add('active');
window.scrollTo({ top: 0, behavior: 'smooth' });
}
</script>
</body>
</html>
