77 lines
2.0 KiB
HTML
77 lines
2.0 KiB
HTML
{% extends "base.html" %}
|
||
|
||
{% block title %}Refund Policy — CleanCopy{% endblock %}
|
||
|
||
{% block head %}
|
||
<style>
|
||
.updated {
|
||
color: var(--color-text-secondary);
|
||
font-size: 0.9rem;
|
||
margin-bottom: 2rem;
|
||
}
|
||
|
||
.highlight {
|
||
background: var(--color-bg-elevated);
|
||
border: 1px solid var(--color-border-subtle);
|
||
border-radius: 8px;
|
||
padding: 1rem 1.5rem;
|
||
margin: 1.5rem 0;
|
||
}
|
||
</style>
|
||
{% endblock %}
|
||
|
||
{% block content %}
|
||
<a class="back" href="/">← Home</a>
|
||
<h1>Refund Policy</h1>
|
||
<p class="updated">Last updated: {{ date }}</p>
|
||
|
||
<h2>30-Day Money-Back Guarantee</h2>
|
||
<p>
|
||
We want you to be satisfied with CleanCopy. If you're not happy with
|
||
your purchase, you can request a full refund within 30 days of your
|
||
purchase date.
|
||
</p>
|
||
|
||
<div class="highlight">
|
||
<strong>How to request a refund:</strong>
|
||
<p style="margin-top: 0.5rem; margin-bottom: 0">
|
||
Email
|
||
<a href="mailto:{{ email }}">{{ email }}</a> with
|
||
your payment ID (the <code>pi_...</code> value from your receipt
|
||
email) and a brief reason for the refund. We'll process it within 2–3
|
||
business days.
|
||
</p>
|
||
</div>
|
||
|
||
<h2>What happens after a refund</h2>
|
||
<ul>
|
||
<li>Your license will be deactivated on our servers.</li>
|
||
<li>
|
||
CleanCopy will stop working on your device after the next license
|
||
check.
|
||
</li>
|
||
<li>You must delete the software and all copies from your devices.</li>
|
||
</ul>
|
||
|
||
<h2>Exceptions</h2>
|
||
<p>Refunds may be denied in the following cases:</p>
|
||
<ul>
|
||
<li>Requests made more than 30 days after purchase.</li>
|
||
<li>Refund requests for the same purchase made previously.</li>
|
||
<li>Requests from users who have violated the Terms of Service.</li>
|
||
</ul>
|
||
|
||
<h2>Processing</h2>
|
||
<p>
|
||
Refunds are processed through Stripe to the original payment method.
|
||
Depending on your bank, it may take 5–10 business days for the refund to
|
||
appear on your statement.
|
||
</p>
|
||
|
||
<h2>Contact</h2>
|
||
<p>
|
||
Questions about refunds?
|
||
<a href="mailto:{{ email }}">Contact us</a>.
|
||
</p>
|
||
{% endblock %}
|