/* GLOBAL */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
.container {
  max-width: 1440px;
}
section {
  margin: auto;
  max-width: 1440px;
}

/* LOGO SLIDER */
.logos-stripe {
  background-color: #000000;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

/* Shadow overlay containers */
.logos-stripe::before,
.logos-stripe::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

/* Left shadow gradient */
.logos-stripe::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Right shadow gradient */
.logos-stripe::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.logo-slider-container {
  position: relative;
  z-index: 1;
}

.logos-stripe .logo-slider .logo-item {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logos-stripe .logo-slider .logo-item img {
  height: 35px;
  width: 120px;
  object-fit: contain;
  max-width: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logos-stripe .logo-slider .logo-item img:hover {
  opacity: 1;
}

/* Slick slider customizations */
.slick-track {
  display: flex !important;
  align-items: center;
}

/* Remove slick default dots and arrows */
.slick-dots,
.slick-arrow {
  display: none !important;
}

/* For responsive shadow sizes */
@media (max-width: 768px) {
  .logos-stripe::before,
  .logos-stripe::after {
    width: 80px;
  }
}

@media (max-width: 576px) {
  .logos-stripe::before,
  .logos-stripe::after {
    width: 50px;
  }
}

/* ACTION BUTTON */
.action-button-container {
  width: fit-content;
  text-align: center;
  margin: auto;
}
.action-button-container p {
  font-size: 13px;
  line-height: 27px;
  margin: 0px;
}
.action-button-container button {
  background-color: #249b22;
  border: 1px solid #027e2e;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  min-width: 303px;
  padding: 0px 40px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.action-button-container .status {
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.action-button-container .status .divider {
  margin: 0px 5px;
  color: gray;
}
.action-button-container .status .low {
  font-weight: 700;
  color: #fc2201;
}
.action-button-container .status .levels {
  display: flex;
  gap: 2px;
  margin: 0px 5px;
}
.action-button-container .status .levels span {
  width: 10px;
  height: 10px;
  background-color: #d9d9d9;
}
.action-button-container .status .levels span.red {
  background-color: #fc2201;
}
.pulse-dot {
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  margin-right: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* HEADER */
header {
  display: flex;
  justify-content: center;
  height: 77px;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 999999;
}
header > div {
  display: flex;
  /* justify-content: space-between; */
  gap: 420px;
  align-items: center;
  width: 100%;
}
header > div .logo,
header > div .menu {
  /* width: 100%; */
  display: flex;
  align-items: center;
}
header > div .logo img {
  width: 132px;
  padding-left: 90px;
}
header .menu-mobile,
header .nav-mobile {
  display: none;
}
header > div .menu {
  display: flex;
}
header > div .menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
header > div .menu ul li a {
  text-decoration: none;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 100%;
  margin-left: 35px;
  padding-bottom: 5px;
}
header > div .menu ul li.active a {
  font-weight: 700;
  border-bottom: 4px solid #249b22;
}
header .menu .cta-header {
  background-color: #249b22;
  border: 1px solid #027e2e;
  color: #ffffff;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  height: 54px;
  padding: 0px 15px;
  border-radius: 8px;
  margin-left: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  min-width: 193px;
  box-shadow: -1px -1px 94px -26px rgba(0, 0, 0, 0.71);
  -webkit-box-shadow: -1px -1px 94px -26px rgba(0, 0, 0, 0.71);
  -moz-box-shadow: -1px -1px 94px -26px rgba(0, 0, 0, 0.71);
}
header .menu > img {
  width: 29px;
  height: auto;
  margin-left: 20px;
  /* padding-right: 90px; */
}

@media (max-width: 1300px) {
  header > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  header .menu > img {
    width: 29px;
    height: auto;
    margin-left: 20px;
    padding-right: 90px;
  }
}

@media (max-width: 1023px) {
  header {
    border-bottom: 1px solid #e0e0e0;
  }
  header > div .logo img {
    padding-left: 15px;
    width: 118px;
  }
  header > div .menu {
    display: none;
  }
  header .menu-mobile {
    display: block;
  }
  header .menu-mobile button {
    background: none;
    border: none;
    padding-right: 15px;
    cursor: pointer;
  }

  /* Smooth transition for hamburger icon */
  header .menu-mobile button img {
    transition:
      transform 0.3s ease,
      opacity 0.2s ease;
  }

  /* Mobile Navigation with smooth slide-down animation */
  header .nav-mobile {
    display: block;
    position: absolute;
    left: 0px;
    top: 78px;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  /* When menu is open */
  header .nav-mobile.open {
    max-height: 300px; /* Adjust if you have more menu items */
    opacity: 1;
    transform: translateY(0);
  }

  header .nav-mobile ul {
    padding-left: 0px;
    margin: 0px;
  }

  /* Menu items fade-in animation */
  header .nav-mobile ul li {
    list-style: none;
    border-bottom: 1px solid #d6d6d6;
    padding-left: 17px;
    height: 47px;
    opacity: 0;
    transform: translateX(-20px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      background-color 0.2s ease;
  }

  /* Staggered animation for menu items */
  header .nav-mobile.open ul li {
    opacity: 1;
    transform: translateX(0);
  }

  header .nav-mobile.open ul li:nth-child(1) {
    transition-delay: 0.1s;
  }

  header .nav-mobile.open ul li:nth-child(2) {
    transition-delay: 0.2s;
  }

  header .nav-mobile.open ul li:nth-child(3) {
    transition-delay: 0.3s;
  }

  header .nav-mobile ul li.active {
    background-color: #249b22;
  }

  header .nav-mobile ul li.active a {
    color: #ffffff;
    font-weight: 700;
  }

  header .nav-mobile ul li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 46px;
    color: #000000;
  }
}

/* MAIN SECTION */
section.main-section .main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
section.main-section .banner {
  height: 710px;
  position: relative;
}
section.main-section .banner img.main-img {
  height: 710px;
  width: 100%;
  object-fit: cover;
}
.main-section .guarantee-bdg,
.main-section .price-drop-bdg,
.main-section .recommended-bdg {
  position: absolute;
}
.main-section .guarantee-bdg {
  top: 40px;
  right: 30px;
  width: 88px;
  height: auto;
}
.main-section .price-drop-bdg {
  top: 150px;
  right: 30px;
  width: 56px;
  height: auto;
}
.main-section .recommended-bdg {
  bottom: 35px;
  right: 30px;
  width: 109px;
  height: auto;
}
.main-section .content {
  background-color: #f8faff;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-section .content .trusted-by {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 5px;
}
.main-section h1 {
  font-size: 42px;
  line-height: 48px;
  margin: 10px 0px;
}
.main-section h2.subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0px;
}
.main-section h2.subtitle span {
  background-color: #fff6b1;
}
.main-section ul.pros-list {
  padding-left: 0px;
}
.main-section ul.pros-list li {
  list-style: none;
  display: flex;
  align-items: center;
  line-height: 32px;
}
.main-section ul.pros-list li img {
  margin-right: 9px;
}
.main-section .testimonial {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.main-section .testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.main-section .testimonial .text {
  font-size: 14px;
  line-height: 21px;
}
.main-section .action-button-container {
  margin: 0px;
}
.main-section .mobile-content {
  display: none;
}

@media (max-width: 1023px) {
  section.main-section .main-container {
    grid-template-columns: 1fr;
  }
  section.main-section .main-container .banner {
    order: 2;
  }
  section.main-section .main-container .content {
    padding-left: 0px;
    order: 1;
    text-align: center;
  }
  section.main-section .main-container .content .pros-list,
  section.main-section .main-container .content .action-button-container,
  section.main-section .main-container .content .testimonial {
    display: none;
  }
  section.main-section .main-container .content .trusted-by {
    flex-direction: column;
    margin-top: 20px;
  }
  section.main-section .main-container .content h1 {
    font-size: 32px;
    line-height: 36px;
  }
  section.main-section .main-container .content h2.subtitle {
    font-size: 16px;
    line-height: 25px;
  }
  section.main-section .main-container .content h2.subtitle br {
    display: none;
  }
  section.main-section .banner img.main-img,
  section.main-section .banner {
    height: 370px;
  }
  .main-section .guarantee-bdg {
    top: 15px;
    right: 17px;
    width: 70px;
    height: auto;
  }
  .main-section .price-drop-bdg {
    top: 15px;
    right: 97px;
    width: 43px;
    height: auto;
  }
  .main-section .recommended-bdg {
    bottom: 20px;
    left: 20px;
    width: 78px;
    height: auto;
  }
  .main-section .mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 15px;
    background-color: #f8faff;
  }
  .main-section .mobile-content .pros-list li {
    line-height: 22px;
    align-items: flex-start;
    margin-bottom: 13px;
  }
  .main-section .mobile-content .action-button-container {
    width: auto;
  }
  .main-section .mobile-content .action-button-container .cta-btn {
    min-width: 341px;
    margin: auto;
  }
  .main-section .mobile-content .testimonial {
    gap: 21px;
  }
  .main-section .mobile-content .testimonial .text br {
    display: none;
  }
  .main-section .mobile-content .testimonial .text span {
    display: block;
  }
}

/* JOIN THOUSANDS SECTION */

.background-join-thousands {
  max-width: 1440px;
  margin: auto;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 30%,
    #f8faff 30%,
    #f8faff 100%
  );
}

section.join-thousands {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px;
  max-width: 1200px;
}

section.join-thousands h2 {
  font-size: 36px;
  line-height: 55px;
  font-weight: bolder;
  margin-bottom: 30px;
  padding: 0 20px;
}

/* Customer slide styles */
.customer-slide {
  padding: 10px;
  display: flex !important; /* Important for slick */
  align-items: center;
  justify-content: center;
}

.customer-slide img {
  object-fit: cover;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.customer-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Slick slider customizations */
.customers-slider .slick-track {
  display: flex !important;
  align-items: center;
}

.customers-slider .slick-slide {
  margin: 0 10px;
}

/* Remove slick default dots and arrows */
.slick-dots,
.slick-arrow {
  display: none !important;
}

@media (max-width: 1023px) {
  section.join-thousands h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

/* INJURY CAUSE */
.join-thousands .injury-cause {
  max-width: 772px;
  margin: auto;
}
.join-thousands .injury-cause h3 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
  margin-bottom: 0px;
}
.join-thousands .injury-cause h4 {
  font-size: 16px;
  line-height: 23px;
}
.join-thousands .injury-cause h4 span {
  background-color: #fff6b1;
  font-weight: 400;
}
.join-thousands .injury-cause .doctor-testimonial {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-left: 30px;
}
.join-thousands .injury-cause .doctor-testimonial img {
  height: 186px;
  width: auto;
}
.join-thousands .injury-cause .testimonial-text p {
  text-align: left;
}
.join-thousands .injury-cause .testimonial-text p.main {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 0px;
}
.join-thousands .injury-cause .testimonial-text p.credits {
  font-size: 13px;
  line-height: 34px;
  font-weight: 700;
  color: #041ec3;
  margin-top: 0px;
}

.bg-feature-blue {
  background-color: #f8faff;
  border-radius: 12px;
  justify-content: space-between;
  padding-left: 26px;
}

@media (max-width: 1023px) {
  .bg-feature-blue {
    background-color: transparent;
    border-radius: 0;
    justify-content: space-between;
    padding-left: 0px;
  }

  .d-none-mob {
    display: none;
  }

  .join-thousands .injury-cause h3 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
    margin-bottom: 0px;
    padding: 0px 27px;
  }
  .join-thousands .injury-cause h3 br {
    display: none;
  }
  .join-thousands .injury-cause h4 {
    line-height: 25px;
    padding: 0px 27px;
  }
  .join-thousands .injury-cause h4 br {
    display: none;
  }
  .join-thousands .injury-cause .doctor-testimonial {
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    padding-left: 0px;
  }
  .join-thousands .injury-cause .doctor-testimonial .testimonial-text p {
    text-align: center;
  }
  .join-thousands .injury-cause .doctor-testimonial .testimonial-text p br {
    display: none;
  }
  .join-thousands .injury-cause .doctor-testimonial .testimonial-text p.main {
    font-size: 20px;
    line-height: 29px;
    padding: 0px 10px;
  }
}

/* FALL PREVENTION SECTION */
.fall-prevention {
  text-align: center;
  max-width: 955px;
}
.fall-prevention h2 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
  margin: 0px;
  margin-top: 40px;
}
.fall-prevention h3 {
  font-size: 16px;
  line-height: 23px;
  font-weight: normal;
  margin-bottom: 50px;
}
.fall-prevention .features .feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}
.fall-prevention .features .feature video,
.fall-prevention .features .feature img {
  width: 434px;
  height: auto;
}
.fall-prevention .features .feature:nth-child(odd) video,
.fall-prevention .features .feature:nth-child(odd) img {
  order: 2;
  border-radius: 12px;
}
.fall-prevention .features .feature .info-content {
  text-align: left;
}
.fall-prevention .features .feature .info-content h4 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 800;
  margin: 0px;
}
.fall-prevention .features .feature .info-content p {
  font-size: 16px;
  line-height: 26px;
}
.fall-prevention .features .feature .info-content p.highlight {
  background: #eff3ff;
  font-size: 14px;
  line-height: 24px;
  padding: 15px;
}
.fall-prevention .features .feature .info-content p.highlight {
  background: #eff3ff;
  font-size: 14px;
  line-height: 24px;
  padding: 15px;
}
@media (max-width: 1023px) {
  .fall-prevention h2 {
    font-size: 32px;
    line-height: 38px;
    padding: 0px 25px;
  }
  .fall-prevention h3 {
    margin-bottom: 20px;
  }
  .fall-prevention .features .feature {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0px 15px;
  }
  .fall-prevention .features .feature video,
  .fall-prevention .features .feature img {
    width: 100%;
    height: auto;
    order: 1;
  }
  .fall-prevention .features .feature .info-content {
    order: 2;
  }
}

/* YOU MAY NEED SECTION */
.you-may-need {
  max-width: 950px;
  margin: auto;
  background-color: #f8faff;
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 85px;
  padding: 25px 0px;
  border-radius: 12px;
}
.you-may-need h2 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
}
.you-may-need ul {
  padding-left: 0px;
}
.you-may-need ul li {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 35px;
}
.you-may-need ul li img {
  margin-right: 7px;
}
@media (max-width: 768px) {
  .fall-prevention .features .feature {
    margin-bottom: 5px;
  }

  .testimonial {
    padding-bottom: 30px;
  }

  .you-may-need {
    padding: 0px 15px;
    flex-direction: column;
    position: relative;
  }
  .you-may-need h2 {
    text-align: center;
  }
  .you-may-need > img {
    position: absolute;
    left: 0px;
    top: 190px;
  }
  .you-may-need ul {
    margin-top: 455px;
  }
  .you-may-need ul li {
    line-height: 24px;
  }
  .you-may-need ul li {
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .you-may-need ul li img {
    margin-top: 2px;
  }
}

/* SECURE YOUR SUPPORT SECTION */
.secure-your-support {
  max-width: 950px;
  margin: auto;
  margin-top: 45px;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.secure-your-support h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

/* Tutorial container - desktop layout */
.secure-your-support .tutorial {
  display: flex;
  gap: 65px;
}

/* Tutorial container - mobile slider */
@media (max-width: 768px) {
  .secure-your-support {
    padding: 0 15px;
    overflow: hidden;
    margin-top: 0px;
  }

  .secure-your-support .tutorial {
    display: block;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }

  .secure-your-support .tutorial.slick-initialized {
    display: block;
    width: 100%;
  }

  /* Fix for slick track alignment */
  .secure-your-support .tutorial .slick-track {
    display: flex !important;
    align-items: flex-start !important;
  }

  /* Individual slide styling */
  .secure-your-support .tutorial .slick-slide {
    height: auto !important;
    float: none !important;
    display: flex !important;
    align-items: flex-start;
  }
}

.secure-your-support .tutorial .step {
  text-align: center;
  flex: 1;
  padding: 0 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .secure-your-support .tutorial .step {
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
}

.secure-your-support .tutorial .step video {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}

.secure-your-support .tutorial .step h3 {
  font-size: 22px;
  line-height: 35px;
  margin-bottom: 0px;
  margin-top: 20px;
}

.secure-your-support .tutorial .step p {
  font-size: 16px;
  line-height: 26px;
  margin-top: 10px;
}

/* Custom dots styling */
@media (max-width: 768px) {
  .secure-your-support .tutorial .slick-dots {
    position: relative !important;
    bottom: 0 !important;
    margin: 12px auto 0 !important;
    padding: 0;
    width: 100%;
    display: flex !important;
    justify-content: center;
    list-style: none;
  }

  .secure-your-support .tutorial .slick-dots li {
    margin: 0 6px;
    width: auto;
    height: auto;
  }

  .secure-your-support .tutorial .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .secure-your-support .tutorial .slick-dots li.slick-active button {
    background-color: #333;
    width: 12px;
    height: 12px;
  }

  .secure-your-support .tutorial .slick-dots li button:hover {
    background-color: #bbb;
  }
}

/* Remove default slick dots */
.secure-your-support .tutorial .slick-dots li button:before {
  display: none !important;
}

/* Hide slider on desktop */
.secure-your-support .tutorial:not(.slick-initialized) {
  display: flex;
}

.secure-your-support .testimonial {
  text-align: center;
  clear: both;
}

@media (max-width: 768px) {
  .secure-your-support .testimonial {
    margin-top: 28px;
    width: 100%;
  }
}

.secure-your-support .testimonial p {
  font-size: 16px;
  line-height: 44px;
  font-style: italic;
  font-weight: 600;
}

.secure-your-support .testimonial p.highlight {
  background-color: #eff3ff;
  padding: 15px;
  max-width: calc(460px - 45px);
  margin: auto;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  font-style: normal;
  border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .secure-your-support h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
    margin-top: 37.64px;
  }

  .secure-your-support .tutorial .step h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .secure-your-support .tutorial .step p {
    font-size: 16px;
    line-height: 26px;
    height: 72px;
  }
}
@media (max-width: 768px) {
  .secure-your-support .tutorial.slick-slider {
    height: auto !important;
  }

  .secure-your-support .tutorial .slick-list,
  .secure-your-support .tutorial .slick-track {
    height: auto !important;
  }

  .secure-your-support .tutorial .step {
    height: auto !important;
    overflow: hidden;
  }

  .secure-your-support .tutorial .step video {
    /*max-height: 250px;*/
  }
}

/* COMPARISSON */
section.comparisson {
  margin-top: 50px;
}
section.comparisson h2 {
  margin: auto;
  max-width: 690px;
  font-size: 36px;
  line-height: 44px;
  font-weight: 800;
  text-align: center;
}
section.comparisson .comparisson-table {
  margin: auto;
  max-width: 690px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  margin-top: 40px;
  gap: 15px;
}
section.comparisson .comparisson-table .info-text div,
section.comparisson .comparisson-table .maas-bath div,
section.comparisson .comparisson-table .tradicional-bars div {
  height: 50px;
  border-bottom: 1px dotted #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
section.comparisson .comparisson-table .info-text div {
  justify-content: left;
}
section.comparisson .comparisson-table .maas-bath div:last-child,
section.comparisson .comparisson-table .tradicional-bars div:last-child {
  border-bottom: 0px;
  height: 30px;
}
section.comparisson .comparisson-table .first-row {
  height: 140px !important;
  width: auto;
  text-align: center;
}
section.comparisson .comparisson-table .first-row {
  position: relative;
}
section.comparisson .comparisson-table .maas-bath {
  background-color: #e7edff;
  border-radius: 4px;
}
section.comparisson .comparisson-table .maas-bath div {
  text-align: center;
}
section.comparisson .comparisson-table .maas-bath .logo {
  width: 132px;
  height: auto;
  margin-top: 25px;
}
section.comparisson .comparisson-table .maas-bath .maas-bath-img {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.comparisson .comparisson-table .tradicional-bars {
  background-color: #f6f6f6;
  border-radius: 4px;
}
section.comparisson .comparisson-table .tradicional-bars div {
  text-align: center;
}
section.comparisson .comparisson-table .tradicional-bars .tradicional-bar-img {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.comparisson .comparisson-table .tradicional-bars .text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 16px;
  line-height: 21px;
  font-weight: normal;
}
@media (max-width: 600px) {
  section.comparisson {
    padding: 0px 15px;
  }
  section.comparisson h2 br {
    display: none;
  }
  section.comparisson .comparisson-table {
    gap: 5px;
    margin-top: 40px;
  }
  section.comparisson .comparisson-table .first-row {
    height: 100px !important;
  }
  section.comparisson .comparisson-table .maas-bath .maas-bath-img {
    width: 80px;
    top: 10px;
  }
  section.comparisson .comparisson-table .maas-bath .logo {
    width: 80px;
  }
  section.comparisson
    .comparisson-table
    .tradicional-bars
    .tradicional-bar-img {
    width: 80px;
    top: 10px;
  }
  section.comparisson .comparisson-table .info-text div,
  section.comparisson .comparisson-table .maas-bath div,
  section.comparisson .comparisson-table .tradicional-bars div {
    font-size: 14px;
    font-weight: 700;
  }
  section.comparisson .comparisson-table .tradicional-bars .text {
    font-size: 14px;
    bottom: 0px;
  }
}
section.comparisson .buy-banner {
  max-width: 622px;
  margin: auto;
  background-color: #daf4a1;
  border-radius: 12px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  padding: 40px 100px;
  margin-top: 50px;
  margin-bottom: 35px;
}
section.comparisson .buy-banner .title {
  font-size: 24px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 10px;
}
section.comparisson .buy-banner .body {
  font-size: 16px;
  line-height: 25px;
}

@media (max-width: 768px) {
  section.comparisson {
    padding: 0px 15px;
  }
}
@media (max-width: 768px) {
  section.comparisson .buy-banner {
    flex-direction: column;
    padding: 20px 15px;
    text-align: center;
    margin-bottom: 20px;
  }
}

/* REAL USERS */
section.real-users {
  max-width: 1140px;
  margin: auto;
}
section.real-users h2 {
  font-size: 38px;
  line-height: 50px;
  font-weight: 800;
  text-align: center;
  margin-top: 40px;
}
section.real-users .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 15px;
}
section.real-users .header .stats {
  display: flex;
  gap: 20px;
}
section.real-users .header .stats div > div {
  height: 35px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border-bottom: 1px dotted #e1e1e1;
}
section.real-users .header .stats .rating .mobile-rating {
  display: none;
}
section.real-users .header .total-score {
  text-align: center;
}
section.real-users .header .total-score .main-score {
  font-size: 70px;
  line-height: 120%;
  font-weight: 800;
}
section.real-users .header .total-score img {
  margin: 10px 0px;
}
section.real-users .header .total-score .info {
  font-size: 16px;
  line-height: 120%;
}
@media (max-width: 970px) {
  section.real-users .header {
    flex-direction: column;
    gap: 20px;
  }
  section.real-users h2 {
    font-size: 32px;
    line-height: 40px;
  }
  section.real-users .header .stats {
    display: grid;
    grid-template-columns: 6fr 3fr 1fr;
    gap: 5px;
    width: 100%;
  }
  section.real-users .header .stats div > div {
    font-size: 14px;
  }
  section.real-users .header .stats .rating .mobile-rating {
    display: block;
  }
  section.real-users .header .stats .rating .desktop-rating {
    display: none;
  }
  section.real-users .header .customers-img img {
    width: 100%;
  }
}

section.real-users .testimonials-grid {
  column-count: 4;
  column-gap: 25px;
  margin-top: 35px;
  margin-bottom: 60px;
}
section.real-users .testimonial-card {
  break-inside: avoid;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  margin-bottom: 25px;
  display: inline-block;
  width: 100%;
}
section.real-users .testimonial-card .card-img {
  width: 100%;
  height: auto;
  border-radius: 4px 4px 0px 0px;
}
section.real-users .testimonial-card .card-info {
  padding: 15px;
}
section.real-users .testimonial-card .card-info .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
section.real-users .testimonial-card .card-info .user-info .user {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
}
section.real-users .testimonial-card .card-info .user-info .user img {
  width: 50px;
  height: 50px;
}
section.real-users .testimonial-card .card-info .user-info .verified {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #3ab890;
}
section.real-users .testimonial-card .card-info .rating {
  font-size: 14px;
  line-height: 120%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0px;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}
section.real-users .testimonial-card .card-info .review {
  margin-top: 15px;
  font-size: 16px;
}
section.real-users .testimonial-card .card-info .review .title {
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 120%;
}
section.real-users .testimonial-card .card-info .review .body {
  line-height: 162%;
}
@media (max-width: 1200px) {
  section.real-users .testimonials-grid {
    column-count: 3;
    padding: 0px 15px;
  }
}
@media (max-width: 900px) {
  section.real-users .testimonials-grid {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  section.real-users .testimonials-grid {
    column-count: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  section.real-users .testimonial-card {
    display: block;
    break-inside: auto;
    width: 100%;
  }
  /* Mobile order */
  section.real-users .testimonial-card:nth-child(1) {
    order: 1;
  }
  section.real-users .testimonial-card:nth-child(2) {
    order: 5;
  }
  section.real-users .testimonial-card:nth-child(3) {
    order: 2;
  }
  section.real-users .testimonial-card:nth-child(4) {
    order: 6;
  }
  section.real-users .testimonial-card:nth-child(5) {
    order: 3;
  }
  section.real-users .testimonial-card:nth-child(6) {
    order: 7;
  }
  section.real-users .testimonial-card:nth-child(7) {
    order: 4;
  }
  section.real-users .testimonial-card:nth-child(8) {
    order: 8;
  }
}

/* FAQ */
.faq {
  padding: 60px 0 70px;
  max-width: 920px;
  margin: auto;
}
.faq h2 {
  font-size: 36px;
  line-height: 56px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}
.faq .faq-container .faq-item {
  border: 1px solid #cfcfcf;
  font-size: 17px;
  line-height: 27px;
  padding: 25px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.faq .faq-container .faq-item .content {
  max-width: 700px;
}
.faq .faq-container .faq-item .header {
  font-weight: 700;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.faq .faq-container .faq-item .body {
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq .faq-container .faq-item.open .body {
  display: block;
  animation: fadeIn 0.3s ease-out;
}
.faq .faq-container .faq-item button {
  background: none;
  border: none;
}
.faq .faq-container .faq-item button img {
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  .faq {
    padding: 10px 0 0 0;
    max-width: 920px;
    margin: auto;
  }

  .faq h2 {
    margin-top: 28px;
  }

  .faq .faq-container {
    padding: 0px 15px;
  }
  .faq .faq-container .faq-item {
    padding: 15px;
    padding-right: 5px;
  }
}

.faq .hurry {
  text-align: center;
}
.faq .hurry h3 {
  font-size: 36px;
  line-height: 56px;
  font-weight: 800;
  margin-bottom: 0px;
}
.faq .hurry .subtext {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .faq .hurry h3 {
    font-size: 32px;
    line-height: 40px;
  }
}

/* FOOTER */
footer {
  text-align: center;
  margin-top: 430px;
  font-size: 14px;
  line-height: 28px;
  color: #808080;
}
footer .main-footer {
  padding-bottom: 18px;
}
footer .main-footer img {
  width: 148px;
  height: auto;
}
footer .main-footer .links a {
  text-decoration: none;
  color: #808080;
}
footer .copyright {
  padding: 15px 0px;
  border-top: 1px solid #dfdfdf;
}
@media (max-width: 768px) {
  footer {
    margin-top: 295px;
  }
}

/* CTA MOBILE */
.cta-fixed-mobile {
  display: none;
}

@media (max-width: 768px) {
  section.join-thousands {
    padding: 20px 0 20px;
  }

  section.comparisson .buy-banner .title {
    font-size: 24px;
    line-height: 30px;
  }

  .cta-fixed-mobile {
    display: block;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background-color: #ffffff;
    padding: 14px 0px 10px 0;
    border-top: 1px solid #d6d6d6;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }

  .cta-fixed-mobile.visible {
    transform: translateY(0);
  }

  .cta-fixed-mobile .action-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    width: 100%;
  }

  .cta-fixed-mobile .cta-btn {
    width: 100%;
    max-width: 341px;
    margin-bottom: 12px;
  }

  .cta-fixed-mobile .status {
    font-size: 12px;
    margin-top: 0px;
    text-align: center;
  }
}

.extra-bold {
  font-weight: 800 !important;
}

.highlight-with-bg {
  background-color: #d7e3ff !important;
}

.highlight {
  border-radius: 4px !important;
}

.d-none-desk {
  display: none !important;
}

.logo-oprah {
  width: 167px;
  height: auto;
}

.logo-usa-today {
  max-width: 167px;
  height: 22px;
}

@media screen and (max-width: 768px) {
  .d-none-desk {
    display: block !important;
  }

  .logos-stripe .logo-slider .logo-item img {
    max-height: 17.8px;
  }

  .logos-stripe {
    padding: 17px 0;
  }
}
