How Fast Is Your Dog Really Aging?
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
font-family: ‘Inter’, -apple-system, BlinkMacSystemFont, sans-serif;
background: #f8f9fa;
color: #1a1a1a;
line-height: 1.5;
min-height: 100%;
-webkit-font-smoothing: antialiased;
}
.progress-bar {
position: fixed;
top: 0;
left: 0;
height: 4px;
background: #1a7c4a;
transition: width 0.4s ease;
z-index: 1000;
}
.quiz-wrapper {
min-height: 100vh;
display: flex;
align-items: flex-start;
justify-content: center;
padding: 20px;
padding-top: 40px;
}
.quiz-container {
width: 100%;
max-width: 520px;
background: white;
border-radius: 16px;
box-shadow: 0 4px 24px rgba(0,0,0,0.08);
overflow: hidden;
}
.quiz-card {
display: none;
padding: 32px 28px;
animation: fadeIn 0.3s ease;
}
.quiz-card.active { display: block; }
@keyframes fadeIn {
from { opacity: 0; transform: translateY(8px); }
to { opacity: 1; transform: translateY(0); }
}
h1, h2, h3 { font-family: ‘Playfair Display’, serif; }
.question-title {
font-family: ‘Playfair Display’, serif;
font-size: 20px;
font-weight: 600;
margin-bottom: 20px;
color: #1a1a1a;
text-align: center;
line-height: 1.35;
}
.options { display: flex; flex-direction: column; gap: 8px; }
.age-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.age-btn { padding: 14px 8px; border: 1.5px solid #e5e5e5; border-radius: 8px; cursor: pointer; font-size: 15px; font-weight: 500; text-align: center; color: #333; background: white; transition: all 0.15s ease; }
.age-btn:hover { border-color: #1a7c4a; background: #f0f9f4; }
.age-btn.selected { border-color: #1a7c4a; background: #f0f9f4; }
.age-display { text-align: center; font-size: 48px; font-weight: 700; color: #1a7c4a; margin: 20px 0 30px; font-family: ‘Playfair Display’, serif; }
.age-display span { font-size: 64px; }
.slider-container { padding: 0 10px; margin-bottom: 30px; }
.age-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 12px; border-radius: 6px; background: #e5e5e5; outline: none; cursor: pointer; touch-action: none; }
.age-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 36px; height: 36px; border-radius: 50%; background: #1a7c4a; cursor: pointer; border: 4px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.2); transition: transform 0.1s; }
.age-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.age-slider::-webkit-slider-thumb:active { transform: scale(1.05); }
.age-slider::-moz-range-thumb { width: 36px; height: 36px; border-radius: 50%; background: #1a7c4a; cursor: pointer; border: 4px solid white; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.slider-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12px; color: #888; padding: 0 4px; }
.option {
padding: 14px 16px;
border: 1.5px solid #e5e5e5;
border-radius: 8px;
cursor: pointer;
transition: all 0.15s ease;
font-size: 14px;
text-align: center;
color: #333;
background: white;
}
.option:hover { border-color: #1a7c4a; background: #f0f9f4; }
.option.selected { border-color: #1a7c4a; background: #f0f9f4; }
.btn {
display: block;
width: 100%;
padding: 14px 20px;
background: #1a7c4a;
color: white;
border: none;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: background 0.2s ease;
text-align: center;
-webkit-appearance: none;
}
.btn:hover { background: #156b3e; }
/* START */
.start-content { text-align: center; }
.start-icon { font-size: 48px; margin-bottom: 16px; }
.start-title { font-family: ‘Playfair Display’, serif; font-size: 24px; font-weight: 700; line-height: 1.25; margin-bottom: 12px; }
.start-subtitle { font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 20px; }
.start-benefits { text-align: left; margin: 20px 0; padding: 16px; background: #f8f8f8; border-radius: 10px; }
.start-benefit { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 13px; color: #333; }
.start-disclaimer { font-size: 10px; color: #aaa; text-align: center; margin-top: 16px; line-height: 1.5; }
.start-disclaimer a { color: #999; text-decoration: underline; }
.benefit-check { color: #1a7c4a; font-weight: 700; flex-shrink: 0; }
.start-time { font-size: 12px; color: #888; margin-bottom: 16px; }
/* INSIGHT COMPONENTS */
.insight-badge {
display: inline-block;
padding: 5px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
margin-bottom: 12px;
}
.insight-badge.green { background: #dcfce7; color: #166534; }
.insight-badge.yellow { background: #fef3c7; color: #92400e; }
.insight-badge.red { background: #fee2e2; color: #991b1b; }
.insight-badge.blue { background: #dbeafe; color: #1e40af; }
.insight-badge.dark { background: #1a7c4a; color: white; }
.insight-title { font-family: ‘Playfair Display’, serif; font-size: 20px; font-weight: 600; margin-bottom: 10px; text-align: center; line-height: 1.3; }
.insight-subtitle { font-size: 13px; color: #666; text-align: center; margin-bottom: 16px; line-height: 1.5; }
.stat-row { display: flex; gap: 10px; margin: 16px 0; }
.stat-box { flex: 1; background: #f8f8f8; border-radius: 10px; padding: 16px 10px; text-align: center; }
.stat-box.green { background: #dcfce7; }
.stat-box.red { background: #fee2e2; }
.stat-box.yellow { background: #fef3c7; }
.stat-number { font-family: ‘Playfair Display’, serif; font-size: 28px; font-weight: 700; line-height: 1; }
.stat-box.green .stat-number { color: #166534; }
.stat-box.red .stat-number { color: #dc2626; }
.stat-box.yellow .stat-number { color: #92400e; }
.stat-label { font-size: 11px; color: #666; margin-top: 6px; line-height: 1.3; }
.compare-row { display: flex; gap: 10px; margin: 16px 0; }
.compare-box { flex: 1; padding: 14px 12px; border-radius: 10px; text-align: center; }
.compare-box.good { background: #dcfce7; }
.compare-box.bad { background: #fee2e2; }
.compare-box h4 { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.compare-box p { font-size: 11px; color: #666; margin: 0; }
.big-stat { text-align: center; padding: 20px; background: #f8f8f8; border-radius: 12px; margin: 16px 0; }
.big-stat.red-bg { background: #fee2e2; }
.big-stat-number { font-family: ‘Playfair Display’, serif; font-size: 42px; font-weight: 700; line-height: 1; color: #1a7c4a; }
.big-stat-number.red { color: #dc2626; }
.big-stat-label { font-size: 12px; color: #666; margin-top: 6px; }
.key-point { background: #f8f8f8; border-left: 3px solid #1a7c4a; padding: 12px 14px; margin: 16px 0; border-radius: 0 8px 8px 0; font-size: 13px; color: #333; line-height: 1.5; }
.key-point.warning { border-left-color: #dc2626; background: #fef2f2; }
.key-point.info { border-left-color: #2563eb; background: #eff6ff; }
.key-point strong { color: #1a1a1a; }
.prey-list { margin: 16px 0; list-style: none; }
.prey-item { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: #f0f9f4; border-radius: 6px; margin-bottom: 6px; font-size: 13px; }
.prey-icon { font-size: 18px; flex-shrink: 0; }
.prey-item strong { color: #166534; }
.prey-item span { color: #333; }
.gap-table { margin: 16px 0; border-radius: 10px; overflow: hidden; border: 1px solid #e5e5e5; font-size: 12px; }
.gap-row { display: flex; border-bottom: 1px solid #e5e5e5; }
.gap-row:last-child { border-bottom: none; }
.gap-label { width: 85px; min-width: 85px; padding: 10px 6px; background: #f8f8f8; font-weight: 600; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 10px; line-height: 1.2; }
.gap-wild, .gap-modern { flex: 1; padding: 10px 4px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.gap-wild { background: #dcfce7; }
.gap-modern { background: #fee2e2; }
.gap-amount { font-size: 13px; font-weight: 700; white-space: nowrap; }
.gap-wild .gap-amount { color: #166534; }
.gap-modern .gap-amount { color: #dc2626; }
.gap-source { font-size: 8px; color: #666; margin-top: 2px; line-height: 1.2; }
.revelation-box { background: linear-gradient(135deg, #f0f9f4, #dcfce7); border: 2px solid #1a7c4a; padding: 16px; border-radius: 10px; margin: 16px 0; text-align: center; }
.revelation-box h3 { color: #1a7c4a; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.revelation-box p { font-size: 13px; color: #333; margin: 0; line-height: 1.5; }
.icon-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.icon-row:last-child { border-bottom: none; }
.icon-circle { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.icon-circle.green { background: #dcfce7; }
.icon-circle.red { background: #fee2e2; }
.icon-circle.yellow { background: #fef3c7; }
.icon-text h4 { font-size: 13px; font-weight: 600; }
.icon-text p { font-size: 11px; color: #666; margin: 0; }
/* LOADING */
.loading-content { text-align: center; padding: 40px 0; }
.spinner { width: 48px; height: 48px; border: 4px solid #e5e5e5; border-top-color: #1a7c4a; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 20px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.loading-steps { text-align: left; max-width: 240px; margin: 0 auto; }
.load-step { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; color: #999; }
.load-step.active { color: #1a7c4a; font-weight: 500; }
.load-step.done { color: #1a7c4a; }
.load-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; }
.load-step.active .load-dot { background: #1a7c4a; animation: pulse 1s infinite; }
.load-step.done .load-dot { background: #1a7c4a; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
/* RESULTS */
.results-container { display: none; background: #fff; position: absolute; width: 100%; left: 0; top: 0; }
.results-container.active { display: block; position: relative; }
.results-hero { background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%); padding: 40px 20px; text-align: center; }
.results-hero h1 { font-family: ‘Playfair Display’, serif; font-size: 22px; margin-bottom: 20px; }
.jai-number { font-family: ‘Playfair Display’, serif; font-size: 64px; font-weight: 700; color: #dc2626; line-height: 1; }
.jai-suffix { font-size: 28px; color: #dc2626; }
.jai-label { font-size: 15px; color: #1a1a1a; margin-top: 4px; }
.results-stats { display: flex; justify-content: center; gap: 32px; margin-top: 24px; }
.result-stat-number { font-family: ‘Playfair Display’, serif; font-size: 32px; font-weight: 700; }
.result-stat-label { font-size: 12px; color: #666; }
.results-content { max-width: 800px; margin: 0 auto; padding: 32px 20px; }
.results-section { margin-bottom: 40px; }
.results-section h2 { font-family: ‘Playfair Display’, serif; font-size: 24px; margin-bottom: 12px; text-align: center; }
.results-section > p { text-align: center; color: #666; margin-bottom: 20px; font-size: 14px; }
.trajectory-chart { height: 240px; margin: 20px 0; }
.trajectory-legend { display: flex; justify-content: center; gap: 24px; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot.green { background: #1a7c4a; }
.legend-dot.red { background: #dc2626; }
.comparison-intro { text-align: center; padding: 40px 20px; background: #f0f9f4; margin: 40px 0; border-radius: 12px; }
.comparison-intro h2 { font-size: 26px; margin-bottom: 10px; }
.comparison-intro p { font-size: 14px; color: #444; max-width: 500px; margin: 0 auto; }
.comparison-header { text-align: center; margin-bottom: 24px; }
.comparison-title { font-family: ‘Playfair Display’, serif; font-size: 24px; margin-bottom: 16px; }
.winner-pill { display: inline-block; background: #fbbf24; color: #1a1a1a; padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; }
/* PRODUCT CARDS */
.product-card { border: 1px solid #e5e5e5; border-radius: 12px; margin-bottom: 24px; background: #fff; overflow: hidden; }
.product-card.winner { border: 2px solid #1a7c4a; }
.card-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: #fafafa; border-bottom: 1px solid #f0f0f0; flex-wrap: wrap; gap: 10px; }
.card-header-left { display: flex; align-items: center; gap: 12px; }
.rank-badge { width: 36px; height: 36px; background: #333; color: white; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; border-radius: 6px; }
.product-card.winner .rank-badge { background: #1a7c4a; }
.product-name { font-size: 20px; font-weight: 700; }
.winner-badge { background: #1a7c4a; color: white; padding: 5px 12px; border-radius: 4px; font-size: 10px; font-weight: 600; text-transform: uppercase; }
.score-section { text-align: right; }
.score-label { font-size: 10px; color: #888; }
.score-value { font-size: 28px; font-weight: 700; }
.score-value span { font-size: 16px; color: #888; }
.image-section { padding: 20px; text-align: center; border-bottom: 1px solid #f0f0f0; }
.product-image { width: 140px; height: auto; }
.scores-section { padding: 16px 20px; border-bottom: 1px solid #f0f0f0; }
.score-row { display: flex; align-items: center; margin-bottom: 10px; }
.score-row:last-child { margin-bottom: 0; }
.score-name { width: 100px; font-size: 11px; font-weight: 600; color: #333; text-transform: uppercase; }
.score-bar-container { flex: 1; height: 20px; background: #f0f0f0; border-radius: 4px; overflow: hidden; margin-right: 10px; }
.score-bar { height: 100%; background: #1a7c4a; border-radius: 4px; display: flex; align-items: center; justify-content: flex-end; padding-right: 6px; }
.score-bar.medium { background: #b8860b; }
.score-bar.low { background: #dc3545; }
.score-bar-label { font-size: 10px; font-weight: 600; color: white; }
.score-number { width: 45px; font-size: 12px; font-weight: 600; text-align: right; }
.pros-cons-section { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 20px; background: #fafafa; }
.pros-section h4 { color: #1a7c4a; }
.cons-section h4 { color: #dc2626; }
.pros-section h4, .cons-section h4 { font-size: 12px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.pros-list, .cons-list { list-style: none; }
.pros-list li, .cons-list li { padding: 6px 0; padding-left: 18px; position: relative; font-size: 12px; line-height: 1.4; border-bottom: 1px solid #eee; }
.pros-list li:last-child, .cons-list li:last-child { border-bottom: none; }
.pros-list li::before { content: “β”; position: absolute; left: 0; color: #1a7c4a; font-weight: 700; }
.cons-list li::before { content: “β”; position: absolute; left: 0; color: #dc2626; font-weight: 700; }
.conclusion-section { padding: 20px; border-top: 1px solid #eee; }
.conclusion-section h4 { font-size: 12px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
.conclusion-text { font-size: 13px; line-height: 1.7; color: #444; }
.cta-section { padding: 20px; background: linear-gradient(135deg, #f0f9f4, #dcfce7); }
.cta-offer { font-size: 13px; color: #166534; margin-bottom: 12px; }
.cta-btn { display: block; width: 100%; padding: 14px; background: #1a7c4a; color: white; text-decoration: none; border-radius: 8px; font-size: 15px; font-weight: 600; text-align: center; }
.cta-btn:hover { background: #156b3e; }
.final-cta { text-align: center; padding: 48px 20px; background: #f8f8f8; }
.final-cta h2 { font-family: ‘Playfair Display’, serif; font-size: 24px; margin-bottom: 12px; }
.final-cta p { font-size: 14px; color: #444; max-width: 500px; margin: 0 auto 20px; line-height: 1.6; }
.final-cta-btn { display: inline-block; padding: 14px 32px; background: #1a7c4a; color: white; text-decoration: none; border-radius: 8px; font-size: 15px; font-weight: 600; }
.results-disclaimer { font-size: 10px; color: #aaa; text-align: center; margin-top: 30px; line-height: 1.5; padding: 0 20px; }
.footer { background: #1a1a1a; padding: 24px; text-align: center; }
.footer-logo { font-family: ‘Playfair Display’, serif; font-size: 20px; color: white; margin-bottom: 4px; }
.footer p { font-size: 11px; color: #888; }
.disclaimer { background: #f5f5f5; padding: 24px 20px; }
.disclaimer p { max-width: 700px; margin: 0 auto 8px; font-size: 10px; color: #888; line-height: 1.5; }
@media (min-width: 768px) {
.quiz-container { max-width: 560px; }
.quiz-card { padding: 40px 36px; }
.start-title { font-size: 28px; }
.question-title { font-size: 22px; }
.insight-title { font-size: 24px; }
.option { padding: 16px 20px; font-size: 15px; }
.btn { padding: 16px 24px; font-size: 16px; }
.jai-number { font-size: 80px; }
}
@media (max-width: 380px) {
.quiz-card { padding: 24px 20px; }
.start-title { font-size: 20px; }
.start-subtitle { font-size: 13px; }
.question-title { font-size: 18px; }
.insight-title { font-size: 18px; }
.option { padding: 12px 14px; font-size: 13px; }
.btn { padding: 12px 16px; font-size: 14px; }
.stat-number { font-size: 24px; }
.big-stat-number { font-size: 36px; }
.pros-cons-section { grid-template-columns: 1fr; }
.age-display { font-size: 40px; }
.age-display span { font-size: 52px; }
.prey-item { font-size: 12px; }
.gap-label { width: 75px; min-width: 75px; font-size: 9px; }
.gap-amount { font-size: 12px; }
.gap-source { font-size: 7px; }
}
π
Is Your Dog Aging Faster Than You Think?
Most dogs hide discomfort until it’s severe. This reveals what’s really happening inside.
βDiscover your dog’s true joint age
βLearn what 97% of owners don’t know
βGet personalized recommendations
For informational purposes only. Not veterinary advice.
By continuing, you agree to our Terms of Use and Privacy Policy.
How would you describe your relationship with your dog?
Best friend and companion
Beloved family member
My baby, I’d do anything
All of the above
Have you noticed any slowing down or stiffness?
Yes, I’ve noticed changes
Not yet, they seem fine
Maybe subtle signs
Yes, for a while now
How old is your dog?
5 years
0
5
10
15+
What size is your dog?
Small (under 10kg)
Medium (10-25kg)
Large (25-40kg)
Giant (over 40kg)
How active is your dog currently?
Very active, loves running
Moderate, daily walks
Less active than before
Limited mobility
Does your dog show any of these?
Stiffness after resting
Hesitates at stairs/jumping
Slower on walks
Difficulty getting up
None of these
What does your dog primarily eat?
Commercial kibble
Wet/canned food
Raw or fresh food
Mix of foods
β‘ The Missing Piece
What Dogs Were Designed to Eat
For 15,000 years, ancestors ate whole prey. Not just meat. Everything.
- π¦΄Cartilage β 500-800mg glucosamine daily
- π«Tendons β 300-500mg chondroitin daily
- π«Organs β Anti-inflammatory compounds
This wasn’t a supplement. This was dinner. Every day.
β οΈ The Gap
What Modern Diets Provide
AncestralModern
Glucosamine500-800mgFrom cartilage0mgNot present
Chondroitin300-500mgConnective tissue0mgDestroyed
This Gap Exists In Every Diet
Premium kibble, wet food, even most raw. Unless feeding whole prey daily.
β οΈ The Result
Without These Building Blocks
!
Cartilage deteriorates
No materials for repair
!
Joint fluid thins
Less cushioning
!
Inflammation builds
No natural buffer
!
60-70% damage before visible
Silent deterioration
The solution: Replace what your dog’s ancestors received naturally but modern feeding no longer provides.
π Why This Matters
Mobility Is Everything To Your Dog
For dogs, movement isn’t just exercise. It’s their entire connection to life.
πΆ
Walks are their adventure
Every smell, every discovery, every moment with you
πΎ
Play is their joy
Fetch, zoomies, wrestling – this is what they live for
π
Greeting you is their highlight
That excited run to the door when you come home
When mobility declines, their whole world shrinks. They can’t tell you they’re hurting. They just… do less. And a piece of who they are fades away.
When you touch their hips or legs, how do they react?
Loves it, leans in
Neutral, no reaction
Sometimes moves away
Often flinches
Have you tried joint support before?
Yes, supplements
Yes, vet medications
Yes, multiple things
No, new to this
Calculating Results…
Analyzing risk factors
Calculating joint age
Finding solutions
Your Dog’s Joint Assessment
1.8x
Joints aging 1.8x faster than normal
7Actual Age
12Joint Age
Two Possible Futures
What the next years could look like
With support
Current path
What Actually Works?
We tested top supplements to find which fill the Ancestral Nutrition Gap with effective doses.
Top 5 Joint Supplements
π Our Winner π
1Pet Gently
#1 Supplement 2026
Score93/100

Taste9.519/20
Effectiveness1020/20
Ingredients1020/20
Quality9.519/20
Price8.016/20
Pros
- 13 ingredients at clinical doses
- 96% acceptance first try
- 81% see improvement in 3 weeks
- No fillers or artificial ingredients
- Well tolerated, even for sensitive dogs
- 90-day guarantee
Cons
- Online only
- Often sells out
Bottom Line
The only supplement that comprehensively fills the Ancestral Nutrition Gap with 13 clinically-dosed ingredients. Where competitors offer 1-2 underdosed ingredients, Pet Gently delivers the complete profile your dog’s ancestors received naturally. 96% acceptance means no daily battles, 81% see visible improvement within 3 weeks. The 90-day guarantee removes all risk.
π Β£19.99 first month (50% off) + free shipping
Check Availability β
2JointEaseScore74/100

Taste7.515/20
Effectiveness7.014/20
Ingredients6.513/20
Quality6.012/20
Price5.010/20
Pros
- Contains glucosamine
- Liver flavor
- Known brand
Cons
- Inconsistent quality
- Large tablets
- 6-week loading period
- 8-10 weeks for results
Bottom Line
A decent option for mild stiffness, but inconsistent batch quality and artificial preservatives raise concerns. The 6-week loading period at double dose makes it expensive to start. Large tablets create administration issues for smaller dogs, and the incomplete formula only addresses part of the gap.
3NaturFlexScore65/100

Taste4.08/20
Effectiveness5.511/20
Ingredients7.014/20
Quality6.012/20
Price6.513/20
Pros
- All-natural
- Eco-friendly packaging
Cons
- Dogs reject the smell
- Stains bowls and fur
- Doses too low
- Short shelf life
Bottom Line
Appeals to owners wanting natural options, but good intentions don’t equal results. The powder stains everything, many dogs refuse the strong herbal smell, and concentrations are far too low for therapeutic effect. Marketing over substance.
4MobilityPlusScore55/100

Taste6.012/20
Effectiveness4.59/20
Ingredients4.08/20
Quality3.57/20
Price7.014/20
Pros
- Low initial price
- Available in stores
Cons
- Tablets crumble
- Mostly fillers
- Need 3-5 daily
- Below effective doses
Bottom Line
The “budget option” that costs more long-term. Looks cheap until you realize you need 3-5 crumbling tablets daily. Heavily padded with fillers that dilute minimal active ingredients. You get what you pay for.
5PawMotionScore53/100

Taste5.511/20
Effectiveness4.08/20
Ingredients5.010/20
Quality4.59/20
Price4.59/20
Pros
- Nice packaging
- Soft chew format
Cons
- Inconsistent sizes
- Greasy residue
- Hardens in 2-3 weeks
- Useless doses
Bottom Line
Instagram-worthy packaging hiding a flawed product. Inconsistent chew sizes make dosing impossible, greasy residue is unpleasant, and they harden within weeks. Trendy ingredients at concentrations too low to help. Marketing budget exceeds R&D. Skip it.
Give Your Dog What Their Ancestors Had
Pet Gently fills the Ancestral Nutrition Gap with clinically effective doses. 90-day guarantee means zero risk.
Your dog’s joint age estimate is based solely on your quiz answers and is not a veterinary diagnosis. This quiz is for informational and educational purposes only and does not constitute medical advice, veterinary advice, diagnosis, or treatment. Always consult a qualified veterinarian before making any changes to your dog’s diet, supplements, or care routine. Individual results vary. The information provided should not be used as a substitute for professional veterinary care. We are not responsible for any decisions made based on quiz results.
Pet Gently
Β© 2026 All rights reserved
Results vary. For informational purposes only. Consult your vet before starting supplements. We may receive compensation for purchases through links.