-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrefund.html
More file actions
134 lines (122 loc) · 5.26 KB
/
refund.html
File metadata and controls
134 lines (122 loc) · 5.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Refund Policy - NODUS</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.8;
color: #333;
background: #fff;
padding: 60px 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
.updated {
color: #666;
margin-bottom: 40px;
}
h2 {
font-size: 24px;
margin: 40px 0 15px;
padding-top: 20px;
border-top: 1px solid #e0e0e0;
}
h2:first-of-type {
border-top: none;
padding-top: 0;
}
p, li {
margin-bottom: 15px;
color: #444;
}
ul {
margin-left: 25px;
margin-bottom: 20px;
}
a {
color: #000;
}
.back-link {
display: inline-block;
margin-bottom: 30px;
color: #666;
text-decoration: none;
}
.back-link:hover {
color: #000;
}
.highlight {
background: #f8f8f8;
padding: 20px;
border-radius: 8px;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<a href="/" class="back-link">← Back to NODUS</a>
<h1>Refund Policy</h1>
<p class="updated">Last updated: January 7, 2026</p>
<div class="highlight">
<strong>Simple Promise:</strong> If you're not satisfied with NODUS Pro within 14 days of purchase, we'll give you a full refund. No questions asked.
</div>
<h2>1. 14-Day Money-Back Guarantee</h2>
<p>We offer a 14-day refund window for all NODUS Pro subscriptions. If you're not happy with your purchase for any reason, contact us within 14 days of your initial payment and we'll process a full refund.</p>
<h2>2. How to Request a Refund</h2>
<p>To request a refund:</p>
<ul>
<li>Email us at <a href="mailto:mmcarvalho.dev@gmail.com">mmcarvalho.dev@gmail.com</a></li>
<li>Include your email address used for the subscription</li>
<li>Briefly let us know why you're requesting a refund (optional, but helps us improve)</li>
</ul>
<p>We'll process your refund within 5-7 business days. The refund will be credited to your original payment method.</p>
<h2>3. After the 14-Day Period</h2>
<p>After the initial 14-day period:</p>
<ul>
<li><strong>Monthly subscriptions:</strong> You can cancel anytime. Your access continues until the end of your current billing period. No partial refunds for unused days.</li>
<li><strong>Annual subscriptions:</strong> You can cancel anytime. Your access continues until the end of your annual period. Refunds after 14 days are evaluated on a case-by-case basis.</li>
</ul>
<h2>4. Cancellation vs. Refund</h2>
<p>There's a difference between canceling and requesting a refund:</p>
<ul>
<li><strong>Cancellation:</strong> Stops future billing. You keep access until your current period ends.</li>
<li><strong>Refund:</strong> Returns your payment. Access to Pro features ends immediately.</li>
</ul>
<h2>5. Exceptions</h2>
<p>We may decline refund requests in cases of:</p>
<ul>
<li>Repeated refund requests from the same user (abuse of policy)</li>
<li>Requests made significantly after the 14-day window without valid reason</li>
<li>Violation of our Terms of Service</li>
</ul>
<h2>6. Free Tier</h2>
<p>NODUS Free is completely free and requires no payment. If you're unsure about Pro, we encourage you to use the Free tier first to ensure NODUS meets your needs.</p>
<h2>7. Technical Issues</h2>
<p>If you're experiencing technical issues with NODUS Pro:</p>
<ul>
<li>Please contact us first at <a href="mailto:mmcarvalho.dev@gmail.com">mmcarvalho.dev@gmail.com</a></li>
<li>We'll do our best to resolve the issue</li>
<li>If we can't fix the problem, we'll offer a full refund regardless of the 14-day window</li>
</ul>
<h2>8. Payment Processor</h2>
<p>Payments and refunds are processed through Paddle, our Merchant of Record. Refunds typically appear on your statement within 5-10 business days, depending on your payment method and financial institution.</p>
<h2>9. Contact</h2>
<p>Questions about refunds? Contact us:</p>
<p>Email: <a href="mailto:mmcarvalho.dev@gmail.com">mmcarvalho.dev@gmail.com</a></p>
<div class="highlight">
<strong>Our Philosophy:</strong> We'd rather have happy users who recommend NODUS than unhappy users who feel stuck. If something isn't right, let us know.
</div>
</div>
</body>
</html>