<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My AI Voice Notes – Official Support & Privacy</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="My AI Voice Notes – AI-powered voice notes for iPhone and Apple Watch. Record, transcribe, summarize and export with ease."
/>
<style>
:root {
--bg: #050814;
--bg-alt: #0b1020;
--accent: #19ddfc;
--accent-soft: rgba(25, 221, 252, 0.08);
--text: #f5f6fa;
--muted: #a4b0be;
--border: #1e293b;
--danger: #f87171;
--radius: 14px;
--shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
--max-width: 960px;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
"Segoe UI", sans-serif;
background: radial-gradient(circle at top, #0f172a 0, #020617 40%, #000 90%)
fixed;
color: var(--text);
line-height: 1.6;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header {
padding: 32px 16px 20px;
border-bottom: 1px solid rgba(148, 163, 184, 0.2);
backdrop-filter: blur(18px);
position: sticky;
top: 0;
z-index: 20;
background: radial-gradient(circle at top, #020617ee, #020617dd);
}
.nav-container {
max-width: var(--max-width);
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.logo-text {
font-weight: 700;
letter-spacing: 0.03em;
display: flex;
align-items: center;
gap: 8px;
font-size: 18px;
}
.logo-pill {
width: 26px;
height: 26px;
border-radius: 999px;
background: radial-gradient(circle at 30% 0, #ffffff, #19ddfc 45%, #2563eb);
box-shadow: 0 0 18px rgba(25, 221, 252, 0.6);
}
.nav-links {
display: flex;
flex-wrap: wrap;
gap: 12px;
font-size: 14px;
}
.nav-links a {
padding: 6px 10px;
border-radius: 999px;
background: transparent;
border: 1px solid transparent;
}
.nav-links a:hover {
border-color: rgba(148, 163, 184, 0.4);
background: rgba(15, 23, 42, 0.9);
text-decoration: none;
}
main {
padding: 32px 16px 60px;
}
.container {
max-width: var(--max-width);
margin: 0 auto;
}
.hero {
display: grid;
grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
gap: 32px;
align-items: center;
margin-bottom: 40px;
}
@media (max-width: 840px) {
.hero {
grid-template-columns: minmax(0, 1fr);
}
}
.hero-title {
font-size: clamp(32px, 4vw, 40px);
margin: 0 0 10px;
letter-spacing: -0.03em;
}
.hero-subtitle {
color: var(--muted);
margin-bottom: 18px;
max-width: 460px;
font-size: 15px;
}
.hero-badges {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 18px;
}
.badge {
padding: 4px 10px;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.5);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--muted);
}
.primary-pill {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 9px 14px;
border-radius: 999px;
background: linear-gradient(135deg, #19ddfc, #2563eb);
color: #020617;
font-size: 13px;
font-weight: 600;
box-shadow: 0 12px 25px rgba(37, 99, 235, 0.45);
margin-bottom: 8px;
}
.primary-pill span.arrow {
font-size: 14px;
margin-top: 1px;
}
.hero-meta {
font-size: 12px;
color: var(--muted);
}
.hero-card {
background: radial-gradient(circle at top, #0b1120, #020617);
border-radius: 24px;
padding: 20px 20px 18px;
box-shadow: var(--shadow);
border: 1px solid rgba(148, 163, 184, 0.3);
position: relative;
overflow: hidden;
}
.hero-card::before {
content: "";
position: absolute;
width: 260px;
height: 260px;
background: radial-gradient(
circle,
rgba(25, 221, 252, 0.15),
transparent 65%
);
top: -80px;
right: -60px;
opacity: 0.8;
pointer-events: none;
}
.hero-card-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 10px;
}
.hero-card-title {
font-size: 15px;
font-weight: 600;
}
.hero-card-chip {
font-size: 11px;
padding: 3px 9px;
border-radius: 999px;
background: rgba(25, 221, 252, 0.1);
border: 1px solid rgba(148, 163, 184, 0.4);
color: var(--muted);
}
.hero-card-list {
list-style: none;
padding: 0;
margin: 12px 0 16px;
font-size: 13px;
color: var(--muted);
}
.hero-card-list li {
margin-bottom: 4px;
}
.hero-card-cta {
font-size: 11px;
color: var(--muted);
border-top: 1px solid rgba(51, 65, 85, 0.9);
padding-top: 8px;
display: flex;
justify-content: space-between;
align-items: center;
}
.pill-sub {
font-size: 11px;
opacity: 0.9;
}
.section {
margin-bottom: 36px;
padding: 22px 18px;
border-radius: var(--radius);
background: linear-gradient(
145deg,
rgba(15, 23, 42, 0.96),
rgba(15, 23, 42, 0.88)
);
border: 1px solid rgba(30, 64, 175, 0.55);
box-shadow: 0 18px 38px rgba(15, 23, 42, 0.75);
}
.section h2 {
margin-top: 0;
font-size: 20px;
letter-spacing: -0.02em;
}
.section small.section-label {
display: inline-block;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.14em;
color: var(--muted);
margin-bottom: 4px;
}
.divider {
border: none;
border-top: 1px dashed rgba(148, 163, 184, 0.4);
margin: 18px 0;
}
h3 {
margin-top: 18px;
margin-bottom: 8px;
font-size: 16px;
}
h4 {
margin-top: 14px;
margin-bottom: 4px;
font-size: 14px;
}
p {
margin: 6px 0;
font-size: 14px;
}
ul {
margin: 8px 0 8px 18px;
padding: 0;
font-size: 14px;
}
li {
margin-bottom: 4px;
}
code {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
"Liberation Mono", "Courier New", monospace;
font-size: 13px;
background: rgba(15, 23, 42, 0.9);
padding: 2px 5px;
border-radius: 4px;
border: 1px solid rgba(51, 65, 85, 0.9);
}
footer {
border-top: 1px solid rgba(51, 65, 85, 0.9);
padding: 16px;
font-size: 12px;
color: var(--muted);
background: #020617;
}
.footer-inner {
max-width: var(--max-width);
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.footer-links {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
</style>
</head>
<body>
<header id="top">
<div class="nav-container">
<div class="logo-text">
<span class="logo-pill"></span>
<span>My AI Voice Notes</span>
</div>
<nav class="nav-links">
<a href="#support">Support</a>
<a href="#privacy">Privacy Policy</a>
<a href="#eula">Terms of Use (EULA)</a>
<a href="#subscription">Subscription</a>
<a href="#terms">Terms & Conditions</a>
</nav>
</div>
</header>
<main>
<div class="container">
<!-- HERO -->
<section class="hero">
<div>
<div class="hero-badges">
<span class="badge">iPhone & Apple Watch</span>
<span class="badge">AI Transcription</span>
</div>
<h1 class="hero-title">AI-powered voice notes, made simple.</h1>
<p class="hero-subtitle">
Record on iPhone or Apple Watch, get instant transcription and smart AI
summaries, then save or share. Effortless, fast, and privacy-minded.
</p>
<div class="primary-pill">
<span>Discover more</span>
<span class="arrow">↓</span>
</div>
<div class="hero-meta">
Official support, privacy policy & legal terms for
<strong>My AI Voice Notes</strong>.
</div>
</div>
<aside class="hero-card">
<div class="hero-card-header">
<div>
<div class="hero-card-title">My AI Voice Notes</div>
<div style="font-size:12px;color:var(--muted);">
AI Transcriber & Voice Memos
</div>
</div>
<div class="hero-card-chip">Premium • Cloud Sync</div>
</div>
<ul class="hero-card-list">
<li>✔ Record on iPhone & Apple Watch</li>
<li>✔ AI-powered transcription & summaries</li>
<li>✔ Export as PDF, TXT or audio</li>
<li>✔ Cloud sync & ad-free experience</li>
</ul>
<div class="hero-card-cta">
<span>Starting from <strong>$2.99/week</strong></span>
<span class="pill-sub">Manage subscriptions via App Store</span>
</div>
</aside>
</section>
<!-- SUPPORT SECTION -->
<section id="support" class="section">
<small class="section-label">Support</small>
<h2>My AI Voice Notes – Support</h2>
<p>
Welcome to the official support page for <strong>My AI Voice Notes</strong>.
For any questions, feedback, or support requests, please do not hesitate
to contact us. We will get back to you as soon as possible.
</p>
<p>
<strong>Contact Email:</strong>
<a href="mailto:YOUR_EMAIL_HERE">YOUR_EMAIL_HERE</a>
</p>
<hr class="divider" />
<h3>Frequently Asked Questions (FAQ)</h3>
<h4>How do I cancel my subscription?</h4>
<p>
All subscriptions are managed by Apple. Go to your iPhone:
<br />Settings > Apple ID > <strong>Subscriptions</strong> to manage or
cancel.
</p>
<h4>Can I delete my data?</h4>
<p>
Yes. You can delete individual recordings by swiping left on the list.
To delete your entire account and cloud data, go to
<strong>Settings > Account > Delete Account</strong> within the app.
</p>
<h4>Is my data private?</h4>
<p>
Absolutely. We use your audio solely for transcription and do not sell your
data to third parties. See our full Privacy Policy below.
</p>
</section>
<!-- PRIVACY POLICY -->
<section id="privacy" class="section">
<small class="section-label">Legal</small>
<h2>Privacy Policy</h2>
<p><strong>Last updated: November 2025</strong></p>
<p>
This Privacy Policy describes how <strong>My AI Voice Notes</strong>
("the Application", "we", "our", "us") collects, uses, and protects your
information when you use our mobile application and related services. By
using the Application, you agree to the collection and use of information
in accordance with this policy.
</p>
<h3>1. Definitions</h3>
<p>
<strong>Application:</strong> Refers to My AI Voice Notes for iOS and Apple
Watch.
<br /><strong>Company:</strong> Refers to Kemal Yavuz.
<br /><strong>Personal Data:</strong> Any information that can identify an
individual.
<br /><strong>Service:</strong> The My AI Voice Notes application and
associated backend systems.
</p>
<h3>2. Data We Collect</h3>
<h4>2.1 Audio Content</h4>
<p>
We collect and process the audio recordings you create within the
Application solely for the purpose of providing transcription and summary
services using AI-powered processing.
</p>
<h4>2.2 Transcription Data</h4>
<p>
Generated text transcripts and AI summaries derived from your recordings.
</p>
<h4>2.3 Usage Data</h4>
<p>
Automatically collected data including device type, operating system
version, app interactions, crash reports, and anonymous device identifiers.
</p>
<h3>3. How We Use Your Data</h3>
<p>We use your data to:</p>
<ul>
<li>Provide and improve transcription services.</li>
<li>Enable cloud synchronization across your devices.</li>
<li>Enhance app performance and reliability.</li>
<li>Manage your subscription status.</li>
<li>Respond to support requests.</li>
</ul>
<h3>4. Data Storage & Processing</h3>
<p>
Your recordings and transcript data may be processed using secure
third-party AI services (e.g., OpenAI, cloud speech APIs) hosted on secure
servers. All data transfers use industry-standard HTTPS/TLS encryption.
</p>
<h3>5. Data Retention & Deletion</h3>
<p>
We retain your data only as long as necessary to provide the Service.
<br /><strong>User Control:</strong> You can delete individual recordings
and transcripts directly within the Application at any time.
<br /><strong>Account Deletion:</strong> If you have created an account for
cloud sync, you may request full account deletion directly within the
Application's settings menu or by contacting us. Upon deletion, all your
data is permanently removed from our servers.
</p>
<h3>6. Sharing Data</h3>
<p>We do not sell your personal data. We may share data only with:</p>
<ul>
<li>AI processing service providers (strictly for functionality).</li>
<li>Cloud infrastructure providers.</li>
<li>Analytics and crash reporting services.</li>
</ul>
<h3>7. Your Rights</h3>
<p>You have the right to:</p>
<ul>
<li>Access the personal data we hold about you.</li>
<li>Request the correction or deletion of your data.</li>
<li>
Withdraw consent for data processing by deleting the app or your account.
</li>
</ul>
<h3>8. Children's Privacy</h3>
<p>
This app is not intended for users under 13 years old. We do not knowingly
collect data from children.
</p>
<h3>9. Security</h3>
<p>
We apply industry-standard encryption and security practices to protect
your data, though no method of transmission over the internet is 100%
secure.
</p>
<h3>10. Changes</h3>
<p>
We reserve the right to update this policy. Changes will be reflected on
this page with an updated date.
</p>
<p>
<strong>Contact Us (Privacy):</strong>
<a href="mailto:YOUR_EMAIL_HERE">YOUR_EMAIL_HERE</a>
</p>
</section>
<!-- TERMS OF USE / EULA -->
<section id="eula" class="section">
<small class="section-label">Legal</small>
<h2>Terms of Use (EULA)</h2>
<p><strong>Last updated: November 2025</strong></p>
<p>
By downloading or using <strong>My AI Voice Notes</strong>, you agree to
the following Terms of Use. These terms supplement the standard
<strong>Apple Media Services Terms and Conditions</strong>.
</p>
<h3>1. Service Usage</h3>
<p>
You may use the Service solely for lawful personal or professional
purposes. You are responsible for ensuring you have the necessary consent
to record audio in your jurisdiction.
</p>
<h3>2. User Content & Ownership</h3>
<p>
You retain full ownership of all audio content and transcriptions you
create. We do not claim ownership of your recordings. By using the
Service, you grant us a limited license to process your content solely to
provide the transcription features.
</p>
<h3>3. Prohibited Use</h3>
<p>You may not:</p>
<ul>
<li>Reverse engineer, decompile, or attempt to extract the source code.</li>
<li>Use the Service for illegal purposes or to harass others.</li>
<li>Interfere with system functionality or security.</li>
</ul>
<h3>4. Disclaimer</h3>
<p>
My AI Voice Notes is provided "AS IS" without guarantees of accuracy,
reliability, or fitness for a particular purpose. AI transcription
accuracy may vary based on audio quality, background noise, and language.
</p>
<h3>5. Limitation of Liability</h3>
<p>
To the maximum extent permitted by law, we are not liable for any indirect
damages, data loss, or service interruptions resulting from the use of the
Application.
</p>
<h3>6. Subscription & Payments</h3>
<p>
Subscriptions are managed by Apple. We are not responsible for billing
errors or refund processing, which are handled exclusively by the Apple
App Store.
</p>
<h3>7. Termination</h3>
<p>
We reserve the right to suspend or terminate access to the Service for
violations of these terms.
</p>
<h3>8. Governing Law</h3>
<p>
These Terms shall be governed by and construed in accordance with the
laws of the Republic of Türkiye, without regard to its conflict of law
provisions.
</p>
<p>
<strong>Contact (Legal):</strong>
<a href="mailto:YOUR_EMAIL_HERE">YOUR_EMAIL_HERE</a>
</p>
</section>
<!-- SUBSCRIPTION & PREMIUM TERMS -->
<section id="subscription" class="section">
<small class="section-label">Billing</small>
<h2>Subscription & Premium Terms</h2>
<h3>Premium Access</h3>
<p>Unlock the full power of AI.</p>
<h4>Premium Features</h4>
<ul>
<li>Up to 15 hours / month of AI transcription</li>
<li>Advanced AI transcription & summaries</li>
<li>Export to PDF, TXT and more</li>
<li>Cloud sync across iPhone & Apple Watch</li>
<li>Ad-free experience</li>
</ul>
<h4>Subscription Plans</h4>
<p>
Plans start from <strong>$2.99/week</strong>. We offer Weekly, Monthly,
and Yearly options. Prices may vary by location and are subject to change
in the App Store.
</p>
<h4>Important Subscription Details</h4>
<ul>
<li>
Payment will be charged to your Apple ID account at confirmation of
purchase.
</li>
<li>
Subscription automatically renews unless auto-renew is turned off at
least 24 hours before the end of the current period.
</li>
<li>
Your account will be charged for renewal within 24 hours prior to the
end of the current period.
</li>
<li>
You can manage and cancel subscriptions in
<strong>App Store > Account Settings</strong>.
</li>
<li>
Any unused portion of a free trial period, if offered, will be forfeited
when you purchase a subscription.
</li>
</ul>
</section>
<!-- TERMS & CONDITIONS / FAIR USAGE -->
<section id="terms" class="section">
<small class="section-label">Legal</small>
<h2>Terms & Conditions</h2>
<p><strong>Last updated: November 2025</strong></p>
<h3>1. Acknowledgment</h3>
<p>
These Terms and Conditions govern the use of this Service and the
agreement that operates between you and the Company. By accessing or using
the Service you agree to be bound by these Terms and Conditions.
</p>
<h3>2. Subscriptions & Fair Usage Policy</h3>
<p>
The Application offers subscription plans that grant access to premium
features, including AI transcription and summarization.
</p>
<p>
<strong>Fair Usage Limit:</strong> While local audio recording duration is
unlimited, the use of AI-powered transcription and summarization services
is subject to a Fair Usage Policy of <strong>15 hours (900 minutes)</strong>
of audio processing per month per user.
</p>
<ul>
<li>
<strong>Limit Reset:</strong> Your processing quota resets automatically
at the beginning of each billing cycle.
</li>
<li>
<strong>No Rollover:</strong> Unused quota does not roll over to the next
month.
</li>
<li>
<strong>Over-Limit:</strong> If you reach the 15-hour limit, you may
continue to record audio, but AI transcription features will be paused
until your quota resets.
</li>
</ul>
<h3>3. User-Generated Content</h3>
<p>
You are solely responsible for the legality, reliability and
appropriateness of the content you create within the Service. You retain
all rights to any content you submit, post, or display on or through the
Service.
</p>
<h3>4. Prohibited Uses</h3>
<p>You agree not to use the Service:</p>
<ul>
<li>
In any way that violates any applicable national or international law or
regulation.
</li>
<li>
To engage in conduct that restricts or inhibits anyone's use or
enjoyment of the Service.
</li>
<li>
To attempt to decompile, reverse engineer or bypass usage limits.
</li>
</ul>
<h3>5. Termination</h3>
<p>
We may terminate or suspend your access immediately, without prior notice,
for any reason including, without limitation, if you breach these Terms
and Conditions.
</p>
<h3>6. "AS IS" and "AS AVAILABLE" Disclaimer</h3>
<p>
The Service is provided to you "AS IS" and "AS AVAILABLE" and with all
faults and defects without warranty of any kind. We make no representation
that the Service or the transcription results will be 100% accurate,
complete, reliable, or error-free.
</p>
<h3>7. Limitation of Liability</h3>
<p>
To the maximum extent permitted by applicable law, in no event shall the
Company be liable for any special, incidental, indirect, or consequential
damages whatsoever arising out of or related to your use of the Service.
</p>
<h3>8. Governing Law & Changes</h3>
<p>
The laws of the Republic of Türkiye, excluding its conflicts of law rules,
shall govern these Terms and your use of the Service. We reserve the right
to modify or replace these Terms at any time. Updates will be posted on
this page.
</p>
<p>
<strong>Contact (Terms):</strong>
<a href="mailto:YOUR_EMAIL_HERE">YOUR_EMAIL_HERE</a>
</p>
</section>
</div>
</main>
<footer>
<div class="footer-inner">
<div>© <span id="year"></span> My AI Voice Notes. All rights reserved.</div>
<div class="footer-links">
<a href="#top">Back to top ↑</a>
</div>
</div>
<script>
document.getElementById("year").textContent =
new Date().getFullYear().toString();
</script>
</footer>
</body>
</html>