* {margin:0; padding:0; box-sizing:border-box; outline:0}
html, body {
  font-family:'Roboto', sans-serif;
  font-size:16px;
  font-weight:300;
  color:#333333;
  background-image:url(../image/bg.jpg);
  background-repeat:repeat;
  background-position:center center;
  overflow:auto;
  border:0;
  text-align:center;
  cursor:default;
}
body {width:100%; height:100%;}
.clear {clear:both}

strong {font-weight:700;}

.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background:rgba(0,0,0,0.7);
  color: #dddddd;
  padding: 16px;
  font-size: 14px;
  z-index: 999999;
}

.cookie-actions{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button{
  flex: 1;
  padding: 10px;
  border: none;
  font-weight: bold;
  border-radius: 6px;
}

#btnAccept{
  max-width:500px;
  margin:0 auto 0 auto;
  background: #cb3f3d;
  color:#ffffff;
}

#btnAccept:hover{
  box-shadow:rgba(0,0,0,0.6) 2px 2px 7px;
  cursor:pointer;
}

#cookieText{
  line-height:1.3rem;
}

#cookieText p{
  margin-bottom:10px;
}

.cookie-banner a:link,
.cookie-banner a:active,
.cookie-banner a:visited{
  color:#ffffff;
  text-decoration:none;
  border-bottom:dotted 1px #cb3f3d;
  font-weight:500;
}

.cookie-banner a:hover{
  color:#ffffff;
  text-decoration:none;
  border-bottom:solid 1px #cb3f3d;
  font-weight:500;
}

#waiting {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(28,37,46,0.7);
  z-index:99999;
  display:none;
  align-items: center;
  justify-content: center;
}

#waiting img {
  width: 10px;
  height: auto;
  animation: waitingLoop 3s ease-in-out infinite alternate;
}

@keyframes waitingLoop {
  from {width:0;}
  to {width:250px;}
}

.hero{
  position:relative;
  padding: 20px;
  text-align: center;
  background-image:url(../image/hero.jpg);
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center center;
}

.hero2 {
  width:100%;
  position:relative;
  background-image:
    url(../image/screen.jpg),
    linear-gradient(to bottom, #efefef, #fefefe);
  background-repeat:no-repeat;
  background-position:center center;
  margin-bottom:30px;
}

@media(min-width:800px){
  .hero2 {
    height:375px;
    background-size:contain;
  }
}

@media(max-width:799px){
  .hero2 {
    aspect-ratio:1000 / 473;
    background-size:cover;
  }
}

.hero .overlay {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.3);
}

.hero .logo{
  position:relative;
  width:50%;
  min-width:200px
  max-width:250px;
  margin:0 auto 20px auto;
  display:block;
}






.hero .hero-content{
  position:relative;
  max-width: 600px;
  margin: 0 auto 0 auto;
  color:#ffffff;
  text-shadow:rgba(0,0,0,1) 1px 1px 0px;
}

.hero h1{
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero-subtitle{
  font-size: 16px;
  margin-bottom: 15px;
  line-height:1.5rem;
}

.hero-benefits{
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-weight:500;
}

.hero-benefits li{
  margin-bottom:5px;
  font-size: 15px;
}

.hero-cta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-shadow:none;
  text-align:center;
}

.btn{
  display: block;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary{
  background: #cb3f3d;
  color: #ffffff;
}

.btn-secondary{
  background: #eeeeee;
  color: #333333;
}



/* Desktop */
@media(min-width:768px){
  .hero{
    display: flex;
    align-items: center;
    text-align: left;
  }

  .hero-content{
    flex: 1;
  }
}




































.how-it-works{
  max-width:1200px;
  padding: 30px 20px;
  text-align: center;
  margin:0 auto 0 auto;
}

.how-it-works h2{
  font-size: 22px;
  margin-bottom: 20px;
}

.steps{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step{
  position:relative;
  background: #f7f7f7;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}

.step img{
  width: 100%;
  height: auto;
  display: block;
}

.step-content{
  padding: 15px;
}

.step-number{
  position:absolute;
  top:10px;
  left:10px;
  width: 35px;
  height: 35px;
  background: #cb3f3d;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 10px;
  border:solid 2px #ffffff;
  box-shadow:rgba(0,0,0,0.6) 2px 2px 7px;
}

.step h3{
  margin-bottom: 8px;
  font-size: 18px;
}

.step p{
  font-size: 14px;
  color: #555;
  line-height:1.5rem;
}

/* Desktop */
@media(min-width:768px){
  .steps{
    flex-direction: row;
  }

  .step{
    flex: 1;
  }
}

























.what-includes{
  padding: 30px 20px;
  text-align: center;
  max-width:1200px;
  margin:0 auto 0 auto;
}

.what-includes h2{
  font-size: 22px;
  margin-bottom: 10px;
}

.section-intro{
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height:1.5rem;
}

.includes-grid{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.include-item{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
}

.include-item .icon{
  position:relative;
  height:30px;
  margin-right:10px;
}






.include-item h3{
  font-size: 16px;
  margin-bottom: 8px;
  display:flex;
  align-items: center;
}

.include-item p{
  font-size: 14px;
  color: #666;
  line-height:1.5rem;
}

/* Desktop */
@media(min-width:768px){
  .includes-grid{
    flex-direction: row;
    flex-wrap: wrap;
  }

  .include-item{
    width: calc(33.33% - 10px);
  }
}








.cta{
  padding: 40px 20px;
  text-align: center;
  background:linear-gradient(to top, #eeeeee, #ffffff);
}

.cta h2{
  font-size: 24px;
  margin-bottom: 10px;
}

.cta-subtitle{
  font-size: 15px;
  color: #333333;
  margin-bottom: 20px;
  line-height:1.5rem;
}

.cta-box{
  padding: 20px;
  border-radius: 12px;
  max-width: 400px;
  margin: 0 auto;
  background:linear-gradient(to bottom, #eeeeee, #ffffff);
  box-shadow: 2px 2px 7px rgba(0,0,0,0.2);
  color:#000000;
}

.price{
  margin-bottom: 15px;
}

.amount{
  font-size: 32px;
  font-weight: bold;
  color: #cb3f3d;
}

.duration{
  display: block;
  font-size: 13px;
  color: #000000;
}

.cta-benefits{
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.cta-benefits li{
  margin-bottom: 8px;
  font-size: 14px;
}

.btn.big{
  font-size: 16px;
  padding: 14px;
  margin-top: 10px;
}

.cta-trust{
  margin-top: 10px;
  font-size: 12px;
  color: #333333;
}














.faq{
  padding: 30px 20px;
  max-width:1200px;
  margin:0 auto 0 auto;
}

.faq h2{
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.faq-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item{
  border-bottom: 1px solid #454545;
}

.faq-question{
  width: 100%;
  text-align: left;
  padding: 15px 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.faq-answer{
  display: none;
  padding-bottom: 10px;
}

.faq-answer p{
  font-size: 14px;
  color: #333333;
  line-height:1.5rem;
}

.faq-more{
  text-align: center;
  margin-top: 20px;
}

.faq-more a{
  color: #cb3f3d;
  text-decoration: none;
  font-weight: bold;
}

.site-footer{
  background: #222222;
  color: #ffffff;
  padding: 30px 20px 90px 20px;
  font-size: 14px;
  text-align:center;
}

.footer-brand h3{
  margin-bottom: 10px;
}

.footer-brand p{
  color: #bbbbbb;
  font-size: 13px;
  line-height: 1.5;
}

.footer-links{
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
  margin:20px auto 0 auto;
  width:auto;
}

.footer-links h4{
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a{
  display: block;
  color: #bbbbbb;
  text-decoration: none;
  margin-bottom: 5px;
}

.footer-links a:hover{
  color: #ffffff;
}

.footer-bottom{
  position:relative;
  margin-top: 20px;
  text-align: center;
  padding-top: 15px;
  font-size: 12px;
  color: #dddddd;
}



.footer-bottom::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:linear-gradient(to left, rgba(170,170,170,0), rgba(170,170,170,1), rgba(170,170,170,0));
}











.footer-bottom a:link,
.footer-bottom a:visited,
.footer-bottom a:active{
  color:#bbbbbb;
  text-decoration:none;
}

.footer-bottom a:hover{
  color:#ffffff;
  text-decoration:none;
}

/* Desktop */
@media(min-width:768px){
  .footer-top{
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links{
    flex-direction: row;
    gap: 40px;
  }
}



















.shop-hero{
  text-align:center;
  padding:30px 20px 30px 20px;
}






.shop-faq{line-height:1.5rem}




.shop-hero h1,
.shop-steps h2,
.shop-faq h2
{
  margin-bottom:10px;
}

.price-box{
  margin-top:15px;
}

.price{
  font-size:36px;
  color:#cb3f3d;
  font-weight:bold;
}

.shop-benefits,
.shop-steps,
.buy-box {
  margin-bottom:20px;
}

.shop-benefits p,
.shop-steps p{
  margin-bottom:10px;
}

.shop-faq p{
  margin-bottom:20px;
}

.buy-box{
  text-align:center;
  padding:30px 20px;
  background:#f5f5f5;
}

.price-large{
  font-size:40px;
  margin:10px 0;
}

.trust{
  text-align:center;
  font-size:13px;
  color:#666;
  margin-top:20px;
}




.buy-form{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:20px;
  max-width:500px;
  margin:0 auto 0 auto;
}

.buy-form input,
.buy-form select{
  width:100%;
  padding:12px;
  font-size:14px;
  border:1px solid #ddd;
  border-radius:6px;
  margin:0 auto 10px auto;
  font-family:'Roboto', sans-serif;
  font-size:16px;
  font-weight:300;
  color:#333333;
}



.buy-form table{
  position:relative;
  width:100%;
  border:none;
  border-spacing:0;
}


.buy-form table a:link,
.buy-form table a:active,
.buy-form table a:visited,
.buy-form table a:hover{
  color:#cb3f3d;
  text-decoration:none;
}


.buy-form td{
  padding:0;
  text-align:left;
  vertical-align: middle;
}

.buy-form .cguDiv{
  position:relative;
  width:40px;
  height:40px;
  border:solid 1px #dddddd;
  border-radius:6px;
  background:#ffffff;
}

.buy-form .cguDiv .inner{
  position:absolute;
  width:16px;
  height:16px;
  background:#cb3f3d;
  border-radius:50%;
  top:12px;
  left:12px;
  box-shadow:rgba(0,0,0,0.6) 2px 2px 7px;
  display:none;
}

.buy-form #cguAlert{
  position:absolute;
  top:5%;
  left:5%;
  width:90%;
  height:90%;
  background:rgba(0,0,0,0.6);
  border-radius:6px;
  padding:15px;
  color:#ffffff;
  display:none;
  text-align:center;
  align-items: center;
  justify-content: center;
  font-size:16px;
  line-height:25px;
}


.buy-form label{
  font-size:13px;
  text-align:left;
  margin:0;
}





















.download-hero{
  text-align:center;
  padding:30px 20px;
}

.lang-buttons{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.lang-buttons a{
  padding:8px 12px;
  border:1px solid #ccc;
  border-radius:6px;
  text-decoration:none;
}

.app-section{
  position:relative;
  padding:10px;
  border:1px solid #454545;
  max-width:500px;
  border-radius:10px;
  text-align:center;
  background:linear-gradient(to bottom right,#eeeeee, #ffffff);
  color:#000000;
  box-shadow:rgba(0,0,0,0.3) 2px 2px 7px;
}

.app-section h2{
  background-repeat:no-repeat;
  background-position:left center;
  background-size:auto 100%;
}

@media(min-width:800px){
  .app-section{
    margin:30px calc(2.5% - 1px) 30px calc(2.5% - 1px);
    width:45%;
    display:inline-block;
  }
}

@media(max-width:799px){
  .app-section{
    margin:30px auto 30px auto;
    width:96%;
    display:block;
  }
}

















.app-section h2{position:relative}

.app-section .overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.8);
  border-radius:10px;
}

.app-grid{
  position:relative;
  display:inline-flex;
  gap:15px;
  margin:0 auto 0 auto;
}

.app-card{
  position:relative;
  padding:15px;
  border-radius:10px;
  text-align:center;
}

.app-card a{
  display:inline-block;
  margin-top:10px;
  text-decoration:none;
  border-radius:6px;
}

.app-card a img{
  width:130px;
}




























.how-hero{
  text-align:center;
  padding:30px 20px;
}




.how-steps{
  max-width:1200px;
  margin:0 auto 0 auto;
}


.how-steps .how-step{
  padding:20px;
  border-bottom:1px solid #454545;
}

.how-step .step-number{
  position:relative;
  margin:0 auto 20px auto;
  font-size:20px;
  font-weight:bold;
  color:#ffffff;
}

.how-step p,
.info-block p{line-height:1.5rem}



.info-block{
  padding:20px;
  max-width:1200px;
  margin:20px auto 0 auto;
}

.how-cta{
  text-align:center;
  padding:30px 20px;
  max-width:500px;
  margin:0 auto 0 auto;
}


.how-cta a:link{margin:15px auto 15px auto;}




















.faq-hero{
  text-align:center;
  padding:30px 20px;
}

.faq-index ul{
  padding:0;
  list-style:none;
}

.faq-index li{
  margin-bottom:10px;
}


.faq-index a:link,
.faq-index a:active,
.faq-index a:visited,
.faq-index a:hover{
  color:#cb3f3d;
  text-decoration:underline;
}


.faq-section{
  padding:20px;
  max-width:1200px;
  margin:0 auto 0 auto;
}

.faq-item{
  padding:15px;
}

.faq-item h3{
  font-size:16px;
  margin-bottom:10px;
}

.faq-item p{line-height:1.5rem;}

.faq-cta{
  text-align:center;
  padding:30px;
}




















/* =========================
   PRIVACY & COOKIE POLICY
========================= */

.legal-hero {
     padding: 60px 20px 30px 20px;
     text-align: center;
     background: #f8f8f8;
     border-bottom: 1px solid #eaeaea;
}

.legal-hero h1 {
     font-size: 2.2rem;
     margin-bottom: 10px;
     color: #222;
}

.legal-hero p {
     max-width: 800px;
     margin: 0 auto;
     color: #555;
     font-size: 1rem;
}

.legal-section {
     max-width: 900px;
     margin: 0 auto;
     padding: 30px 20px;
     line-height: 1.7;
     color: #333;
     text-align:left;
}

.legal-section h2 {
     font-size: 1.4rem;
     margin-bottom: 10px;
     color: #222;
     border-left: 4px solid #cb3f3d;
     padding-left: 10px;
}

.legal-section h3 {
     font-size: 1.1rem;
     margin-top: 20px;
     margin-bottom: 8px;
     color: #333;
}

.legal-section p {
     margin-bottom: 12px;
     color: #444;
}

.legal-section ul {
     padding-left: 20px;
     margin-bottom: 15px;
}

.legal-section ul li {
     margin-bottom: 6px;
     list-style: disc;
}

/* Link styling coerente con il sito */
.legal-section a {
     color: #cb3f3d;
     text-decoration: none;
}

.legal-section a:hover {
     text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

     .legal-hero h1 {
          font-size: 1.7rem;
     }

     .legal-section {
          padding: 20px 15px;
     }

     .legal-section h2 {
          font-size: 1.2rem;
     }
}

































.fixFooter {
  position:fixed;
  right:0;
  bottom:0px;
  width:130px;
  height:155px;
  background-image:url(../image/best-choice.png);
  background-repeat:no-repeat;
  background-position:right top;
  background-size:auto 130px;
  z-index:444444;
}

.best {
  position:fixed;
  width:500px;
  right:0;
  bottom:0px;
  padding:13px 10px 13px 0;
  border-radius:0;
  background:linear-gradient(to left, rgba(203,63,61,1), rgba(203,63,61,1), rgba(203,63,61,0));
  text-align:right;
  z-index:555555;
}

.best::before {
  content: "";
  position: absolute;
  top:0;
  right:0;
  width: 100%;
  height: 2px;
  background:linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,1), rgba(255,255,255,0));
}

.best .flag {
  position:relative;
  height:24px;
  background:#ffffff;
  padding:2px;
  border-radius:3px;
  margin:0 2px 0 2px;
}

#menuIcon {
  position:relative;
  margin:2px 0 2px 30px;
  height:20px;
  cursor:pointer;
}

#mobMenu {
  position:absolute;
  bottom:50px;
  right:0;
  width:100%;
  max-width:400px;
  background:linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,1), rgba(0,0,0,0));
  display:none;
  padding:0 10px 10px 10px;
  overflow:auto;
  text-align:right;
  font-size:18px;
}


#mobMenu::before {
  content: "";
  position: absolute;
  top:0;
  right:0;
  width:100%;
  height:2px;
  background:linear-gradient(to left, rgba(203,63,61,1), rgba(203,63,61,1), rgba(203,63,61,0));
}

#mobMenu a:link,
#mobMenu a:active,
#mobMenu a:visited {
  display:block;
  margin:20px 0 20px 0;
  color:#ffffff;
  text-decoration:none;
}

#mobMenu a:hover {
  color:#cb3f3d;
  text-decoration:none;
}

#mobMenu .sep {
  position:relative;
  margin:20px 0 20px 0;
  width:100%;
  height:1px;
  background:linear-gradient(to left, rgba(204,204,204,0.8), rgba(204,204,204,0));
}

@media(max-width:767px){
  .best {
    width:100%;
  }
  .site-footer{
    padding: 30px 20px 170px 20px;
  }
}







