-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1149 lines (1036 loc) · 66.5 KB
/
index.html
File metadata and controls
1149 lines (1036 loc) · 66.5 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>Tattoo Touch-Up Timeline Calculator - When Do Tattoos Need Touch-Ups? | Free Tool</title>
<meta name="title" content="Tattoo Touch-Up Timeline Calculator - When Do Tattoos Need Touch-Ups? | Free Tool">
<meta name="description" content="FREE tattoo touch-up calculator predicts when tattoos fade and need touch-ups. Calculate longevity based on style, colors, placement, sun exposure. Plan maintenance & costs. Used by 10,000+ tattoo enthusiasts.">
<meta name="keywords" content="tattoo touch up calculator, when do tattoos need touch ups, tattoo fading timeline, how long do tattoos last, tattoo maintenance calculator, tattoo longevity predictor, color tattoo fading, tattoo care guide, touch up frequency, tattoo aging, watercolor tattoo lifespan, black and grey tattoo durability, tattoo cost calculator, lifetime tattoo maintenance, tattoo sun damage, SPF for tattoos, tattoo touch up cost, when to get tattoo touched up, tattoo readiness checker, professional tattoo tools">
<meta name="author" content="Poli International - Professional Tattoo & Piercing Supplies">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<meta name="language" content="English">
<meta name="revisit-after" content="7 days">
<link rel="canonical" href="https://poliinternational.com/standalone-tools/touch-up-timeline/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://poliinternational.com/standalone-tools/touch-up-timeline/">
<meta property="og:title" content="Free Tattoo Touch-Up Timeline Calculator - Predict When Your Tattoo Needs Touch-Ups">
<meta property="og:description" content="Calculate when your tattoo will fade and need touch-ups. Professional tool analyzes style, colors, placement, sun exposure, and care. Get personalized maintenance plans and cost estimates. 100% free!">
<meta property="og:image" content="https://poliinternational.com/standalone-tools/touch-up-timeline/images/Poli-International-Co.webp">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:site_name" content="Poli International">
<meta property="og:locale" content="en_US">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://poliinternational.com/standalone-tools/touch-up-timeline/">
<meta name="twitter:title" content="Free Tattoo Touch-Up Timeline Calculator - Predict Tattoo Fading">
<meta name="twitter:description" content="Calculate when your tattoo needs touch-ups. Analyzes style, colors, placement & care. Get maintenance plans & cost estimates. Free professional tool!">
<meta name="twitter:image" content="https://poliinternational.com/standalone-tools/touch-up-timeline/images/Poli-International-Co.webp">
<!-- Additional SEO Tags -->
<meta name="theme-color" content="#3B82F6">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="format-detection" content="telephone=no">
<!-- Schema.org Structured Data (JSON-LD) -->
<script type='application/ld+json'>
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Tattoo Touch-Up Timeline Guide",
"url": "https://poliinternational.com/tools/touch-up-timeline/",
"description": "Determine the best time for tattoo touch-ups and maintenance",
"applicationCategory": "UtilityApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires JavaScript. Requires HTML5.",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"codeRepository": "https://github.com/poli-international/touch-up-timeline",
"author": {
"@type": "Organization",
"name": "Poli International",
"url": "https://poliinternational.com",
"sameAs": [
"https://github.com/poli-international"
]
},
"creator": {
"@type": "Organization",
"name": "Poli International",
"url": "https://poliinternational.com"
},
"maintainer": {
"@type": "Organization",
"name": "Poli International",
"url": "https://poliinternational.com"
},
"dateModified": "2026-02-07",
"license": "https://opensource.org/licenses/MIT",
"isAccessibleForFree": true
}
</script>
<!-- Breadcrumb Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://poliinternational.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "Professional Tools",
"item": "https://poliinternational.com/standalone-tools/"
},
{
"@type": "ListItem",
"position": 3,
"name": "Tattoo Touch-Up Timeline Calculator",
"item": "https://poliinternational.com/standalone-tools/touch-up-timeline/"
}
]
}
</script>
<!-- FAQ Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How long do tattoos last before needing a touch-up?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Tattoo longevity varies from 4-12 years depending on style, colors, placement, sun exposure, and care. Tribal/blackwork tattoos last longest (10-12 years), while watercolor and fine line tattoos may need touch-ups every 4-5 years. Excellent care can extend tattoo life by 30-50%."
}
},
{
"@type": "Question",
"name": "Which tattoo colors fade fastest?",
"acceptedAnswer": {
"@type": "Answer",
"text": "White, yellow, and light pink fade fastest (2-3 years). Orange and purple fade moderately (4-5 years). Red and green last 6-7 years. Dark blue lasts 8 years. Black is most durable, lasting 10+ years. Always use SPF 50+ to protect colored tattoos."
}
},
{
"@type": "Question",
"name": "How much does a tattoo touch-up cost?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Touch-ups typically cost 40-60% of the original tattoo price. For a $500 tattoo, expect touch-ups around $200-300. Over 30 years with touch-ups every 8 years, total maintenance costs approximately $1,000-1,500. Good care reduces touch-up frequency and saves money."
}
},
{
"@type": "Question",
"name": "Does sun exposure make tattoos fade faster?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Sun exposure is the #1 cause of tattoo fading, accelerating fading by 40-60%. UV rays break down ink pigments. Always apply SPF 50+ sunscreen to tattoos when exposed to sun. High sun exposure without SPF can reduce tattoo life by 3-5 years."
}
},
{
"@type": "Question",
"name": "When should I get my tattoo touched up?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Get a touch-up when you notice significant color fading, line blurring, or detail loss. Most tattoos benefit from touch-ups every 5-10 years. Schedule consultation 6-12 months before severe fading occurs. Our calculator provides personalized timing based on your specific tattoo."
}
}
]
}
</script>
<link rel="stylesheet" href="css/style.css">
<style>
/* Breadcrumb Styles */
.breadcrumb-nav {
padding: 1rem 0;
margin-bottom: 1.5rem;
font-size: 0.9rem;
}
.breadcrumb-nav a {
color: #0693e3;
text-decoration: none;
transition: color 0.3s;
}
.breadcrumb-nav a:hover {
color: #0575be;
text-decoration: underline;
}
.breadcrumb-nav span {
color: #666;
margin: 0 0.5rem;
}
.breadcrumb-nav strong {
color: #333;
}
/* Dark mode breadcrumb */
body.dark-mode .breadcrumb-nav span {
color: #999;
}
body.dark-mode .breadcrumb-nav a {
color: #60a5fa;
}
body.dark-mode .breadcrumb-nav strong {
color: #e0e0e0;
}
</style>
</head>
<body>
<nav class="breadcrumb-nav" aria-label="Breadcrumb">
<a href="https://poliinternational.com/">Home</a>
<span>›</span>
<a href="https://poliinternational.com/tools/">Tools</a>
<span>›</span>
<a href="https://poliinternational.com/tools/#tattoo-tools">Tattoo Tools</a>
<span>›</span>
<strong>Touch-up Timeline</strong>
</nav>
<!-- Top Navigation Header (matching homepage style) -->
<header class="site-header">
<div class="site-header__container">
<a href="https://poliinternational.com/" class="site-header__logo-link">
<img src="images/Poli-International-Co.webp" alt="Poli International" class="site-header__logo">
</a>
<nav class="site-nav">
<a href="https://poliinternational.com/" class="site-nav__link">HOME</a>
<a href="https://poliinternational.com/who-we-are/" class="site-nav__link">ABOUT</a>
<a href="https://poliinternational.com/our-creation/" class="site-nav__link">INNOVATION</a>
<a href="https://poliinternational.com/they-trust-us/" class="site-nav__link">They trust us!</a>
<a href="https://poliinternational.com/contact-us/" class="site-nav__link">CONTACT</a>
</nav>
</nav>
</div>
</header>
<!-- Tool Title Section -->
<section class="tool-title-section">
<div class="container">
<h1 class="tool-title">Tattoo Touch-Up Timeline Calculator</h1>
<!-- GitHub CTA -->
<div class='github-cta' style='margin: 1.5rem 0;'>
<a href='https://github.com/poli-international/touch-up-timeline'
target='_blank' rel='noopener noreferrer' class='btn-github'
style='display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: #24292e; color: #ffffff; border-radius: 6px; text-decoration: none; font-weight: 500;'>
<svg width='20' height='20' viewBox='0 0 16 16' fill='currentColor'>
<path d='M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z'/>
</svg>
<span>View on GitHub</span>
</a>
</div>
<!-- GitHub Stats -->
<div class='github-stats' style='display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0;'>
<img src='https://img.shields.io/github/stars/poli-international/touch-up-timeline?style=social' alt='Stars' loading='lazy'>
<img src='https://img.shields.io/github/last-commit/poli-international/touch-up-timeline' alt='Last commit' loading='lazy'>
</div>
<p class="tool-subtitle">Track healing progress • Plan touch-up sessions • Professional maintenance schedule</p>
</div>
</section>
<div class="touch-up-timeline">
<!-- STANDARD HEADER (SKILL.md compliant) -->
<header class="touch-up-timeline__header">
<div class="touch-up-timeline__header-content">
<div class="touch-up-timeline__title-group">
<h2 class="touch-up-timeline__header-title">Tattoo Touch-Up & Maintenance Timeline Calculator</h2>
<p class="touch-up-timeline__header-subtitle">
Predict when your tattoo needs touch-ups, understand fading timelines, and plan for lifetime tattoo care
</p>
</div>
<div class="touch-up-timeline__header-buttons">
<button id="embedBtn" class="touch-up-timeline__embed-button">
<span class="embed-icon">⚡</span>
<span class="embed-text">Free Embed</span>
</button>
<button id="darkModeToggle" class="touch-up-timeline__dark-mode-toggle">
<span class="dark-mode-icon">◐</span>
</button>
</div>
</div>
</header>
<!-- MAIN TOOL -->
<main class="touch-up-timeline__main">
<div class="touch-up-timeline__container">
<!-- QUICK START TABS -->
<section class="touch-up-timeline__tabs">
<button class="touch-up-timeline__tab touch-up-timeline__tab--active" data-tab="calculator">
⏱️ Touch-Up Calculator
</button>
<button class="touch-up-timeline__tab" data-tab="fading">
📉 Fading Predictor
</button>
<button class="touch-up-timeline__tab" data-tab="maintenance">
📋 Maintenance Plan
</button>
<button class="touch-up-timeline__tab" data-tab="cost">
💰 Lifetime Costs
</button>
<button class="touch-up-timeline__tab" data-tab="readiness">
✅ Touch-Up Readiness
</button>
</section>
<!-- TAB 1: TOUCH-UP TIMELINE CALCULATOR -->
<div id="tab-calculator" class="touch-up-timeline__tab-content touch-up-timeline__tab-content--active">
<section class="touch-up-timeline__section">
<h2 class="touch-up-timeline__section-title">
<span class="touch-up-timeline__step-number">1</span>
Calculate Your Touch-Up Timeline
</h2>
<p class="touch-up-timeline__section-subtitle">
Enter your tattoo details to predict when you'll need a touch-up
</p>
<form id="touchUpForm" class="touch-up-timeline__form">
<div class="touch-up-timeline__form-grid">
<!-- Tattoo Age -->
<div class="touch-up-timeline__form-group">
<label class="touch-up-timeline__label">
<span class="touch-up-timeline__label-text">Tattoo Age</span>
<span class="touch-up-timeline__label-help">How long since you got it?</span>
</label>
<div class="touch-up-timeline__input-with-unit">
<input type="number" id="tattooAge" class="touch-up-timeline__input" step="0.5" min="0" max="50" value="0" required>
<span class="touch-up-timeline__unit">years</span>
</div>
</div>
<!-- Tattoo Style -->
<div class="touch-up-timeline__form-group">
<label class="touch-up-timeline__label">
<span class="touch-up-timeline__label-text">Tattoo Style</span>
</label>
<select id="tattooStyle" class="touch-up-timeline__select" required>
<option value="">Select style...</option>
<option value="black_and_grey">Black & Grey</option>
<option value="traditional_color">Traditional / American Traditional</option>
<option value="color_realism">Color Realism</option>
<option value="black_realism">Black & Grey Realism</option>
<option value="watercolor">Watercolor</option>
<option value="fine_line">Fine Line / Single Needle</option>
<option value="tribal_blackwork">Tribal / Solid Blackwork</option>
<option value="script_text">Script / Lettering</option>
</select>
</div>
<!-- Colors Used -->
<div class="touch-up-timeline__form-group touch-up-timeline__form-group--full">
<label class="touch-up-timeline__label">
<span class="touch-up-timeline__label-text">Colors Used</span>
<span class="touch-up-timeline__label-help">Select all that apply</span>
</label>
<div class="touch-up-timeline__checkbox-grid">
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="colors" value="black">
<span class="touch-up-timeline__checkbox-label">
<span class="touch-up-timeline__color-swatch" style="background: #000;"></span>
Black
</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="colors" value="dark_blue">
<span class="touch-up-timeline__checkbox-label">
<span class="touch-up-timeline__color-swatch" style="background: #1E40AF;"></span>
Dark Blue
</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="colors" value="purple">
<span class="touch-up-timeline__checkbox-label">
<span class="touch-up-timeline__color-swatch" style="background: #7C3AED;"></span>
Purple
</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="colors" value="red">
<span class="touch-up-timeline__checkbox-label">
<span class="touch-up-timeline__color-swatch" style="background: #DC2626;"></span>
Red
</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="colors" value="green">
<span class="touch-up-timeline__checkbox-label">
<span class="touch-up-timeline__color-swatch" style="background: #10B981;"></span>
Green
</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="colors" value="yellow">
<span class="touch-up-timeline__checkbox-label">
<span class="touch-up-timeline__color-swatch" style="background: #FCD34D;"></span>
Yellow
</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="colors" value="orange">
<span class="touch-up-timeline__checkbox-label">
<span class="touch-up-timeline__color-swatch" style="background: #F97316;"></span>
Orange
</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="colors" value="pink_light_colors">
<span class="touch-up-timeline__checkbox-label">
<span class="touch-up-timeline__color-swatch" style="background: #FCA5A5;"></span>
Pink/Light
</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="colors" value="white">
<span class="touch-up-timeline__checkbox-label">
<span class="touch-up-timeline__color-swatch" style="background: #FFF; border: 1px solid #ccc;"></span>
White
</span>
</label>
</div>
</div>
<!-- Body Location -->
<div class="touch-up-timeline__form-group">
<label class="touch-up-timeline__label">
<span class="touch-up-timeline__label-text">Body Location</span>
</label>
<select id="bodyLocation" class="touch-up-timeline__select" required>
<option value="">Select location...</option>
<option value="covered_areas">Covered Areas (Torso, Upper Arms, Thighs)</option>
<option value="occasionally_exposed">Occasionally Exposed (Forearms, Lower Legs)</option>
<option value="frequently_exposed">Frequently Exposed (Hands, Face, Neck)</option>
<option value="high_friction">High Friction (Feet, Hands, Fingers)</option>
</select>
</div>
<!-- Sun Exposure -->
<div class="touch-up-timeline__form-group">
<label class="touch-up-timeline__label">
<span class="touch-up-timeline__label-text">Sun Exposure Level</span>
</label>
<div class="touch-up-timeline__radio-group">
<label class="touch-up-timeline__radio">
<input type="radio" name="sunExposure" value="low" checked>
<span class="touch-up-timeline__radio-label">
<strong>Low</strong> - Usually covered
</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="sunExposure" value="medium">
<span class="touch-up-timeline__radio-label">
<strong>Medium</strong> - Sometimes exposed
</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="sunExposure" value="high">
<span class="touch-up-timeline__radio-label">
<strong>High</strong> - Frequently in sun
</span>
</label>
</div>
</div>
<!-- Care Level -->
<div class="touch-up-timeline__form-group">
<label class="touch-up-timeline__label">
<span class="touch-up-timeline__label-text">Care Level</span>
<span class="touch-up-timeline__label-help">How well do you maintain it?</span>
</label>
<div class="touch-up-timeline__radio-group">
<label class="touch-up-timeline__radio">
<input type="radio" name="careLevel" value="excellent">
<span class="touch-up-timeline__radio-label">
<strong>Excellent</strong> - Daily moisturizer, always SPF
</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="careLevel" value="good" checked>
<span class="touch-up-timeline__radio-label">
<strong>Good</strong> - Regular moisturizer, SPF when exposed
</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="careLevel" value="fair">
<span class="touch-up-timeline__radio-label">
<strong>Fair</strong> - Occasional moisturizer, some SPF
</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="careLevel" value="poor">
<span class="touch-up-timeline__radio-label">
<strong>Poor</strong> - Minimal care, no SPF
</span>
</label>
</div>
</div>
</div>
<button type="submit" class="touch-up-timeline__btn touch-up-timeline__btn--primary">
⏱️ Calculate Touch-Up Timeline
</button>
</form>
<!-- Results Section -->
<div id="touchUpResults" class="touch-up-timeline__results" style="display: none;">
<h3 class="touch-up-timeline__results-title">Your Touch-Up Timeline</h3>
<!-- Urgency Indicator -->
<div id="urgencyIndicator" class="touch-up-timeline__urgency-card">
<div class="touch-up-timeline__urgency-icon">⏰</div>
<div class="touch-up-timeline__urgency-content">
<h4 id="urgencyLevel" class="touch-up-timeline__urgency-level"></h4>
<p id="urgencyMessage" class="touch-up-timeline__urgency-message"></p>
</div>
</div>
<!-- Timeline Stats -->
<div class="touch-up-timeline__results-grid">
<div class="touch-up-timeline__result-card">
<div class="touch-up-timeline__result-icon">📅</div>
<div class="touch-up-timeline__result-label">Current Age</div>
</div>
<div class="touch-up-timeline__result-card touch-up-timeline__result-card--highlight">
<div class="touch-up-timeline__result-icon">⏱️</div>
<div class="touch-up-timeline__result-label">Touch-Up Recommended In</div>
</div>
<div class="touch-up-timeline__result-card">
<div class="touch-up-timeline__result-icon">📊</div>
<div class="touch-up-timeline__result-label">Fading Progress</div>
</div>
</div>
<!-- Fading Order -->
<div class="touch-up-timeline__fading-order">
<h4 class="touch-up-timeline__subsection-title">What Fades First</h4>
</div>
<!-- Recommendations -->
<div class="touch-up-timeline__recommendations">
<h4 class="touch-up-timeline__subsection-title">Recommendations</h4>
</div>
</div>
</section>
</div>
<!-- TAB 2: FADING PREDICTOR -->
<div id="tab-fading" class="touch-up-timeline__tab-content">
<section class="touch-up-timeline__section">
<h2 class="touch-up-timeline__section-title">
<span class="touch-up-timeline__step-number">2</span>
Fading Prediction Timeline
</h2>
<p class="touch-up-timeline__section-subtitle">
See how your tattoo will age over the next 10-15 years
</p>
<div class="touch-up-timeline__info-card">
<p>📊 Complete the Touch-Up Calculator first to see your personalized fading timeline.</p>
</div>
<div id="fadingPrediction" class="touch-up-timeline__prediction" style="display: none;">
<div class="touch-up-timeline__timeline">
<h4 class="touch-up-timeline__subsection-title">Your Tattoo Over Time</h4>
</div>
<div class="touch-up-timeline__comparison">
<h4 class="touch-up-timeline__subsection-title">With Care vs. Without Care</h4>
</div>
</div>
</section>
</div>
<!-- TAB 3: MAINTENANCE PLANNER -->
<div id="tab-maintenance" class="touch-up-timeline__tab-content">
<section class="touch-up-timeline__section">
<h2 class="touch-up-timeline__section-title">
<span class="touch-up-timeline__step-number">3</span>
Tattoo Maintenance Schedule
</h2>
<p class="touch-up-timeline__section-subtitle">
Your personalized care routine to maximize tattoo longevity
</p>
<div class="touch-up-timeline__maintenance-schedule">
<!-- Daily Care -->
<div class="touch-up-timeline__maintenance-card">
<div class="touch-up-timeline__maintenance-header">
<span class="touch-up-timeline__maintenance-icon">☀️</span>
<h3 class="touch-up-timeline__maintenance-title">Daily Care</h3>
</div>
<ul class="touch-up-timeline__maintenance-list">
<li>Moisturize with fragrance-free lotion (morning & night)</li>
<li>Apply SPF 50+ sunscreen when exposed to sun</li>
<li>Keep tattoo clean with gentle soap</li>
<li>Stay hydrated (helps skin health)</li>
</ul>
</div>
<!-- Weekly Care -->
<div class="touch-up-timeline__maintenance-card">
<div class="touch-up-timeline__maintenance-header">
<span class="touch-up-timeline__maintenance-icon">📆</span>
<h3 class="touch-up-timeline__maintenance-title">Weekly Care</h3>
</div>
<ul class="touch-up-timeline__maintenance-list">
<li>Deep moisturizing treatment</li>
<li>Inspect for changes or fading</li>
<li>Check for skin irritation</li>
<li>Exfoliate gently around (not on) tattoo</li>
</ul>
</div>
<!-- Monthly Care -->
<div class="touch-up-timeline__maintenance-card">
<div class="touch-up-timeline__maintenance-header">
<span class="touch-up-timeline__maintenance-icon">📅</span>
<h3 class="touch-up-timeline__maintenance-title">Monthly Care</h3>
</div>
<ul class="touch-up-timeline__maintenance-list">
<li>Take photo to track changes over time</li>
<li>Detailed inspection for fading</li>
<li>Assess if moisturizing routine is working</li>
<li>Check for any line spreading or blurring</li>
</ul>
</div>
<!-- Annual Care -->
<div class="touch-up-timeline__maintenance-card">
<div class="touch-up-timeline__maintenance-header">
<span class="touch-up-timeline__maintenance-icon">🗓️</span>
<h3 class="touch-up-timeline__maintenance-title">Annual Care</h3>
</div>
<ul class="touch-up-timeline__maintenance-list">
<li>Professional assessment by tattoo artist</li>
<li>Evaluate if touch-up needed</li>
<li>Compare to previous years' photos</li>
<li>Plan and budget for touch-ups if needed</li>
</ul>
</div>
</div>
<!-- Sun Protection Calculator -->
<div class="touch-up-timeline__sun-damage">
<h4 class="touch-up-timeline__subsection-title">Sun Protection Impact Calculator</h4>
<form id="sunDamageForm" class="touch-up-timeline__mini-form">
<div class="touch-up-timeline__form-row">
<div class="touch-up-timeline__form-group">
<label class="touch-up-timeline__label">Sun Hours Per Week</label>
<input type="number" id="sunHours" class="touch-up-timeline__input" min="0" max="100" value="5" step="1">
</div>
<div class="touch-up-timeline__form-group">
<label class="touch-up-timeline__label">SPF Usage</label>
<select id="spfUsage" class="touch-up-timeline__select">
<option value="never">Never use SPF</option>
<option value="sometimes">Sometimes use SPF</option>
<option value="always">Always use SPF 50+</option>
</select>
</div>
<button type="button" id="calculateSun" class="touch-up-timeline__btn touch-up-timeline__btn--secondary">
☀️ Calculate Impact
</button>
</div>
</form>
<div id="sunDamageResults" class="touch-up-timeline__sun-results" style="display: none;">
<div class="touch-up-timeline__sun-stats">
<div class="touch-up-timeline__sun-stat">
<div class="touch-up-timeline__sun-stat-label">Fading Acceleration</div>
</div>
<div class="touch-up-timeline__sun-stat">
<div class="touch-up-timeline__sun-stat-label">Years of Life Lost</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- TAB 4: LIFETIME COST PLANNER -->
<div id="tab-cost" class="touch-up-timeline__tab-content">
<section class="touch-up-timeline__section">
<h2 class="touch-up-timeline__section-title">
<span class="touch-up-timeline__step-number">4</span>
Lifetime Cost Calculator
</h2>
<p class="touch-up-timeline__section-subtitle">
Budget for touch-ups over your tattoo's lifetime
</p>
<form id="costForm" class="touch-up-timeline__form">
<div class="touch-up-timeline__form-grid">
<div class="touch-up-timeline__form-group">
<label class="touch-up-timeline__label">Initial Tattoo Cost</label>
<div class="touch-up-timeline__input-with-unit">
<span class="touch-up-timeline__unit-prefix">$</span>
<input type="number" id="initialCost" class="touch-up-timeline__input" min="0" step="50" value="500" required>
</div>
</div>
<div class="touch-up-timeline__form-group">
<label class="touch-up-timeline__label">Expected Touch-Up Frequency</label>
<div class="touch-up-timeline__input-with-unit">
<input type="number" id="touchUpFrequency" class="touch-up-timeline__input" min="1" max="20" step="1" value="8">
<span class="touch-up-timeline__unit">years</span>
</div>
</div>
</div>
<button type="submit" class="touch-up-timeline__btn touch-up-timeline__btn--primary">
💰 Calculate Lifetime Costs
</button>
</form>
<div id="costResults" class="touch-up-timeline__results" style="display: none;">
<h3 class="touch-up-timeline__results-title">30-Year Cost Projection</h3>
<div class="touch-up-timeline__cost-summary">
<div class="touch-up-timeline__cost-card touch-up-timeline__cost-card--total">
<div class="touch-up-timeline__cost-label">Total Lifetime Investment</div>
<div class="touch-up-timeline__cost-breakdown">
<span id="initialCostDisplay"></span> initial + <span id="touchUpCostDisplay"></span> touch-ups
</div>
</div>
<div class="touch-up-timeline__cost-grid">
<div class="touch-up-timeline__cost-stat">
<div class="touch-up-timeline__cost-stat-label">Annual Cost</div>
</div>
<div class="touch-up-timeline__cost-stat">
<div class="touch-up-timeline__cost-stat-label">Number of Touch-Ups</div>
</div>
<div class="touch-up-timeline__cost-stat">
<div class="touch-up-timeline__cost-stat-label">Cost Per Touch-Up</div>
</div>
</div>
</div>
<div class="touch-up-timeline__cost-comparison">
<h4 class="touch-up-timeline__subsection-title">Good Care vs. Poor Care</h4>
<div class="touch-up-timeline__comparison-cards">
<div class="touch-up-timeline__comparison-card touch-up-timeline__comparison-card--good">
<h5>With Excellent Care</h5>
</div>
<div class="touch-up-timeline__comparison-card touch-up-timeline__comparison-card--poor">
<h5>With Poor Care</h5>
</div>
</div>
</div>
<div class="touch-up-timeline__budget-tip">
<h4 class="touch-up-timeline__subsection-title">💡 Budget Planning Tip</h4>
<p id="budgetRecommendation"></p>
</div>
</div>
</section>
</div>
<!-- TAB 5: TOUCH-UP READINESS CHECKER -->
<div id="tab-readiness" class="touch-up-timeline__tab-content">
<section class="touch-up-timeline__section">
<h2 class="touch-up-timeline__section-title">
<span class="touch-up-timeline__step-number">5</span>
Is Your Tattoo Ready for Touch-Up?
</h2>
<p class="touch-up-timeline__section-subtitle">
Assess your tattoo's current condition
</p>
<form id="readinessForm" class="touch-up-timeline__form">
<div class="touch-up-timeline__readiness-questions">
<!-- Fading Level -->
<div class="touch-up-timeline__question">
<label class="touch-up-timeline__question-label">Fading Level</label>
<div class="touch-up-timeline__radio-group">
<label class="touch-up-timeline__radio">
<input type="radio" name="fadingLevel" value="slight" checked>
<span class="touch-up-timeline__radio-label">Slight - Barely noticeable</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="fadingLevel" value="moderate">
<span class="touch-up-timeline__radio-label">Moderate - Noticeable fading</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="fadingLevel" value="significant">
<span class="touch-up-timeline__radio-label">Significant - Very faded</span>
</label>
</div>
</div>
<!-- Color Loss -->
<div class="touch-up-timeline__question">
<label class="touch-up-timeline__question-label">Which colors have faded most?</label>
<div class="touch-up-timeline__checkbox-group">
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="fadedColors" value="light_colors">
<span class="touch-up-timeline__checkbox-label">Light colors (yellow, pink, white)</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="fadedColors" value="reds_oranges">
<span class="touch-up-timeline__checkbox-label">Reds & oranges</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="fadedColors" value="greens_purples">
<span class="touch-up-timeline__checkbox-label">Greens & purples</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="fadedColors" value="blues">
<span class="touch-up-timeline__checkbox-label">Blues</span>
</label>
<label class="touch-up-timeline__checkbox">
<input type="checkbox" name="fadedColors" value="blacks">
<span class="touch-up-timeline__checkbox-label">Blacks & greys</span>
</label>
</div>
</div>
<!-- Line Blurring -->
<div class="touch-up-timeline__question">
<label class="touch-up-timeline__question-label">Line Blurring</label>
<div class="touch-up-timeline__radio-group">
<label class="touch-up-timeline__radio">
<input type="radio" name="lineBlurring" value="no">
<span class="touch-up-timeline__radio-label">No - Lines still sharp</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="lineBlurring" value="slight">
<span class="touch-up-timeline__radio-label">Slight - Some softening</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="lineBlurring" value="significant">
<span class="touch-up-timeline__radio-label">Significant - Lines blurry/spread</span>
</label>
</div>
</div>
<!-- Detail Loss -->
<div class="touch-up-timeline__question">
<label class="touch-up-timeline__question-label">Fine Detail Loss</label>
<div class="touch-up-timeline__radio-group">
<label class="touch-up-timeline__radio">
<input type="radio" name="detailLoss" value="no">
<span class="touch-up-timeline__radio-label">No - Details intact</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="detailLoss" value="some">
<span class="touch-up-timeline__radio-label">Some - Minor detail loss</span>
</label>
<label class="touch-up-timeline__radio">
<input type="radio" name="detailLoss" value="major">
<span class="touch-up-timeline__radio-label">Major - Details hard to see</span>
</label>
</div>
</div>
</div>
<button type="submit" class="touch-up-timeline__btn touch-up-timeline__btn--primary">
✅ Check Readiness
</button>
</form>
<div id="readinessResults" class="touch-up-timeline__results" style="display: none;">
<h3 class="touch-up-timeline__results-title">Touch-Up Assessment</h3>
<div id="readinessStatus" class="touch-up-timeline__readiness-status">
<!-- Will be populated by JS -->
</div>
<div class="touch-up-timeline__readiness-details">
<h4 class="touch-up-timeline__subsection-title">What Needs Attention</h4>
<ul id="attentionList" class="touch-up-timeline__attention-list"></ul>
</div>
<div class="touch-up-timeline__readiness-action">
<h4 class="touch-up-timeline__subsection-title">Next Steps</h4>
<p id="nextSteps"></p>
</div>
</div>
</section>
</div>
</div>
<!-- Related Tools Section -->
<section class="related-tools-section" style="padding: 2rem 1rem; background: #fff; border-top: 1px solid #eee;">
<div style="max-width: 800px; margin: 0 auto;">
<h3 style="font-size: 1.25rem; margin-bottom: 1rem; color: #1e293b;">Recommended for You</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem;">
<a href="https://poliinternational.com/coverage-calculator/" style="display: block; padding: 1rem; background: #f1f5f9; border-radius: 8px; text-decoration: none; color: #0693e3; font-weight: 500; text-align: center; transition: background 0.2s;">Coverage Calculator</a>
<a href="https://poliinternational.com/ink-mixer/" style="display: block; padding: 1rem; background: #f1f5f9; border-radius: 8px; text-decoration: none; color: #0693e3; font-weight: 500; text-align: center; transition: background 0.2s;">Ink Mixer</a>
<a href="https://poliinternational.com/needle-selector/" style="display: block; padding: 1rem; background: #f1f5f9; border-radius: 8px; text-decoration: none; color: #0693e3; font-weight: 500; text-align: center; transition: background 0.2s;">Needle Selector</a>
</div>
<div style="text-align: center; margin-top: 1.5rem;">
<a href="https://poliinternational.com/tools/" style="color: #64748b; text-decoration: underline; font-size: 0.9rem;">View All 17 Free Tools</a>
</div>
</div>
</section>
<!-- GEO Semantic Block -->
<aside class="geo-summary-block" style="background: #f8fafc; border-left: 4px solid #0693e3; padding: 1.5rem; margin: 2rem 0; font-style: italic; color: #334155; border-radius: 0 8px 8px 0;">
<p style="margin: 0; line-height: 1.6;">Pro Artist Insight: Proper planning is the mark of a master. Integrating precision calculations into your workflow ensures consistent results and high-quality healing for every client. Use this tool to bridge the gap between artistic vision and technical execution.</p>
</aside>
</main>
<!-- COMMUNITY FEEDBACK SECTION (REQUIRED) -->
<section class="community-feedback">
<div class="container">
<div class="feedback-card">
<div class="feedback-header">
<h2 class="feedback-title">💬 Help Us Build Better Tools, Friend!</h2>
<p class="feedback-subtitle">
Hey there, fellow body art enthusiast! Whether you're a professional tattooist, piercer, or someone who loves body art as much as we do – we're all in this together.
Our passion doesn't get much support out there, so let's stick together and build the best tools to help our community thrive!
</p>
<p class="feedback-callout">
<strong>Your feedback matters!</strong> Found something useful? Got ideas for improvements? We're all ears!
Help us make this tool even better for everyone in our body art family.
</p>
</div>
<form class="feedback-form" id="feedbackForm">
<div class="feedback-form-grid">
<div class="form-group">
<label for="userEmail" class="form-label">Your Email (so we can reply!)</label>
<input type="email" id="userEmail" name="userEmail" class="form-input"
placeholder="your.email@example.com" required>
</div>
<div class="form-group">
<label for="userRole" class="form-label">You are a...</label>
<select id="userRole" name="userRole" class="form-select" required>
<option value="">Choose one</option>
<option value="tattoo_artist">Tattoo Artist</option>
<option value="piercer">Professional Piercer</option>
<option value="shop_owner">Shop Owner</option>
<option value="apprentice">Apprentice</option>
<option value="enthusiast">Body Art Enthusiast/Customer</option>
<option value="other">Other</option>
</select>
</div>
</div>
<div class="form-group">
<label for="feedbackText" class="form-label">Share Your Thoughts, Ideas, or Suggestions</label>
<textarea id="feedbackText" name="feedbackText" class="form-textarea"
placeholder="What do you love? What could be better? Any features you'd like to see? We genuinely want to hear from you!"
rows="5" required></textarea>
</div>
<div class="form-actions">
<button type="submit" class="feedback-submit-btn">
<span class="btn-icon">✉️</span>
<span class="btn-text">Send Feedback</span>
</button>
</div>
<!-- Success/Error Messages -->
<div class="feedback-message feedback-message--success" id="feedbackSuccess" style="display: none;">
<strong>🎉 Thank you, friend!</strong> Your feedback has been sent. We'll read it carefully and get back to you soon!
</div>
<div class="feedback-message feedback-message--error" id="feedbackError" style="display: none;">
<strong>😔 Oops!</strong> Something went wrong. Please try again or email us directly at patrick@poli-international.com
</div>
</form>
</div>
</div>
</section>
<!-- EMAIL CAPTURE SECTION -->
<section class="touch-up-timeline__email-section">
<div class="touch-up-timeline__container">
<div class="touch-up-timeline__email-box">
<h2 class="touch-up-timeline__email-title">🔔 Get Notified of New Tools!</h2>
<p class="touch-up-timeline__email-subtitle">Be first to know when we launch new free tools for tattoo professionals.</p>
<form id="footer-email-form" class="touch-up-timeline__email-form" data-location="footer">
<div class="touch-up-timeline__email-input-group">
<input type="email"
id="footer-email-input"
class="touch-up-timeline__email-input"