.logo {
 height: 35px;
 width: auto;
 margin: 0 auto 12px;
 display: block;
}

.wistia-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: #fff;
    border: 1px solid #E5E5E5;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

.wistia-container wistia-player {
    width: 100%;
    height: 100%;
}

vturb-smartplayer {
    border-radius: 16px;
    overflow: hidden;
    display: block;
}
.nowrap {
    white-space: nowrap;
}

.text-highlight {
    --btn-bg-1: #435EE5;
    --btn-bg-2: hsla(217 100% 56% / 1);
    background-image: linear-gradient(325deg, var(--btn-bg-2) 0%, var(--btn-bg-1) 55%, var(--btn-bg-2) 90%);
    color: rgba(0, 0, 0, 0);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Remove default list styling */
.benefit-description-block ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.benefit-description-block li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.benefit-description-block li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('../images/check.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.desktop-img {
    display: flex;
}

.mobile-img {
    display: none;
}
 

/* CTA section styling */
.center-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.cta-content-wrapper {
    padding: 30px;
}

/* CTA section list styling */
.cta-description-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.cta-description-block li {
    margin-bottom: 8px;
    text-align: left;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
    font-weight: 500;
}

.cta-description-block li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/check.gif');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.desktop-cta {
    display: block;
}
.mobile-cta {
    display: none;
}
.commitment-description {
    font-size: 18px;
    text-align: start;
}

@media screen and (max-width: 767px) {
    .mobile-img {
        display: flex;
    }
    .desktop-img {
        display: none;
    }
    .benefit-text-contant-block {
        text-align: left;
    }
    .benefit-description-block {
        font-size: 14px;
    }
    .wistia-container wistia-player {
        width: 100% !important;
        height: auto !important;
    }
    .cta-content-wrapper {
        padding: 25px;
    }
    .benefit-description-block li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url('../images/check.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.desktop-cta {
    display: none;
}
.mobile-cta {
    display: block;
}
.commitment-description {
    font-size: 14px;
}
}
.commitment-cta {
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .mobile-img {
        display: block;
    }
    .desktop-img {
        display: none;
    }
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    text-align: left;
}

.commitment-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.commitment-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/check-x.gif');
    background-size: contain;
    background-repeat: no-repeat;
}
.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 1rem;
    text-align: center;
}
  
/* Marquee container */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}
  
/* Marquee track */
.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    animation: scroll 60s linear infinite;
}
  
/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}
  
/* testimonial-Card styles */
.testimonial-card {
    flex: 0 0 auto;
    width: 280px;
    /* background: linear-gradient(to bottom, red, #000); */
    border-radius: 20px;
    overflow: hidden;
border: 1px solid #e8ebf0;
    padding: 12px;
}
  
.testimonial-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Landscape testimonial card styles */
.testimonial-card-landscape {
    flex: 0 0 auto;
    width: 500px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #e8ebf0;
    padding: 12px;
}

.testimonial-card-landscape img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

/* Marquee track for landscape */
.marquee-track-landscape {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    animation: scroll 60s linear infinite;
}

.marquee-track-landscape:hover {
    animation-play-state: paused;
}
  
/* Scrolling animation */
@keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% / 1));
    }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .testimonial-card {
      width: 280px;
    }
  
    .testimonial-card img {
      height: 500px;
    }
  }

/* Black Friday Banner Styles */
.black-friday-banner {
  background-color: transparent;
  color: black;
  padding: 12px 0;
  position: relative;
  z-index: 1000;
  font-family: 'Inter Tight', sans-serif;
  backdrop-filter: blur(120px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.banner-desktop {
  display: none;
}

.banner-mobile {
  display: none !important;
}


@keyframes snowfall {
  0% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(100px);
  }
}

.banner-content::after {
  animation: snowfall 4s linear infinite !important;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.banner-content::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: 
    radial-gradient(3px 3px at 20px 30px, red, rgba(255, 0, 0, 0)),
    radial-gradient(3px 3px at 60px 70px, red, rgba(255, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 50px, red, rgba(255, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, red, rgba(255, 0, 0, 0)),
    radial-gradient(3px 3px at 90px 10px, red, rgba(255, 0, 0, 0)),
    radial-gradient(2px 2px at 10px 90px, red, rgba(255, 0, 0, 0)),
    radial-gradient(3px 3px at 110px 40px, red, rgba(255, 0, 0, 0)),
    radial-gradient(2px 2px at 170px 60px, red, rgba(255, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: snowfall 10s linear infinite;
  pointer-events: none;
  z-index: 2000;
}

.banner-text {
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fire-emoji {
  display: inline-flex;
}

.price-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 10px;
}

.original-price {
  font-size: 18px;
  font-weight: 600;
  text-decoration: line-through;
  opacity: 1;
  color: #dc2626;
}

.current-price {
  font-size: 24px;
  font-weight: 700;
  color: #3758f9;
}

.countdown {
  display: flex;
  gap: 8px;
  margin: 0 10px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
  min-width: 50px;
 box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.countdown-value {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 500;
}

.get-offer-button {
  background: transparent;
  color: black;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: inset 0 -7px 19px rgba(226, 24, 24, 1);
  animation: pulseShadow 2s infinite ease-in-out;
}

@keyframes pulseShadow {
  0% {
    box-shadow: inset 0 -7px 25px rgba(255, 0, 0, 0.9);
  }
  50% {
    box-shadow: inset 0 -29px 40px rgba(255, 0, 0, 1);
  }
  100% {
    box-shadow: inset 0 -7px 25px rgba(255, 0, 0, 0.9);
  }
}

.get-offer-button:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 -7px 9px rgba(226, 24, 24, 1);
}


@media (max-width: 991px) {
  .banner-content {
    flex-direction: column;
    padding: 10px;
    text-align: center;
    gap: 8px;
  }

  .countdown {
    margin: 5px 0;
  }

  .close-banner {
    top: 10px;
    right: 10px;
    transform: none;
  }
}

@media (max-width: 479px) {
  .banner-desktop {
    display: none;
  }

  .banner-mobile {
    display: block;
  }

  .banner-content-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
  }

  .mobile-offer-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: inset 0 -7px 19px rgba(226, 24, 24, 1);
    /* animation: pulseShadow 8s infinite ease-in-out; */
    border-radius: 30px;
    transition: all 0.2s ease;
  }

  .mobile-offer-button:hover {
    transform: translateY(-1px);
    box-shadow: inset 0 -7px 9px rgba(226, 24, 24, 1);
  }

  .mobile-price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .mobile-price-item {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .mobile-price-label {
    font-size: 14px;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mobile-original-price {
    color: #ff0000;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 14px;
  }

  .mobile-price-arrow {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .mobile-current-price {
    color: #3758f9;
    font-weight: 700;
    font-size: 14px;
  }

  .mobile-button-text {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: black;
    line-height: 1.3;
  }

  .mobile-button-text span {
    font-weight: 700;
    color: #ff0000;
  }
}

/* Bonuses Section Styles */
.bonuses {
  padding: 40px 0;
  position: relative;
  margin-bottom: -20px;
}

.bonuses-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bonuses-header {
  text-align: center;
  margin-bottom: 60px;
}

.bonuses-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.bonuses-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.bonuses-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  overflow: hidden;
  background: white;
}

.bonus-item {
  display: grid;
  grid-template-columns: 120px 1fr 150px;
  gap: 40px;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid #e8ebf0;
  transition: all 0.3s ease;
}

.bonus-item:last-child {
  border-bottom: none;
}

.bonus-item:hover {
  background-color: #fafbfc;
}

.bonus-number {
  font-size: 64px;
  font-weight: 600;
  background-image: linear-gradient(
  0deg,
  rgba(0, 102, 204, 0) 15%,
  hsla(217 100% 56% / 1),
  #435EE5
);
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  opacity: 0.9;
}

.bonus-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.bonus-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bonus-gem {
  width: 80px;
  height: 80px;
  border: 1px solid #e8ebf0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.bonus-gem img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.bonus-label {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonuses-mobile-section {
  display: none;
  padding: 100px;
}

.bonuses-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  overflow: hidden;
  background: white;
}

.bonuses-mobile-item {
  padding: 24px;
  border-bottom: 1px solid #e8ebf0;
}

.bonuses-mobile-item:last-child {
  border-bottom: none;
}

.mobile-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.mobile-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-icon .bonus-gem {
  width: 70px;
  height: 70px;
}

.mobile-icon .bonus-label {
  font-size: 11px;
  white-space: nowrap;
}

.mobile-number {
  font-size: 50px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  opacity: 0.9;
  margin-top: -8px;
  background-image: linear-gradient(
  0deg,
  rgba(0, 102, 204, 0) 15%,
  hsla(217 100% 56% / 1),
  #435EE5
);
}

.mobile-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}

.mobile-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .bonuses {
    padding: 60px 0;
  }

  .bonuses-header h2 {
    font-size: 32px;
  }

  .bonuses-header p {
    font-size: 16px;
  }

  .bonus-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .bonus-number {
    font-size: 48px;
  }

  .bonus-content h3 {
    font-size: 18px;
  }

  .bonus-content p {
    font-size: 14px;
  }

  .bonus-icon {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .bonus-gem {
    width: 60px;
    height: 60px;
  }

  .bonuses {
    display: none;
  }

  .bonuses-mobile-section {
    display: block;
    padding: 10px;
    margin-top: 20px;
  }

  .bonuses-mobile {
    display: block;
    /* padding: 10px; */
    border-radius: 30px;
  }

  .bonuses-mobile-item {
    padding: 24px 16px;
  }

  .mobile-number {
    font-size: 56px;
  }

  .mobile-content h3 {
    font-size: 16px;
  }

  .mobile-content p {
    font-size: 13px;
  }
}
.body-text-b2 {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
    h5 {
        font-size: 20px;
        line-height: 1.2em;
    }
    .features-card-description-block{
      font-size: 14px;
      line-height: 21px;
    }
    .body-text-b2 {
      font-size: 12px
    }
}

.features-highlight {
   color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
 background-image: linear-gradient(rgba(177, 177, 177, .55), #fff 0%, rgba(235, 235, 235, .88) 58%, rgba(0, 0, 0, 0));
}

/* Disable image download protection */
img {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}