html {
  scroll-behavior: smooth;
}

body {
  font-size: 100%;
  font-family: "Ubuntu", Arial, Helvetica, Sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  counter-reset: list-count;
  overflow-x: hidden;
  color: #23242a;
}

.shadow {
  box-shadow: 0 0px 35px rgb(0 0 0 / 10%) !important;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

@media (min-width: 1400px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1160px !important;
  }
}

.text-red {
  color: #da4453;
}

.text-bold {
  font-weight: 700;
}

b {
  font-weight: 600 !important;
}

/* Buttons */

.btn-md {
  padding: 14px 32px;
  border: 1px solid #ff6d00;
  border-radius: 47px;
  background-color: #ff6d00;
  box-shadow: 0 6px 14px 0 rgb(255 155 71 / 38%);
  -webkit-transition: color .3s, border .3s, background-color .3s;
  transition: color .3s, border .3s, background-color .3s;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

.btn-md:hover {
  background-color: transparent;
  color: #ff6d00;
}

.btn-lg {
  padding: 22px 42px;
  border: 1px solid #ff6d00;
  border-radius: 47px;
  background-color: #ff6d00;
  box-shadow: 0 6px 14px 0 rgb(255 155 71 / 38%);
  -webkit-transition: color .3s, border .3s, background-color .3s;
  transition: color .3s, border .3s, background-color .3s;
  color: #fff;
  font-size: 20px;
  line-height: 34px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

.btn-lg:hover {
  background-color: transparent;
  color: #ff6d00;
}

/* HEADER */

header {
  width: 100%;
  z-index: 999;
  background: #ffffff;
  -moz-box-shadow: 0 1px 2px rgba(48, 48, 48, 0.1);
  -ms-box-shadow: 0 1px 2px rgba(48, 48, 48, 0.1);
  -webkit-box-shadow: 0 1px 2px rgb(48 48 48 / 10%);
  box-shadow: 0 2px 7px 0 #0000000a;
  padding: 5px 0;
  position: fixed;
  top: 0;
}

header .logo {
  max-width: 190px;
}

header .logo img {
  max-width: 100%;
}

header .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

header nav ul {
  list-style: none;
  padding: 0;
  text-align: right;
  display: flex;
  justify-content: end;
  overflow: hidden;

  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
  margin-bottom: 0;
}

header nav li {
  display: inline-block;
  margin-right: 30px;
}

header nav li a {
  text-decoration: none;
  color: #515151;
  font-weight: 400;
  font-size: 15px;
  transition: all 0.3s ease;
}

header nav li a:hover {
  color: #FF7502;
}

header nav li.button a {
  border: 2px solid #ff7502;
  border-radius: 27px;
  color: #ff7502;
  font-weight: 500;
  padding: 10px 20px;
}

header nav li.button a:hover {
  background: #ff7502;
  color: #ffffff;
}


@media (max-width: 576px) {
  header {
    position: relative;
  }
}

/* Dropdown Locale */
header nav li:last-child {
  margin-right: 0;
}

.dropdown-menu {
  max-height: fit-content;
}

.dropdown-locale li {
  margin-right: 0;
  width: 100%;
}

.dropdown-locale li a {
  display: block;
}

.dropdown-locale li a img {
  margin-right: 5px;
}

/* menu icon */

header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 21px 12px;
  position: relative;
  user-select: none;
}

header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

header .menu-icon .navicon:before,
header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

header .menu-icon .navicon:before {
  top: 5px;
}

header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

header .menu-btn {
  display: none;
}

header .menu-btn:checked~.menu {
  max-height: 500px;
  display: block;
  height: 460px;
}

header .menu-btn:checked~.menu-icon .navicon {
  background: transparent;
}

header .menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

header .menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 1076px) {

  /*header li {
    float: left;
  }
  header li a {
    padding: 20px 30px;
  }*/
  header .menu {
    clear: none;
    float: right;
    overflow: visible;
    max-height: none;
  }

  header .menu-icon {
    display: none;
  }
}


@media (max-width: 1076px) {
  header .logo {
    max-width: 160px;
    display: inline-block;
  }

  header .navbar {
    display: block;
  }

  header nav ul {
    display: block;
    width: 100%;
    text-align: left;
    margin: 0;
  }

  header nav li {
    display: block;
    margin-right: 0
  }

  header nav li a {
    display: block;
    padding: 10px 0;
  }
}


@media (max-width: 576px) {
  img {
    max-width: 100%;
  }
}

/* GERAL */

.benefits-line ul {
  list-style: none;
  padding: 0;
}

.benefits-line ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  margin-bottom: 12px;
}

.benefits-line ul li svg {
  margin-right: 6px;
}

.benefits-line ul li span {
  color: #363842;
}


/* HERO */
.hero {
  background: #f8fbff;
  padding-top: 100px;
  padding-bottom: 40px;
}

.hero .badge-block {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #3897f0;
  letter-spacing: 0.75px;
  display: flex;
  align-items: center;
}

.hero .badge-block img {
  width: 20px;
  margin-right: 8px;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1em;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero .hero-lead {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.6em;
  color: #7d7691;
  padding-right: 60px;
}



.hero .btn-cta {
  padding: 1.4rem 2.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  background-color: #FF7502;
  border: 1px solid #FF7502;
  color: #fff;
  box-shadow: 0 6px 14px 0 rgb(255 155 71 / 38%);
  -webkit-transition: color .3s, border .3s, background-color .3s;
  transition: color .3s, border .3s, background-color .3s;
  display: inline-block;
  text-decoration: none;
  border-radius: 200px;
  margin-bottom: 20px;
}

.hero .btn-cta:hover {
  background-color: transparent;
  color: #FF7502;
}



@media (max-width: 576px) {

  .hero {
    padding-top: 35px;
    padding-bottom: 20px;
    text-align: center;
  }

  .hero .badge-block {
    font-size: 13px;
    justify-content: center;
  }

  .hero .badge-block img {
    width: 18px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .hero .hero-lead {
    font-size: 17px;
    padding-right: 0;
    margin-bottom: 25px
  }

  .hero .btn-cta {
    width: 100%;
    font-size: 1.3rem
  }



  .benefits-line ul li {
    margin-right: 6px;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .benefits-line ul li svg {
    width: 14px;
  }

}

/* Sections */
.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
}

.section-title p {
  margin-top: 10px;
}

@media (max-width: 576px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-title {
    text-align: left;
  }

  .section-title h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
  }
}

/* Section Why Buy */

.section.section-1 {
  text-align: center;
}

.section.section-1 h3 {
  font-size: 2.6em;
  margin-bottom: 30px;
}

.section.section-1 p {
  font-size: 20px;
}

.section.section-1 .profile-comparasion {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 380px;
  max-width: 100%;
  border-radius: 20px;
}

.section.section-1 .use-cases {
  font-size: 18px;
  list-style: none;
  padding: 10px 20px;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 40px;
  background: #e8f8e6;
  border-radius: 18px;
}

.section.section-1 .use-cases li {
  margin: 20px 0;
}

.section.section-1 .use-cases li:before {
  content: '';
  width: 22px;
  height: 22px;
  background-image: url('../imgs/icons/green-check-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 3px;
}


.section.section-1 .btn {
  margin-top: 20px;
}

@media (max-width: 576px) {
  .section.section-1 {
    text-align: left;
  }

  .section.section-1 p {
    font-size: 18px;
  }
}


/* Section 2*/
.section-2 {
  background-color: #f8fbff;
  text-align: center;
}

@media (max-width: 576px) {
  .section-2 {
    text-align: left;
  }
}

/* Section 3 */

.section-3 {}

.section-3 .section-title {
  margin-bottom: 50px;
}

.section-3 h3 {
  display: flex;
  align-items: center;
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-3 .number {
  color: #ff7502;
  background: #ffe5e0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-weight: 700;
  margin-right: 15px;
}

.section-3 p,
.section-3 ul li {
  color: #626369;
}


/* Section Testimonials */

.section-testimonials {
  background-color: #f8fbff;
}

.section-testimonials .container {
  max-width: 1600px;
}

.section-testimonials #carouselTestimonials {}

.section-testimonials .avatar {
  width: 60px;
  margin-top: 10px;
  margin-bottom: 10px;
}


.section-testimonials .testimonial-text {
  font-size: 18px;
  color: #999;
}


.section-testimonials .note {
  text-align: center;
}

.section-testimonials .note .stars {
  width: 140px;
  max-width: 90%;
}

/* Section Pricing */

.section-pricing {
  background-color: #f8fbff;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, hsla(0, 0%, 100%, 0.6), transparent 72%);
  color: #262934;
}

.pricing-table .pricing-card {
  position: relative;
  -webkit-box-shadow: 0 12px 24px rgb(0 0 0 / 7%) !important;
  box-shadow: 0 12px 24px rgb(0 0 0 / 7%) !important;
  color: rgba(22, 28, 45, 0.7);
  border-radius: 10px;
  background: #ffffff;
  text-align: center;
  padding: 20px;
  display: block;
}

.pricing-table .pricing-card:hover {
  -webkit-box-shadow: 0 12px 24px rgb(0 0 0 / 12%) !important;
  box-shadow: 0 22px 42px rgb(0 0 0 / 14%) !important;
}


.pricing-table .pricing-card.featured {
  background: #fffee0 !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.pricing-table .pricing-card .badging {
  display: block;
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
  font-size: 12px;
}

.pricing-table .pricing-card .badging span {
  background: #f7e36d;
  padding: 8px 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  color: #292929;
  line-height: 1;
  letter-spacing: 0.7px;
  display: block;
}

.pricing-table .pricing-card .title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #23242a;
}

.pricing-table .pricing-card .btn-md {
  font-size: 1.2em;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pricing-table .pricing-card .package-info {}

.pricing-table .pricing-card .package-info h5 {
  color: #FF6D00;
  background-color: #ebf9e9;
  letter-spacing: -1px !important;
  font-weight: 800 !important;
  font-size: 2rem;
  border-radius: 5px;
  padding: 8px 16px;
  margin: 15px 0 15px 0;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  display: inline-flex;
  transition: all 0.3s;
}

.pricing-table.is-packages .pricing-card .package-info h5 {
  margin-top: 0;
}

.pricing-table .pricing-card:hover .package-info h5 {
  background: #fff5ba;
}

.pricing-table .pricing-card .package-info .icon-followers {
  position: relative;
  top: 1px;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.pricing-table .pricing-card .package-info .text-muted {
  width: 70px !important;
  font-size: 13px;
  font-weight: 700 !Important;
  color: #FF6D00 !important;
  line-height: 1.2em !important;
  letter-spacing: -0.3px !important;
  text-align: left;
  margin-left: 7px;
}

.pricing-table .pricing-card .package-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2px;
  padding: 0;
  margin-top: 0;
}

.pricing-table .pricing-card .package-list li {
  font-size: 15px;
  color: #868797;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-table .pricing-card .package-list li svg,
.pricing-table .pricing-card .package-list li img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  fill: #FF6D00;
  position: relative;
  top: -0.5px;
}

.pricing-table .pricing-card .txt-for-only {
  font-style: italic;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 0.975em;
  color: #8a8a8a;
  margin-bottom: 15px;
  font-weight: 300;
}

.pricing-table .pricing-card .txt-for-only.strike {
  text-decoration: line-through;
  color: red;
  font-weight: 600;
}

.pricing-table .pricing-card .pricing-value {
  margin-bottom: 20px;
  line-height: 2.2em;
}

.pricing-table .pricing-card .pricing-value .currency {
  font-size: 17px;
  position: relative;
  top: -4px;
}

.pricing-table .pricing-card .pricing-value .price-value {
  font-size: 32px;
  color: #424141;
  margin: 0 5px;
  font-weight: 600;
}

.pricing-table .pricing-card .pricing-value .per {
  padding-top: 5px;
  font-size: 15px;
}

[data-pricing-dynamic][data-value-active="yearly"] .dynamic-value:before {
  display: inline-block;
  content: attr(data-yearly);
}

[data-pricing-dynamic][data-value-active="yearly"] [data-pricing-trigger] {
  background: #6c18cd !important;
}

[data-pricing-dynamic][data-value-active="yearly"] [data-pricing-trigger] span {
  left: calc(100% - 33px);
}

[data-pricing-dynamic][data-value-active="monthly"] .dynamic-value:before {
  display: inline-block;
  content: attr(data-monthly);
}

[data-pricing-dynamic][data-value-active="monthly"] .price-bottom-text {
  display: none !important;
}

.dynamic-value:before {
  display: inline-block;
  content: attr(data-active);
}

.static-value:before {
  display: inline-block;
  content: attr(data-active);
}


/* SECTION CONTENT */

.section-content.bg {
  background: #f8fbff;
}

.section-content h2 {
  margin-bottom: 20px;
}


/* SECTION CTA */

.section-footer-cta {
  background: #322f3b;
  color: #fff;
  text-align: center;
}

.section-footer-cta .verified-badge {
  width: 100px;
  margin-bottom: 30px;
}

.section-footer-cta .benefits-line ul li span {
  color: #fff;
}

.section-footer-cta ul {
  list-style: none;
  margin-bottom: 40px;
}

.section-footer-cta ul li {
  margin-bottom: 20px;
}



/* FOOTER */
footer {
  padding-top: 15px;
  padding-bottom: 15px;
}

footer .logo {
  max-width: 120px;
  display: inline-block;
}

footer .credits {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 11px;
  color: #999;
  line-height: 1.4em;
  display: block;
}

footer .menu {
  text-align: right;
  list-style: none;
  margin-bottom: 0;
}

footer .menu li {
  display: inline-block;
}

footer .menu li a {
  color: #999;
  margin-left: 20px;
  font-size: 14px;
}

/* Animations */
.is-shaking {
  -webkit-animation: button-shake 2.5s ease-in-out infinite;
  animation: button-shake 2.5s ease-in-out infinite;
}

.is-glowing:before {
  --glow-size: 12px;
  --glow-color: rgb(1 205 176);
  --glow-color-transparent: rgba(255, 244, 0, 0);
  -webkit-animation: glow 2.5s ease-in-out infinite;
  animation: glow 2.5s ease-in-out infinite
}

.btn-cta.is-glowing:before {
  --glow-color: rgb(255 195 145);
  --glow-size: 10px;
}

.is-glowing {
  position: relative;
  z-index: 1
}

.is-glowing:before {
  background: transparent;
  border-radius: 9999px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1
}

@-webkit-keyframes button-shake {
  0% {
    transform: translateZ(0)
  }

  5% {
    transform: translate(-1px)
  }

  10% {
    transform: translate(3px)
  }

  15% {
    transform: translate(-5px)
  }

  20% {
    transform: translate(5px)
  }

  25% {
    transform: translateZ(0)
  }

  to {
    transform: translateZ(0)
  }
}

@keyframes button-shake {
  0% {
    transform: translateZ(0)
  }

  5% {
    transform: translate(-1px)
  }

  10% {
    transform: translate(3px)
  }

  15% {
    transform: translate(-5px)
  }

  20% {
    transform: translate(5px)
  }

  25% {
    transform: translateZ(0)
  }

  to {
    transform: translateZ(0)
  }
}

@-webkit-keyframes glow {
  0% {
    box-shadow: 0 0 0 0 var(--glow-color)
  }

  50% {
    box-shadow: 0 0 0 var(--glow-size) var(--glow-color-transparent)
  }

  70% {
    box-shadow: 0 0 0 0 var(--glow-color-transparent)
  }

  to {
    box-shadow: 0 0 0 0 var(--glow-color-transparent)
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 var(--glow-color)
  }

  50% {
    box-shadow: 0 0 0 var(--glow-size) var(--glow-color-transparent)
  }

  70% {
    box-shadow: 0 0 0 0 var(--glow-color-transparent)
  }

  to {
    box-shadow: 0 0 0 0 var(--glow-color-transparent)
  }
}

@-webkit-keyframes glow {
  0% {
    box-shadow: 0 0 0 0 var(--glow-color)
  }

  50% {
    box-shadow: 0 0 0 var(--glow-size) var(--glow-color-transparent)
  }

  70% {
    box-shadow: 0 0 0 0 var(--glow-color-transparent)
  }

  to {
    box-shadow: 0 0 0 0 var(--glow-color-transparent)
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 var(--glow-color)
  }

  50% {
    box-shadow: 0 0 0 var(--glow-size) var(--glow-color-transparent)
  }

  70% {
    box-shadow: 0 0 0 0 var(--glow-color-transparent)
  }

  to {
    box-shadow: 0 0 0 0 var(--glow-color-transparent)
  }
}




/* Checkout Popup */

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 300ms;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  background-color: rgb(138 58 185 / 33%);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  overflow: auto;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 60px auto;
  padding: 20px 25px;
  background: #fff;
  border-radius: 6px;
  width: 400px;
  max-width: 90%;
  position: relative;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0px 0px 6px rgb(255 255 255 / 30%);
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 10px;
  transition: all 200ms;
  font-size: 34px;
  font-weight: bold;
  text-decoration: none;
  color: #c1c1c1;
  line-height: 0;
}

.popup .content {}



.checkout-popup .popup {
  width: 360px;
  max-width: 96%;
  background: #F8FBFF;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fc2567", endColorstr="#ba08b5", GradientType=1);
  padding: 25px 25px;
}



.checkout-popup h2 {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 26px;
  font-weight: 800;
  font-size: 2.1em;
  line-height: 1.1em;
  color: #23242a;
}

.checkout-popup h3 {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 22px;
  font-weight: 800;
  font-size: 2.1em;
  line-height: 1.1em;
  color: #23242a;
}

.checkout-popup .popup-icon {
  position: absolute;
  top: -28px;
  width: 80px;
  left: 50%;
  right: 50%;
  top: 5px;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.checkout-popup .buttons {
  padding-bottom: 10px;
}

.checkout-popup .buttons a {
  color: #fff;
  display: block;
  transition: all 0.2s;
  text-align: center;
  padding: 14px 0;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-popup .buttons a.daily-btn-link {
  background: #3bf613;
  color: #6c18cd !important;
  padding: 18px 0;
  font-size: 21px;
  box-shadow: rgb(0 0 0 / 10%) 0px 20px 25px -5px, rgb(0 0 0 / 3%) 0px 10px 10px -5px;
}

.checkout-popup .buttons a.daily-btn-link svg {
  margin-right: 12px;
  position: relative;
  top: -1px;
}

.checkout-popup .buttons a.daily-btn-link:hover {
  background: #6aff4a;
}

.checkout-popup .buttons a.instant-btn-link {
  background: rgba(0, 0, 0, 0.2);
  color: #fff0fe;
}

.checkout-popup .buttons a.instant-btn-link svg {
  margin-right: 10px;
}

.checkout-popup .buttons a.instant-btn-link:hover {
  background: rgba(0, 0, 0, 0.25);
}

.checkout-popup .buttons a.payment-method-btn {
  background: #ff6d00;
  color: #ffffff !important;
  padding: 16px 0;
  font-size: 1.2em;
  margin-top: 15px;
  text-align: left;
  position: relative;
}

.checkout-popup .buttons a.payment-method-btn svg {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}

.checkout-popup .buttons a.payment-method-btn:hover {
  background: #ff6d00;
}

.checkout-popup .buttons a.payment-method-btn .off-badge {
  background: #32bcad;
  color: #fff;
  border-radius: 9999px;
  text-transform: uppercase;
  display: inline-block;
  transform: translateX(50%) translateY(0.375rem) rotate(-2deg) skewX(0) skewY(0) scaleX(1) scaleY(1);
  font-size: 12px;
  padding: 1px 10px;
  position: absolute;
  font-weight: bold;
  right: 50%;
  top: -17px;
  z-index: 99;
  box-shadow: 1px 1px 13px #4fddcdd1;
}

.checkout-popup .period-explain {
  color: #ececec;
  line-height: 1.4em;
  text-align: center;
  font-size: 14px;
  margin-bottom: 0;
}

.checkout-popup .period-explain.pb {
  padding-bottom: 12px;
}

.checkout-popup .terms-disclaimer {
  color: #ffffffcc;
  line-height: 1.2em;
  text-align: center;
  font-size: 0.75em;
  margin-bottom: 0;
}

.checkout-popup .terms-disclaimer a {
  color: #ffffffcc;
}

.checkout-popup .order-form {}

.control-terms-group {
  display: inline-block;
  vertical-align: top;
  background: #fff;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 200px;
  height: 210px;
  margin: 10px;

}

.control-terms {
  display: block;
  margin: 0 auto;
  position: relative;
  padding-left: 38px;
  margin-bottom: 12px;
  margin-top: 2px;
  cursor: pointer;
  font-size: 0.9em;
  text-align: left;
  line-height: 1.5em;
  padding-top: 1px;
  width: 100%;
  max-width: 285px;
  color: #23242a;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.control-terms a {
  color: #23242a;
  text-decoration: underline;
}

.control-terms a:hover {
  /* color: rgb(255 255 255 / 66%); */
}

.control-terms input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control-terms__indicator {
  position: absolute;
  top: 5px;
  left: 0;
  height: 25px;
  width: 25px;
  background: #ffffff;
  border-radius: 7px;
  border: 2px solid #ff6d00;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}

.control-terms:hover input~.control-terms__indicator,
.control-terms input:focus~.control-terms__indicator {
  border-color: #ff6d00;
}

.control-terms input:checked~.control-terms__indicator {
  background: #ff6d00;
  border-color: #ffffff;
}

.control-terms input:disabled~.control-terms__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.control-terms__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.control-terms input:checked~.control-terms__indicator:after {
  display: block;
}

.control-terms--checkbox .control-terms__indicator:after {
  width: 6px;
  height: 10px;
  border: 3px solid #ffffff;
  border-top: 0;
  border-left: 0;
  left: 8px;
  top: 4px;
  transform: rotate(43deg);
}

.accept-terms .checkbox-terms-error {
  color: red;
  font-size: 17px;
  line-height: 1.3em;
  text-align: center;
  padding-top: 8px;
  position: relative;
  display: none;
  max-width: 287px;
  margin: 0 auto;
  margin-bottom: -2px;
}

.accept-terms .checkbox-terms-error svg {
  position: absolute;
  width: 45px;
  height: auto;
  top: -14px;
  left: -14px;
  transform: rotate(27deg);
  fill: red !important;
}

.checkout-popup .order-form {}

#terms-box {
  margin-top: 25px;
}

#terms-box .scroll-box {
  overflow: auto;
  height: 144px;
  background: rgb(135 74 74 / 5%);
  padding: 13px 18px 0px 18px;
  border-radius: 8px;
}

#terms-box .scroll-box .title {
  font-weight: 500;
  margin-bottom: 15px;
}

#terms-box .scroll-box p {
  color: #82838b;
  font-size: 12.7px;
  font-weight: 300;
  margin-bottom: 12px;
}

.checkout-popup .order-form input {
  padding: 15px 10px 15px 58px;
  width: 100%;
  margin: 0 0 15px;
  border: 2px solid #23242a;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  color: #383232;
}

.checkout-popup .order-form input.username {
  background-image: url(../imgs/icons/icon-ig.svg);
  background-repeat: no-repeat;
  background-position: 23px center;
  background-size: 24px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.checkout-popup .order-form .input-username-error {
  color: red !important;
  margin-bottom: 10px !important;
}


#box-free-trial {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.free-trial-form input {
  padding: 13px 30px;
  border-radius: 100px;
  background-repeat: no-repeat;
  border: 2px solid #ded9d9;
  margin-bottom: 12px;
  font-size: 18px;
}

.free-trial-form button {
  border-radius: 100px;
  color: #fff !important;
  padding: 1.2rem 2.6rem;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 12px;
  background-color: #FF7502;
  border: 1px solid #FF7502;
}



.loader-free-trial,
.loader-free-trial:after,
.loader-free-trial:before {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out
}

.loader-free-trial {
  color: #fff;
  font-size: 6px;
  margin: 0 auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -.16s;
  animation-delay: -.16s;
  position: relative;
  top: -13px
}

.loader-free-trial:after,
.loader-free-trial:before {
  content: '';
  position: absolute;
  top: 0
}

.loader-free-trial:before {
  left: -3.5em;
  -webkit-animation-delay: -.32s;
  animation-delay: -.32s
}

.loader-free-trial:after {
  left: 3.5em
}

@-webkit-keyframes load7 {

  0%,
  100%,
  80% {
    box-shadow: 0 2.5em 0 -1.3em
  }

  40% {
    box-shadow: 0 2.5em 0 0
  }
}

@keyframes load7 {

  0%,
  100%,
  80% {
    box-shadow: 0 2.5em 0 -1.3em
  }

  40% {
    box-shadow: 0 2.5em 0 0
  }
}


.pricing-card {
  position: relative;
  overflow: hidden;
}

.followers-range {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #ebf9e9 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 2px solid #e3e6ea;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.best-seller::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      rgba(192, 178, 168, 0.211) 0%,
      #ff6b35 50%,
      rgba(143, 141, 139, 0.211) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
  border-radius: 8px 8px 0 0;
  z-index: 1;
}

.followers-range::before {
  display: none;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.followers-range:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #ebf9e9;
  border-color: #ff6d00;
}

.followers-range .icon-followers {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px #ebf9e9);
}

.range-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  gap: 4px;
}

.range-min,
.range-max {
  font-size: 28px;
  font-weight: 800;
  color: #2c3e50;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}

.range-min {
  background: linear-gradient(135deg, #ff6d00 0%, #ff6d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.range-max {
  background: linear-gradient(135deg, #ff6d00 0%, #ff6d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.range-separator {
  font-size: 18px;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.followers-label {
  font-size: 15px;
  font-weight: 500;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

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

  .range-min,
  .range-max {
    font-size: 28px;
  }

  .home-pricing {
    width: 95%;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .range-separator {
    font-size: 18px;
    width: 24px;
    height: 24px;
  }

  .followers-range {
    padding: 12px;
    margin-bottom: 15px;
  }
}

/* Enhanced package-info styling */
.package-info {
  position: relative;
}

.package-info .followers-range {
  margin-bottom: 20px;
}

/* Subtle animation for the entire card */
.pricing-card:hover .followers-range {
  transform: translateY(-3px);
}

/* Add a subtle glow effect */
.followers-range::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #6c18cd, #ff6b35, #6c18cd);
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.followers-range:hover::after {
  opacity: 0.1;
}

/* Refil Link Styling */
.hero-refil-link {
  margin-top: 10px text-align: left;
}

.refil-link {
  color: #ff6d00;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.refil-link:hover {
  color: #ff8c00;
  border-bottom-color: #ff6d00;
  text-decoration: none;
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  text-align: center;
}

.modal-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.5;
}

.status-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.status-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #e3e6ea;
}

.status-block-title {
  font-weight: 600;
  color: #ff6d00;
  font-size: 14px;
  margin-bottom: 5px;
}

.status-block-value {
  font-weight: 700;
  color: #2c3e50;
  font-size: 16px;
}

.modal-description {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: center;
}

.how-it-works {
  margin-top: 25px;
}

.how-it-works h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.steps-list {
  list-style: none;
  padding: 0;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ff6d00;
}

.step-number {
  background: #ff6d00;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.step-description {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-content {
    padding: 20px;
    margin: 10px;
  }

  .hero-refil-link {
    text-align: center;
    padding-bottom: 10px;
  }

  .modal-title {
    font-size: 24px;
  }

  .status-blocks {
    grid-template-columns: 1fr;
  }

  .steps-list li {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Featured Badge Styling */
.pricing-card.featured {
  position: relative;
  overflow: visible;
}

.pricing-card.featured .badging {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.pricing-card.featured .badging span {
  background: rgb(255, 221, 0);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #23242a;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4);
  display: inline-block;
  animation: badgeFloat 3s ease-in-out infinite;
  border: 2px solid rgba(23, 23, 23, 0.2);
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4);
  }

  50% {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 109, 0, 0.5);
  }
}

/* Responsive adjustments for featured badge */
@media (max-width: 768px) {
  .pricing-card.featured {
    margin-top: 0px;
  }

  .pricing-card.featured .badging {
    top: -16px;
  }

  .pricing-card.featured .badging span {
    font-size: 15px;
    padding: 6px 16px;
  }
}

/* Ensure the shimmer bar works with featured cards */
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      rgba(192, 178, 168, 0.211) 0%,
      #ff6b35 50%,
      rgba(192, 178, 168, 0.211) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
  border-radius: 8px 8px 0 0;
  z-index: 1;
}


.safe-buy-top {
  background: #54c989;
  text-align: center;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 996;
}

.safe-buy-top a {
  width: 100%;
  padding: 6px 5px 6px 5px;
  text-transform: uppercase;
  color: #fff !important;
  font-weight: 800;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.8px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.safe-buy-top a svg {
  fill: #fff;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  top: -1px;
  position: relative;
}

.safe-buy-top a span {}

@media (min-width: 992px) {
  .main-menu {
    display: flex;
    justify-content: flex-end;
  }

  .safe-buy-top {
    max-width: 360px;
    left: 50%;
    transform: translateX(-50%) !important;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
}