forked from ganeshkrishnan1/amazon-ppc-ads-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1697 lines (1462 loc) · 57.4 KB
/
index.html
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>
<base href="./">
<!-- Meta Data -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<title>AiHello: Amazon PPC Ads Automation Software</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/fav/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/fav/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/fav/favicon-16x16.png">
<link rel="mask-icon" href="assets/img/fav/safari-pinned-tab.svg" color="#fa7070">
<meta name="msapplication-TileColor" content="#fa7070">
<meta name="theme-color" content="#fa7070">
<meta name="description" content="Amazon PPC Ads Automation Software to help manage your Sponsored Products, Display and Brand ads for FBA sellers and Amazon Ad Agencies">
<meta name="keywords" content="Amazon PPC Ads Software, PPC Automation, Amazon Ads Software, Sponsored Ads Software, Sponsored Display Ads, Sponsored Brands Ads">
<!-- Dependency Styles -->
<!-- Site Stylesheet -->
<!-- <link rel="stylesheet" href="assets/css/styles.pure.css" type="text/css"> -->
<link rel="stylesheet" href="dependencies/bootstrap/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="dependencies/fontawesome/css/all.min.css" type="text/css">
<link rel="stylesheet" href="dependencies/swiper/css/swiper.min.css" type="text/css">
<link rel="stylesheet" href="dependencies/wow/css/animate.css" type="text/css">
<link rel="stylesheet" href="dependencies/magnific-popup/css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="dependencies/components-elegant-icons/css/elegant-icons.min.css" type="text/css">
<link rel="stylesheet" href="dependencies/simple-line-icons/css/simple-line-icons.css" type="text/css">
<!-- Site Stylesheet -->
<link rel="stylesheet" href="assets/css/app.css" type="text/css">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800;900&family=Satisfy&display=swap" rel="stylesheet">
<!-- <script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-PNMF52G');
</script> -->
<!-- End Google Tag Manager -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "AiHello AutoPilot: Amazon PPC Automation Software.",
"applicationCategory": "https://schema.org/SoftwareApplication",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.9",
"ratingCount": "1083"
},
"offers": {
"@type": "AggregateOffer",
"lowPrice": "39.00",
"highPrice": "99.00",
"priceCurrency": "USD"
}
}
</script>
<!-- <script src="https://www.googleoptimize.com/optimize.js?id=GTM-W5V9GVK"></script> -->
<style>
/* @import "lesshat"; */
.ba-slider {
position: relative;
overflow: hidden;
}
.ba-slider img {
width: 100%;
display: block;
}
.resize {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 50%;
overflow: hidden;
}
.handle {
/* Thin line seperator */
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 4px;
margin-left: -2px;
background: rgba(0, 0, 0, .5);
cursor: ew-resize;
}
.handle:after {
/* Big orange knob */
position: absolute;
top: 50%;
width: 64px;
height: 64px;
margin: -32px 0 0 -32px;
content: '\21d4';
color: white;
font-weight: bold;
font-size: 36px;
text-align: center;
line-height: 64px;
background: #ffb800;
/* @orange */
border: 1px solid #e6a600;
/* darken(@orange, 5%) */
border-radius: 50%;
transition: all 0.3s ease;
box-shadow:
0 2px 6px rgba(0, 0, 0, .3),
inset 0 2px 0 rgba(255, 255, 255, .5),
inset 0 60px 50px -30px #ffd466;
/* lighten(@orange, 20%)*/
}
.draggable:after {
width: 48px;
height: 48px;
margin: -24px 0 0 -24px;
line-height: 48px;
font-size: 30px;
}
img.slider {
max-width: none;
height: 100%;
}
</style>
</head>
<body id="home-version-1" class="home-version-4" data-style="default">
<a href="#main_content" data-type="section-switch" class="return-to-top">
<i class="fa fa-chevron-up"></i>
</a>
<div class="page-loader">
<div class="loader">
<!-- Loader -->
<div class="blobs">
<div class="blob-center"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
<div class="blob"></div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feBlend in="SourceGraphic" in2="goo" />
</filter>
</defs>
</svg>
</div>
</div><!-- /.page-loader -->
<div id="main_content">
<header class="site-header header_trans-fixed" data-top="992">
<div class="container">
<div class="header-inner">
<div class="toggle-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<div class="site-mobile-logo">
<a href="index.html" class="logo">
<img src="assets/img/logo.png" alt="AiHello AutoPilot Logo" class="main-logo">
<img src="assets/img/logo.png" alt="AiHello AutoPilot Logo" class="sticky-logo">
</a>
</div>
<nav class="site-nav">
<div class="close-menu">
<span>Close</span>
<i class="ei ei-icon_close"></i>
</div>
<div class="site-logo">
<a href="/" class="logo">
<img src="assets/img/logo.png" alt="aihello amazon ppc autopilot logo"
class="main-logo">
<img src="assets/img/logo.png" alt="aihello amazon ppc services autopilot logo"
class="sticky-logo">
</a>
</div>
<!-- /.site-logo -->
<div class="menu-wrapper" data-top="992">
<ul class="site-main-menu">
<li>
<a href="/">Home</a>
</li>
<li class="menu-item-has-children">
<a target="_blank" href="/resources/">Resources</a>
<ul class="sub-menu">
<li><a target="_blank"
href="/landing/amazon_ppc_automate/autopilot.html">AutoPilot
Documentation</a></li>
<li><a target="_blank" href="/resources/">Blog</a></li>
<li><a target="_blank"
href="https://www.youtube.com/channel/UCVASNUlKjKHGhOhu8SXxB5Q">YouTube
Channel</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Features</a>
<ul class="sub-menu">
<li><a target="_blank"
href="/landing/ads_campaign_automate/ads_automate.html">AutoPilot</a>
</li>
<li class="menu-item-has-children">
<a href="./pages/app-store">AiHello Apps</a>
<ul class="sub-menu">
<li><a target="_blank"
href="https://sellercentral.amazon.com/apps/store/dp/amzn1.sellerapps.app.5d5ca2a9-e069-4ec1-9dd7-ea35b0550d4c">AiHello
Amazon App US</a></li>
<li><a target="_blank"
href="https://sellercentral.amazon.co.uk/apps/store/dp/amzn1.sellerapps.app.5d5ca2a9-e069-4ec1-9dd7-ea35b0550d4c">AiHello
Amazon App Europe</a></li>
<li><a target="_blank"
href="https://sellercentral.amazon.sg/apps/store/dp/amzn1.sellerapps.app.5d5ca2a9-e069-4ec1-9dd7-ea35b0550d4c">AiHello
Amazon App Far East</a></li>
<li><a target="_blank"
href="https://sellercentral.amazon.com/apps/store/dp/amzn1.sellerapps.app.928dbbf8-4345-4200-b47b-c8db09d40496">AiHello
Amazon Smart Fulfillment</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="./pages/contact-us">Contact</a></li>
<li><a href="/account/login">Login</a></li>
</ul>
<div class="nav-right">
<!-- <a href="/account/login" >Login</a> -->
<a href="/account/register" class="nav-btn">Register</a>
</div>
</div>
<!-- /.menu-wrapper -->
</nav><!-- /.site-nav -->
</div><!-- /.header-inner -->
</div><!-- /.container -->
</header><!-- /.site-header -->
<section class="banner banner-one">
<div class="circle-shape" data-parallax='{"y" : 230}'>
<img src="media/banner/circle-shape.png" alt="ppc automation circle background">
</div>
<div class="container">
<div class="banner-content-wrap">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="banner-content">
<h1 class="banner-title wow pixFadeUp" data-wow-delay="0.3s">
Accelerate Growth<br>
of Your <br> <span>
E-commerce Brand</span>
</h1>
<p class="description wow pixFadeUp" data-wow-delay="0.5s">
Optimize your Amazon PPC campaigns with AiHello AutoPilot Full Automation
</p>
<a href="/account/register" class="pxs-btn banner-btn wow pixFadeUp"
data-wow-delay="0.6s">Get Started</a>
</div><!-- /.banner-content -->
</div><!-- /.col-lg-6 -->
<div class="col-lg-6">
<div class="about-video-wrapper">
<div class="popup-videos wow pixFadeRight">
<div class="video-thumbnail">
<img src="media/banner/homebanner.jpg" alt="Amazon PPC Ads Automation Software">
</div>
<!-- /.video-thumbnail -->
<a href="https://www.youtube.com/watch?v=yEIb5C8vYv8"
class="play-btn popup-video large">
<i class="ei ei-arrow_triangle-right"></i></a>
</div>
<!-- /.popup-video -->
</div>
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
</div><!-- /.banner-content-wrap -->
</div><!-- /.container -->
<div class="bg-shape">
<img src="media/banner/shape-bg.png" alt="ppc software tool background image">
</div>
</section><!-- /.banner banner-one -->
<!--===========================-->
<!--= Feature =-->
<!--===========================-->
<section class="featured">
<div class="container">
<div class="section-title text-center wow pixFade">
<h3 class="sub-title">For Sellers, Private Labels/Brands & Agencies</h3>
<h2 class="title">Zero Configuration, Full Automation. Simply More Sales</h2>
</div><!-- /.section-title -->
<div class="row">
<div class="col-md-4">
<div class="saaspik-icon-box-wrapper style-one wow pixFadeLeft" data-wow-delay="0.3s">
<div class="saaspik-icon-box-icon">
<img src="media/home/data_driven_optimization.png"
alt="Data Driven Optimzation For Amazon PPC Services Revenue Growth">
</div>
<div class="pixsass-icon-box-content">
<h3 class="pixsass-icon-box-title">Data Driven<br> Optimization</h3>
</div>
</div><!-- /.pixsass-box style-one -->
</div><!-- /.col-md-4 -->
<div class="col-md-4">
<div class="saaspik-icon-box-wrapper style-one wow pixFadeLeft" data-wow-delay="0.5s">
<div class="saaspik-icon-box-icon">
<img src="media/home/amazon_ppc_full_automation.png"
alt="Full First Class Automation For Amazon PPC To Reduce ACoS">
</div>
<div class="pixsass-icon-box-content">
<h3 class="pixsass-icon-box-title">First Class <br>Automation</h3>
</div>
</div><!-- /.pixsass-box style-one -->
</div><!-- /.col-md-4 -->
<div class="col-md-4">
<div class="saaspik-icon-box-wrapper style-one wow pixFadeLeft" data-wow-delay="0.7s">
<div class="saaspik-icon-box-icon">
<img src="media/home/amzon_ppc_global_markets.png"
alt="Global Amazon Marketplaces Including US, Canada, Germany, Japan, Australia">
</div>
<div class="pixsass-icon-box-content">
<h3 class="pixsass-icon-box-title">Global Marketplaces <br>Supported</h3>
</div>
</div><!-- /.pixsass-box style-one -->
</div><!-- /.col-md-4 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.featured -->
<section class="editor-design">
<div class="container">
<div class="row">
<div class="editure-feature-image wow pixFadeRight">
<div class="image-one" data-parallax='{"x" : 30}'>
<img src="media/home/amazon_advertising_ppc_services_acos_sales_revenues_growth.jpg"
class="wow pixFadeRight" data-wow-delay="0.3s"
alt="Amazon AMS Ads Services For Sales Growth and reduce ACoS">
</div>
<div class="image-two">
<div class="image-two-inner" data-parallax='{"x" : -30}'>
<img src="media/home/amazon_sponsored_products_ams_ppc_solution.jpg"
class="wow pixFadeLeft" data-wow-delay="0.5s"
alt="Amazon Sponsored Products PPC Solution Automation Visual Chart Logs">
</div>
</div>
</div>
<div class="col-lg-6 offset-lg-6">
<div class="editor-content">
<div class="section-title style-two">
<h2 class="title wow pixFadeUp" data-wow-delay="0.3s">
Automate Amazon PPC <br />
For Your Business
</h2>
<p class="wow pixFadeUp" data-wow-delay="0.5s">
Put your business on cruise control.
</p>
</div>
<div class="description wow pixFadeUp" data-wow-delay="0.7s">
<p>
Amazon Ads Automation to help grow your revenues, reduce work hours spent on ads
management and decrease your ad costs.
Take complete control of your e-commerce marketing on Amazon.
</p>
<a href="/account/register" class="pix-btn wow pixFadeUp" data-wow-delay="0.9s">Get
Started</a>
</div>
</div><!-- /.editor-content -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
<div class="shape-bg">
<img src="media/background/shape_bg.png" class="wow fadeInLeft" alt="amazon sponsored ads background image">
</div>
</section><!-- /.editor-design -->
<section class="genera-informes">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="slogan" style="">
<h2 class="text-center">Amazon PPC Automation
<strong>Simplified</strong>
</h2>
</div>
</div>
<div class="col-6">
<h3>Without AiHello </h3>
</div>
<div class="col-6">
<h3>With AiHello </h3>
</div>
<div class="col-md-12">
<div class="ba-slider">
<img src="https://i.imgur.com/eNPOUVc.jpg" class="slider" alt="With AiHello PPC Automation">
<div class="resize">
<img src="https://i.imgur.com/vxnFUKe.jpg" class="slider"
alt="Other Software Automation">
</div>
<span class="handle"></span>
</div>
</div>
</div><!-- /.row -->
</div><!-- /.container -->
<div class="shape-bg">
<img src="media/background/shape.png" class="wow fadeInRight" alt="amazon ppc agency software for sponsored products">
</div>
</section>
<section class="revolutionize">
<div class="bg-angle"></div>
<div class="container">
<div class="section-title dark-title text-center">
<h3 class="sub-title wow pixFadeUp">AiHello AutoPilot</h3>
<h2 class="title wow pixFadeUp" data-wow-delay="0.3s">
Automation to Increase Sales and Reduce Ad costs
</h2>
</div>
<div id="pix-tabs" class="wow pixFadeUp" data-wow-delay="0.5s">
<ul id="pix-tabs-nav">
<li><a href="#tab1">Automate Amazon Ads </a></li>
<li><a href="#tab2">Watch it in action </a></li>
<li><a href="#tab3">Comprehensive Reports</a></li>
<li><a href="#tab4">All Amazon Countries Supported</a></li>
</ul>
<div id="pix-tabs-content">
<div id="tab1" class="content">
<img src="https://i.imgur.com/Ds3RgP2.jpg" alt="Amazon PPC ads strategy to automated ads">
<div class="shape-shadow"></div>
</div>
<div id="tab2" class="content">
<img src="https://i.imgur.com/Fk3KTRb.jpg" alt="amazon ppc management in action for sponsored display">
<div class="shape-shadow"></div>
</div>
<div id="tab3" class="content">
<img src="https://i.imgur.com/jfMmPFK.jpg" alt="ppc automation software for sponsored brands and videos">
<div class="shape-shadow"></div>
</div>
<div id="tab4" class="content">
<img src="https://i.imgur.com/q6e9Pxl.jpg" alt="amazon marketing service for ads and amazon acos optimization">
<div class="shape-shadow"></div>
</div>
</div> <!-- tabs-content -->
</div> <!-- Tabs -->
</div><!-- /.container -->
</section><!-- /.revolutionize -->
<!--===========================-->
<!--= Service =-->
<!--===========================-->
<section class="featured-two">
<div class="container">
<div class="section-title text-center">
<h3 class="sub-title wow pixFadeUp">Supercharge your Amazon Sales </h3>
<h2 class="title wow pixFadeUp" data-wow-delay="0.2s">More Features To Help You Scale Up</h2>
</div><!-- /.section-title -->
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="saaspik-icon-box-wrapper style-two wow pixFadeRight" data-wow-delay="0.4s">
<div class="saaspik-icon-box-icon">
<img src="media/feature/ppc_automation_save_time.png" alt="save time managing amazon ppc ads">
</div>
<div class="pixsass-icon-box-content">
<h3 class="pixsass-icon-box-title">Save Time </h3>
<p>
Get up and running with one-touch full PPC automation in less than 3 minutes.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="saaspik-icon-box-wrapper style-two wow pixFadeRight" data-wow-delay="0.5s">
<div class="saaspik-icon-box-icon">
<img src="media/feature/seller_tool_increase_revenues.png" alt="increase revenues by automating ppc">
</div>
<div class="pixsass-icon-box-content">
<h3 class="pixsass-icon-box-title">Increase sales and revenues</h3>
<p>
24x7 Keywords Automation. Automatically add competitor keywords. Automated placement
boosts.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="saaspik-icon-box-wrapper style-two wow pixFadeRight" data-wow-delay="0.6s">
<div class="saaspik-icon-box-icon">
<img src="media/feature/amazon_reduce_acos_software.png" alt="reduce ACOS on Amazon Ads">
</div>
<div class="pixsass-icon-box-content">
<h3 class="pixsass-icon-box-title"> Save costs </h3>
<p>
Amazon PPC Automation software to reduce your Amazon Ad Spend ACOS significantly.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="saaspik-icon-box-wrapper style-two wow pixFadeRight" data-wow-delay="0.7s">
<div class="saaspik-icon-box-icon">
<img src="media/feature/automated_dayparting.png" alt="automatically increase and decrease bids by peak and off peak times">
</div>
<div class="pixsass-icon-box-content">
<h3 class="pixsass-icon-box-title"> Automated Day-parting </h3>
<p>
Automatically reduce bids during off-peak hours and boost bids during peak times.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="saaspik-icon-box-wrapper style-two wow pixFadeRight" data-wow-delay="0.8s">
<div class="saaspik-icon-box-icon">
<img src="media/feature/visualize_ai_bids_optimization.png" alt="visually analyze AI actions and recommendations">
</div>
<div class="pixsass-icon-box-content">
<h3 class="pixsass-icon-box-title">Visualize changes </h3>
<p>
Autopilot logs and charts to help you see how our AI is optimizing bids and adding keywords.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="saaspik-icon-box-wrapper style-two wow pixFadeRight" data-wow-delay="0.9s">
<div class="saaspik-icon-box-icon">
<img src="media/feature/effortless_ppc_amazon_software.png" alt="one touch PPC automation for efortless amazon seller tool">
</div>
<div class="pixsass-icon-box-content">
<h3 class="pixsass-icon-box-title">Effortless </h3>
<p>
Bulk create campaigns. Reduce workload by 99%. Handles all languages for all marketplaces automatically.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="testimonials swiper-init">
<div class="container">
<div class="section-title text-center">
<h3 class="sub-title wow pixFadeUp">Testimonial</h3>
<h2 class="title wow pixFadeUp" data-wow-delay="0.3s">What our clients say about us</h2>
</div>
<div class="testimonial-wrapper wow pixFadeUp" data-wow-delay="0.5s">
<div class="swiper-container" id="testimonial" data-speed="700" data-autoplay="5000">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial">
<div class="single-bio-thumb">
<img src="media/testimonial/shoes.png" alt="testimonial to reduce amazon acos and amazon marketing agency">
</div>
<div class="testimonial-content">
<p>"I just didn't have enough time to manage my amazon ppc ads everyday. With
growing number of skus even an ad agency would find it
impossible to optimize our thousands of ad groups and thousands of keywords.
AiHello AutoPilot made is all possible and I am a big believer in automation
now "</p>
</div>
<div class="bio-info">
<h3 class="name">Michelle K. </h3>
<span class="job">Sells shoes on Shopify and Amazon in the US + Canada</span>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial">
<div class="single-bio-thumb">
<img src="media/testimonial/decor.png" alt="amazon advertising testimonial for automating ads and reduce acos">
</div>
<div class="testimonial-content">
<p>"To say that we are happy is an understatement! I set my campaigns on
AutoPilot
and I get daily reports on how it's performing via my email. Now I am focus
on real business issues instead of the mind numbing, boring Amazon PPC tasks"</p>
</div>
<div class="bio-info">
<h3 class="name">Peter G.</h3>
<span class="job">Sells home decor on Amazon in the US</span>
</div>
<!-- /.bio-info -->
</div>
<!-- /.testimonial -->
</div>
<div class="swiper-slide">
<div class="testimonial">
<div class="single-bio-thumb">
<img src="media/testimonial/apparel.png" alt="amazon ads testimonial for high ctr and high cvr">
</div>
<!-- /.single-bio-thumb -->
<div class="testimonial-content">
<p>"Apparel is fast moving, high turnover inventory and we have to be ahead of
our competitors to rank well and sell well.
After losing a significant chunk of profits and failed ventures with Ad
Agencies, we turned to AiHello for PPC Automation.
And here we are: Acos within target, 3x revenues and 15% lower ACoS"</p>
</div>
<!-- /.testimonial-content -->
<div class="bio-info">
<h3 class="name">Jen T.</h3>
<span class="job">Sells apparel on Amazon + Woocommerce in Europe</span>
</div>
<!-- /.bio-info -->
</div>
</div>
</div><!-- /.swiper-wrapper -->
</div><!-- /.swiper-container -->
<div class="shape-shadow"></div>
<div class="slider-nav wow pixFadeUp" data-wow-delay="0.3s">
<div id="slide-prev" class="swiper-button-prev">
<i class="ei ei-arrow_left"></i>
</div>
<div id="slide-next" class=" swiper-button-next">
<i class="ei ei-arrow_right"></i>
</div>
</div>
</div>
<!-- /.testimonial-wrapper -->
</div>
<!-- /.container -->
<div class="scroll-circle wow pixFadeDown">
<img src="media/background/circle9.png" data-parallax='{"y" : 250}' alt="amazon sponsored products display brands ads background">
</div>
</section>
<section class="pricing">
<div class="container">
<div class="section-title text-center">
<h3 class="sub-title wow pixFadeUp">Pricing Plan
<select id="currency" style="width:10%">
<option value="USD" selected> $ USD</option>
<option value="CAD"> $ CAD</option>
<option value="GBP"> £ GBP</option>
<option value="MXN"> $ MXN</option>
<option value="INR"> ₹ INR</option>
<option value="EUR"> € EUR</option>
<option value="AED"> د.إ AED</option>
</select></h3>
<h2 class="title wow pixFadeUp" data-wow-delay="0.3s">
Free Trial. No Payment Required.
</h2>
</div>
<nav class="pricing-tab wow pixFadeUp" data-wow-delay="0.4s">
<span class="tab-btn monthly_tab_title">
Monthly
</span>
<span class="pricing-tab-switcher"></span>
<span class="tab-btn annual_tab_title">
Annual
</span>
</nav>
<div class="row advanced-pricing-table no-gutters wow pixFadeUp" data-wow-delay="0.5s">
<div class="col-lg-4">
<div class="pricing-table br-left">
<div class="pricing-header pricing-amount">
<div class="annual_price">
<h2 class="price" id="basicpricean">$0</h2>
</div>
<!-- /.annual_price -->
<div class="monthly_price">
<h2 class="price" id="basicpricemon">$0</h2>
</div>
<!-- /.monthly_price -->
<h3 class="price-title">BASICS</h3>
<p>Pay only for usage. For Startups.</p>
</div>
<!-- /.pricing-header -->
<ul class="price-feture">
<li class="have">4.5% of ad revenues generated by AutoPilot</li>
<li class="have">Maximum Charge of <span class="maxcap">$799 </span> per month</li>
<li class="have">Feedback request Emails</li>
<!-- <li class="have">Instant access to 3PL warehouses</li> -->
<li class="have">Sponsored Products</li>
<li class="not">Automated Keyword Miner</li>
<li class="not">Fully Automated Dayparting</li>
<li class="have">Shopify, Woocommerce Integration
<li>
<li class="have">Self Support & <br> Email Support</li>
</ul>
<div class="action text-center">
<a href="/account/register?plan=1" class="pix-btn btn-outline">Get Started</a>
</div>
</div>
<!-- /.pricing-table -->
</div>
<!-- /.col-lg-4 -->
<div class="col-lg-4">
<div class="pricing-table color-two">
<div class="pricing-header pricing-amount">
<div class="annual_price">
<h2 class="price" id="standpricean">$390</h2>
</div>
<!-- /.annual_price -->
<div class="monthly_price">
<h2 class="price" id="standpricemon">$39</h2>
</div>
<!-- /.monthly_price -->
<h3 class="price-title">STANDARD</h3>
<p>For growing Private Labels and Brands</p>
</div>
<!-- /.pricing-header -->
<ul class="price-feture">
<li class="have">+1.5% of ad revenues generated by AutoPilot</li>
<li class="have">Maximum Charge of <span class="maxcap">$799 </span> per month</li>
<li class="have">Feedback request Emails</li>
<!-- <li class="have">Instant access to 3PL warehouses</li> -->
<li class="have">Sponsored Products, Sponsored Display, Sponsored Brands</li>
<li class="have">Automated Keyword Miner</li>
<li class="have">Fully Automated Dayparting</li>
<li class="have">Shopify, Woocommerce Integration
<li>
<li class="have">Self Support. <br> Email & Chat Support</li>
</ul>
<div class="action text-center">
<a href="/account/register?plan=2" class="pix-btn btn-outline">Get Started</a>
</div>
</div>
<!-- /.pricing-table -->
</div>
<!-- /.col-lg-4 -->
<div class="col-lg-4">
<div class="pricing-table color-three">
<div class="pricing-header pricing-amount">
<div class="annual_price">
<h2 class="price" id="prempricean">$990</h2>
</div>
<!-- /.annual_price -->
<div class="monthly_price">
<h2 class="price" id="prempricemon">$99</h2>
</div>
<!-- /.monthly_price -->
<h3 class="price-title">PREMIUM</h3>
<p>For Large Enterprises and Brands</p>
</div>
<!-- /.pricing-header -->
<ul class="price-feture">
<li class="have">+0.75% of ad revenues generated by AutoPilot</li>
<li class="have">Maximum Charge of <span class="maxcap">$799 </span> per month</li>
<li class="have">Feedback request Emails</li>
<!-- <li class="have">Instant access to 3PL warehouses</li> -->
<li class="have">Sponsored Products, Sponsored Display, Sponsored Brands</li>
<li class="have">Automated Keyword Miner</li>
<li class="have">Fully Automated Dayparting</li>
<li class="have">Shopify, Woocommerce & Magento Integration
<li>
<li class="have">24x7 Email, Chat and Phone Support</li>
</ul>
<div class="action text-center">
<a href="/account/register?plan=3" class="pix-btn btn-outline">Get Started</a>
</div>
</div>
<!-- /.pricing-table -->
</div>
<!-- /.col-lg-4 -->
</div>
<!-- /.advanced-pricing-table -->
</div>
<!-- /.container -->
<div class="faq-section">
<div class="container">
<div class="section-title text-center">
<h3 class="sub-title wow pixFadeUp">FAQ</h3>
<h2 class="title wow pixFadeUp" data-wow-delay="0.3s">
</h2>
</div>
<!-- /.section-title -->
<div class="tabs-wrapper wow pixFadeUp" data-wow-delay="0.4s">
<ul class="nav faq-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="design-tab" data-toggle="tab" href="#design" role="tab"
aria-controls="design" aria-selected="true">
Amazon PPC</a>
</li>
<li class="nav-item">
<a class="nav-link" id="service-tab" data-toggle="tab" href="#service" role="tab"
aria-controls="service" aria-selected="false">
Agencies</a>
</li>
<li class="nav-item">
<a class="nav-link" id="general-tab" data-toggle="tab" href="#general" role="tab"
aria-controls="general" aria-selected="false">
Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" id="branding-tab" data-toggle="tab" href="#branding" role="tab"
aria-controls="branding" aria-selected="false">
Smart Fulfillment</a>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="design" role="tabpanel"
aria-labelledby="design-tab">
<div id="accordion" class="faq faq-two pixFade">
<div class="card active">
<div class="card-header" id="heading100">
<h5>
<button class="btn btn-link" data-toggle="collapse"
data-target="#collapse001" aria-expanded="false"
aria-controls="collapse001">
How is AiHello AutoPilot different from other tools?
</button>
</h5>
</div>
<div id="collapse001" class="collapse show" aria-labelledby="heading100"
data-parent="#accordion">
<div class="card-body">
<p>
This is a First Class Full Automated platform. Just switch on
AutoPilot for a target ACoS
and our AI engine will automatically optimize bids daily, mine
keywords, transfer keywords between auto and manual campaigns and
boost bids depending on peak hours and off-peak hours. There is zero
configuration and no rule-sets required as our AI learns from your sales and
optimizes daily.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="heading200">
<h5>
<button class="btn btn-link collapsed" data-toggle="collapse"
data-target="#collapse100" aria-expanded="true"
aria-controls="collapse100">
How long does it take for the Amazon PPC automation to start show
positive results?
</button>
</h5>
</div>
<div id="collapse100" class="collapse" aria-labelledby="heading200"
data-parent="#accordion">
<div class="card-body">
<p>
It takes anywhere from 7-14 days for you to start noticing positive
results. The system learns every day and becomes more efficient at
optimizing your keywords and placements.
</p>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="heading300">
<h5>
<button class="btn btn-link collapsed" data-toggle="collapse"
data-target="#collapse200" aria-expanded="false"
aria-controls="collapse200">
Can I see what the AI is doing? Is there a change log?
</button>
</h5>