Terms of Service — Damian Martinez
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg-primary: #FAF8F4;
--bg-cream: #F5F0E8;
--bg-warm: #EDE7DB;
--bg-card: #FFFFFF;
--bg-dark: #1a1a1a;
--bg-dark-warm: #232019;
--text-primary: #1a1a1a;
--text-secondary: #4a4a4a;
--text-muted: #7a7a7a;
--text-light: #d4d0c8;
--gold: #C6A24B;
--gold-rich: #B8922F;
--gold-light: rgba(198, 162, 75, 0.12);
--gold-glow: rgba(198, 162, 75, 0.25);
--terracotta: #C4704B;
--terracotta-light: rgba(196, 112, 75, 0.10);
--border: rgba(0, 0, 0, 0.07);
--border-hover: rgba(0, 0, 0, 0.14);
--border-light: rgba(255, 255, 255, 0.08);
--gradient-gold: linear-gradient(135deg, #D4AD4B, #C6A24B, #B8922F);
--font-display: 'Instrument Serif', Georgia, serif;
--font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--bg-primary); color: var(--text-primary); font-family: var(--font-body); line-height: 1.7; overflow-x: hidden; }
a { color: var(--gold-rich); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta); }
/* ─── NAV ─── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250, 248, 244, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 768px) { .nav-inner { padding: 0 48px; } }
.nav-logo { font-family: var(--font-display); font-size: 1.35rem; color: var(--text-primary); letter-spacing: -0.02em; }
.nav-logo em { font-style: italic; color: var(--gold-rich); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--gold-rich); }
@media (max-width: 600px) { .nav-links { gap: 16px; } .nav-links a { font-size: 0.8rem; } }
/* ─── HERO ─── */
.terms-hero { background: var(--bg-dark); padding: 80px 0 60px; position: relative; overflow: hidden; text-align: center; }
.terms-hero::before { content: ''; position: absolute; top: -30%; left: -15%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(196, 112, 75, 0.05) 0%, transparent 65%); pointer-events: none; }
.terms-hero::after { content: ''; position: absolute; bottom: -30%; right: -15%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(198, 162, 75, 0.05) 0%, transparent 65%); pointer-events: none; }
.terms-hero .container { position: relative; z-index: 2; }
.terms-hero-icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; background: rgba(196, 112, 75, 0.1); border: 1px solid rgba(196, 112, 75, 0.2); border-radius: 20px; margin-bottom: 28px; }
.terms-hero-icon svg { width: 32px; height: 32px; stroke: var(--terracotta); fill: none; }
.terms-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); color: #fff; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 12px; }
.terms-hero h1 em { font-style: italic; color: var(--terracotta); }
.terms-hero .subtitle { font-size: 1rem; color: var(--text-light); opacity: 0.6; font-style: italic; margin-bottom: 16px; }
.terms-hero-meta { display: flex; justify-content: center; gap: 32px; margin-top: 8px; font-size: 0.8125rem; color: var(--text-light); opacity: 0.7; }
.terms-hero-meta span strong { color: var(--terracotta); font-weight: 600; }
@media (max-width: 600px) { .terms-hero-meta { flex-direction: column; gap: 6px; } }
/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
/* ─── AGREEMENT BANNER ─── */
.agreement-banner { background: var(--bg-dark-warm); border: 1px solid var(--border-light); border-radius: 12px; padding: 20px 28px; margin: -24px auto 40px; max-width: 900px; text-align: center; position: relative; z-index: 5; }
.agreement-banner p { color: var(--text-light); font-size: 0.875rem; margin: 0; line-height: 1.6; }
.agreement-banner strong { color: var(--gold); }
/* ─── TABLE OF CONTENTS ─── */
.toc { background: var(--bg-cream); border: 1px solid var(--border); border-radius: 16px; padding: 28px 32px; margin: 0 auto 48px; max-width: 900px; }
.toc-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--terracotta); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.toc-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 40px; }
@media (max-width: 600px) { .toc-list { columns: 1; } }
.toc-list li { break-inside: avoid; margin-bottom: 8px; }
.toc-list a { font-size: 0.8125rem; color: var(--text-secondary); font-weight: 500; display: flex; align-items: baseline; gap: 10px; }
.toc-list a:hover { color: var(--gold-rich); }
.toc-list .sec-num { font-weight: 700; color: var(--gold-rich); min-width: 24px; }
/* ─── CONTENT ─── */
.terms-content { max-width: 900px; margin: 0 auto; padding: 0 20px 80px; }
@media (min-width: 768px) { .terms-content { padding: 0 48px 100px; } }
.terms-section { margin-bottom: 56px; scroll-margin-top: 80px; }
.terms-section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.terms-section-num { background: var(--bg-dark); color: #fff; font-weight: 700; font-size: 0.75rem; padding: 6px 12px; border-radius: 6px; white-space: nowrap; letter-spacing: 0.04em; }
.terms-section-header h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 1.9rem); color: var(--text-primary); margin: 0; line-height: 1.15; }
.terms-section h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin: 28px 0 12px; }
.terms-section h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-secondary); margin: 20px 0 10px; }
.terms-section p { margin-bottom: 14px; color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.75; text-align: justify; }
.terms-section ul, .terms-section ol { margin: 0 0 16px 0; padding-left: 24px; }
.terms-section li { margin-bottom: 8px; color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.7; }
/* ─── BOXES ─── */
.info-box { border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.info-box p, .info-box li { font-size: 0.875rem; }
.info-box h4 { margin: 0 0 8px; font-size: 0.9rem; }
.info-box.notice { background: var(--gold-light); border-left: 4px solid var(--gold-rich); }
.info-box.notice h4 { color: var(--gold-rich); }
.info-box.warning { background: var(--terracotta-light); border-left: 4px solid var(--terracotta); }
.info-box.warning h4 { color: var(--terracotta); }
.info-box.critical { background: #fef2f2; border-left: 4px solid #dc3545; border-radius: 12px; }
.critical-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #dc3545; margin-bottom: 10px; }
.info-box.critical p { margin: 0; text-align: left; }
.info-box.dark { background: var(--bg-dark); border-left: 4px solid var(--gold); border-radius: 12px; }
.info-box.dark p { color: var(--text-light); margin: 0; text-align: left; }
.info-box.dark strong { color: #fff; }
/* ─── LIST BOX ─── */
.list-box { background: var(--bg-cream); border: 1px solid var(--border); padding: 24px 28px; border-radius: 12px; margin: 20px 0; }
.list-box h4 { margin-top: 0; color: var(--text-primary); font-size: 0.9375rem; }
.list-box ul { margin-bottom: 0; }
/* ─── TWO COLUMN ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } }
.col-box { background: var(--bg-cream); padding: 20px; border-radius: 12px; border: 1px solid var(--border); }
.col-box h4 { margin: 0 0 10px; font-size: 0.875rem; color: var(--text-primary); }
.col-box ul { margin: 0; padding-left: 18px; font-size: 0.8125rem; }
/* ─── CONTACT ─── */
.terms-contact { background: var(--bg-dark); padding: 40px; border-radius: 16px; margin: 48px 0; text-align: center; }
.terms-contact h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 24px; }
.terms-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.terms-contact-item h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.terms-contact-item p { color: #fff; font-size: 0.9375rem; margin: 0; text-align: center; }
.terms-contact-item a { color: var(--gold); }
.terms-contact-item a:hover { color: #fff; }
/* ─── ACKNOWLEDGMENT ─── */
.acknowledgment { border: 2px solid var(--border); border-radius: 16px; padding: 36px; margin: 48px 0; text-align: center; }
.acknowledgment h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-primary); margin-bottom: 16px; }
.acknowledgment > p { text-align: center; margin-bottom: 20px; color: var(--text-secondary); font-size: 0.9375rem; }
.acknowledgment ul { text-align: left; max-width: 600px; margin: 0 auto; font-size: 0.875rem; }
.acknowledgment li { color: var(--text-secondary); }
/* ─── FOOTER ─── */
.site-footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 0; text-align: center; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; color: #fff; margin-bottom: 12px; }
.footer-logo em { font-style: italic; color: var(--gold); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-links a { font-size: 0.8125rem; color: var(--text-light); opacity: 0.6; }
.footer-links a:hover { color: var(--gold); opacity: 1; }
.footer-copy { font-size: 0.75rem; color: var(--text-light); opacity: 0.4; }
/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
Damian Martinez
About
Blog
Contact
Terms of Service
User Agreement
Effective: March 1, 2026
Version: 1.0
BY ACCESSING OR USING OUR SERVICES, YOU AGREE TO BE BOUND BY THESE TERMS. If you do not agree to these Terms, do not access or use our Services.
Contents
Section 1
No Professional Relationship Established
The information, products, and services provided through DamianMartinez.com are for educational and informational purposes only. By using our Services, you acknowledge and agree that:
Damian Martinez is NOT:
A licensed attorney or legal professional
A certified financial advisor, planner, or investment professional
A licensed real estate agent, broker, or brokerage
A certified public accountant or tax professional
A licensed therapist, counselor, or medical professional
Educational Purpose
Nothing on this website or in our products creates an attorney-client, financial advisory, medical, or any other professional service relationship between you and Damian Martinez. All content, coaching, and consulting is educational in nature. You are solely responsible for your own decisions and outcomes.
Our Products & Services Are Designed To:
Share entrepreneurial frameworks, strategies, and real-world experience
Educate on AI integration, business building, and digital marketing
Provide templates, toolkits, and resources to accelerate your business
Offer consulting and coaching through scheduled Zoom sessions
Our Services Are NOT Intended To:
Provide legal, tax, financial, or investment advice
Replace guidance from licensed professionals in any field
Guarantee specific income, business, or financial results
Create binding agreements or professional obligations
Offer medical, therapeutic, or mental health guidance
Section 2
Service Description
What We Provide
DamianMartinez.com offers digital products, educational content, and consulting services, including but not limited to:
Digital Products
Ebooks and digital guides
Online courses and training materials
Templates, frameworks, and toolkits
Downloadable resources and checklists
Consulting & Coaching Services
One-on-one Zoom consulting sessions
Strategy calls and business coaching
AI integration consultations
Follow-up support related to booked sessions
Content & Community
Blog articles and educational content
Email newsletter
Social media content and community interaction
Earnings Disclaimer
No Income Guarantees
Any references to income, revenue, or business results on this website, in our products, or during consulting sessions are for educational illustration only. Your results will vary based on your effort, skills, market conditions, and many other factors. We make no guarantees of income, success, or specific outcomes. You accept full responsibility for your own results.
Section 3
Account Registration & Payment Terms
Account Requirements
You must be at least 18 years of age to use our Services
You must provide accurate and complete information during registration or checkout
You are responsible for maintaining the security of your account credentials
You accept responsibility for all activities that occur under your account
You must notify us immediately of any unauthorized use of your account
Payment Terms
All payments are processed securely through Stripe
Prices are displayed in U.S. dollars (USD)
Applicable taxes may be added at checkout based on your jurisdiction
We reserve the right to modify pricing at any time with notice
Payment is required in full at the time of purchase
Checkout Consent
By checking the "I agree to the Terms of Service and Privacy Policy" checkbox during checkout and completing your purchase, you confirm that you have read, understood, and agree to be bound by these Terms of Service and our Privacy Policy in their entirety — including our no-refund policy on all digital products and consulting services.
Section 4
Digital Products — All Sales Final
No Refunds on Digital Products
Due to the instant-delivery nature of digital products, ALL DIGITAL PRODUCT SALES ARE FINAL. No refunds, exchanges, credits, or chargebacks will be honored after purchase for any reason. This applies to all digital products sold through DamianMartinez.com, including but not limited to: ebooks, digital guides, online courses, training materials, templates, toolkits, frameworks, checklists, and any other downloadable or digitally delivered content.
Why No Refunds?
Digital products are delivered instantly upon purchase — once delivered, they cannot be "returned"
Access to content is granted immediately and cannot be revoked after viewing
The intellectual property and value is transferred at the moment of delivery
Download Access
Digital products are available for immediate download or access upon purchase
Download links are delivered via email and/or available in your account dashboard
If you experience a technical issue preventing access to a purchased product, contact [email protected] and we will resolve the technical issue — this does not constitute grounds for a refund
Usage Rights
Digital products are licensed for personal, non-commercial use unless otherwise stated
You may not redistribute, resell, share, or publish purchased content
Commercial use or redistribution requires a separate licensing agreement
Violation of usage rights will result in account termination without refund
Section 5
Consulting Services — All Sales Final
No Refunds on Consulting Services
ALL CONSULTING AND COACHING SERVICE PURCHASES ARE FINAL. No refunds, exchanges, or credits will be issued for booked Zoom consulting sessions, strategy calls, coaching packages, or any other paid consulting service — whether the session is attended, missed, or cancelled by you. By purchasing a consulting session, you acknowledge that the time slot is reserved exclusively for you and cannot be resold.
Scheduling & Cancellation
Consulting sessions must be scheduled within 90 days of purchase unless otherwise stated
You may reschedule a session with at least 48 hours' notice before the scheduled time
Sessions cancelled with less than 48 hours' notice, or no-shows, are forfeited without refund or reschedule
We reserve the right to reschedule sessions due to emergencies or unavoidable conflicts, in which case a replacement time will be offered
Session Terms
Consulting sessions are educational in nature and do not constitute professional advice
Recording of sessions is prohibited without prior written consent from both parties
Session content is confidential and may not be redistributed or published
We reserve the right to refuse or terminate a session if the participant is abusive, disruptive, or violates these Terms
Rescheduling vs. Refund
If you need to change your session time, you may reschedule with 48+ hours' notice — no penalty. However, rescheduling is not the same as a refund. You are rescheduling the session you already purchased, not requesting your money back. Purchased sessions that are not scheduled within 90 days of purchase expire without refund.
Section 6
Intellectual Property
Our Content
All content, products, and materials on DamianMartinez.com — including text, graphics, logos, images, audio, video, software, courses, templates, and frameworks — are the exclusive property of Damian Martinez or its licensors and are protected by copyright, trademark, and other intellectual property laws.
Your License
We grant you a limited, non-exclusive, non-transferable, revocable license to access and use our Services and purchased products for personal use. This license does not include:
Resale, redistribution, or commercial use of any content or products
Modification, adaptation, or creation of derivative works
Downloading or copying content for another party's benefit
Use of data mining, scraping, robots, or similar automated collection tools
Sharing account credentials or purchased product access with others
Your Content
You retain ownership of content you submit to us (such as questions before consulting sessions or contact form messages). By submitting content, you grant us a worldwide, royalty-free license to use, reproduce, and display such content for the purpose of operating and improving our Services.
Section 7
Limitation of Liability
Disclaimer of Warranties
OUR SERVICES, PRODUCTS, AND CONTENT ARE PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. We disclaim all warranties, including but not limited to implied warranties of merchantability, fitness for a particular purpose, non-infringement, and accuracy or completeness of information.
Limitation of Damages
TO THE MAXIMUM EXTENT PERMITTED BY LAW, DAMIAN MARTINEZ SHALL NOT BE LIABLE FOR ANY:
Indirect, incidental, special, consequential, or punitive damages
Loss of profits, revenue, data, or business opportunities
Damages arising from reliance on our content, products, or consulting advice
Business decisions made based on information shared during consulting sessions
Damages exceeding the total amount you paid us in the 12 months preceding the claim
Specific Exclusions
We are not liable for:
Your business outcomes, income results, or financial performance
Decisions made without appropriate licensed professional counsel
Implementation failures or misapplication of strategies discussed
Market conditions, economic changes, or competitive dynamics
Technical issues with third-party platforms (Zoom, Stripe, email providers)
Errors, omissions, or outdated information in our content or products
Assumption of Risk
You assume all risk associated with using our Services for business, financial, or personal decisions. Damian Martinez is not responsible for your actions, implementations, decisions, outcomes, or results. Always consult with qualified, licensed professionals before making significant business, legal, tax, or financial decisions.
Section 8
Dispute Resolution
Informal Resolution
Before filing any formal legal action, you agree to contact us at [email protected] to attempt informal resolution. Many disputes can be resolved quickly through direct communication. You agree to allow 30 days for informal resolution before pursuing formal remedies.
Binding Arbitration
Arbitration Agreement
BY USING OUR SERVICES, YOU AGREE THAT ANY DISPUTE ARISING FROM THESE TERMS OR OUR SERVICES SHALL BE RESOLVED BY BINDING ARBITRATION rather than in court, except that either party may seek injunctive relief in court for intellectual property violations. Arbitration shall be conducted by the American Arbitration Association (AAA) under its Consumer Arbitration Rules in Palm Beach County, Florida, or another mutually agreed location.
Class Action Waiver
YOU AGREE TO RESOLVE DISPUTES WITH US ON AN INDIVIDUAL BASIS ONLY. You waive any right to participate in a class action lawsuit, class arbitration, or any other representative or consolidated proceeding.
Governing Law
These Terms shall be governed by and construed in accordance with the laws of the State of Florida, without regard to conflict of law principles.
Venue
Any legal action not subject to arbitration shall be brought exclusively in the state or federal courts located in Palm Beach County, Florida. You consent to the personal jurisdiction of these courts.
Section 9
General Provisions
Entire Agreement
These Terms of Service, together with our Privacy Policy, constitute the entire agreement between you and Damian Martinez regarding your use of our Services.
Severability
If any provision of these Terms is found to be unenforceable or invalid by a court of competent jurisdiction, the remaining provisions will continue in full force and effect.
Waiver
Our failure to enforce any provision of these Terms does not constitute a waiver of that provision or any other provision.
Assignment
You may not assign or transfer your rights under these Terms without our prior written consent. We may assign our rights to any affiliate, successor, or acquirer of our business.
Force Majeure
We are not liable for delays or failures in performance caused by circumstances beyond our reasonable control, including but not limited to natural disasters, pandemics, war, terrorism, labor disputes, government actions, power failures, or internet outages.
Modifications
We may modify these Terms at any time. Material changes will be communicated via email or website notice. Continued use of our Services after notification of changes constitutes your acceptance of the updated Terms. If you do not agree to the modified Terms, your sole remedy is to stop using our Services.
Indemnification
You agree to indemnify, defend, and hold harmless Damian Martinez from and against any and all claims, damages, losses, liabilities, costs, and expenses (including reasonable attorneys' fees) arising out of or related to your use of our Services, your violation of these Terms, your violation of any third-party rights, or your negligence or willful misconduct.
Contact Information
All Inquiries
[email protected]
Response Time
Within 48 hours
Mailing Address
PO BOX 17463 West Palm Beach, FL 33416
Acknowledgment
BY USING OUR SERVICES, YOU ACKNOWLEDGE THAT YOU HAVE READ, UNDERSTOOD, AND AGREE TO BE BOUND BY THESE TERMS OF SERVICE.
You further acknowledge that:
All digital product and consulting service purchases are final — no refunds
You accept full responsibility for your own decisions, actions, and outcomes
Our content and consulting is educational, not professional advice
You will seek appropriate licensed professional guidance for legal, tax, and financial decisions
Results vary and are not guaranteed — income claims are illustrative only
You have read and agree to our Privacy Policy
Disputes will be resolved through binding arbitration in Palm Beach County, Florida
These Terms of Service are effective as of March 1, 2026. Damian Martinez reserves the right to modify these Terms at any time.
Document Version: 1.0 | Last Updated: March 1, 2026