/* GLOBAL */
:root {
  --yellow-bg: #ffdc32;
  --yellow-border: #d4b000;
  --deep-purple: #5346d3;
  --testimonial-bg: #a7e0524a;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
}

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

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

.logo-slider {
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-wrap: nowrap;
  gap: 50px;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

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

.logos-stripe .logo-slider .logo-item img {
  width: auto;
  height: 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;
}

/* ACTION BUTTON */
.action-button-container {
  width: fit-content;
  text-align: center;
  margin: auto;
}
.action-button-container p {
  font-size: 12px;
  line-height: 27px;
  margin: 0px;
}
.action-button-container button {
  background-color: var(--yellow-bg);
  border: 1px solid var(--yellow-border);
  border-radius: 8px;
  margin: 0 auto;
  color: #000;
  font-weight: 800;
  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: "Roboto", 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 3px;
  color: gray;
}
.action-button-container .status .low {
  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: 450px;
  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 var(--yellow-bg);
}
header .menu .cta-header {
  background-color: var(--yellow-bg);
  border: 1px solid var(--yellow-border);
  color: #000;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  height: 42px;
  padding: 0px 15px;
  border-radius: 8px;
  margin-left: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 162px;
  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: 9px;
  /* padding-right: 90px; */
}

/* MAIN SECTION */
section.main-section .main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
section.main-section .banner {
  height: 640px;
  position: relative;
  overflow: hidden;
}
/* Prevent slider CSS from affecting the video/main image only */
section.main-section .banner .main-img {
  height: 640px;
  width: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  transform: none !important;
  animation: none !important;
  left: 0 !important;
  float: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.main-section .guarantee-bdg,
.main-section .price-drop-bdg,
.main-section .recommended-bdg {
  position: absolute;
}
.main-section .guarantee-bdg {
  top: 40px;
  right: 39px;
  width: 88px;
  height: auto;
  border-radius: 4px;
}
.main-section .price-drop-bdg {
  top: 150px;
  right: 39px;
  width: 56px;
  height: auto;
}
.main-section .recommended-bdg {
  top: 35px;
  left: 39px;
  width: 109px;
  height: auto;
}
.main-section .content {
  background-color: #f5f4ff;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-section .content .trusted-by {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 5px;
}
.main-section h1 {
  font-size: 42px;
  line-height: 48px;
  margin: 10px 0px;
}
.main-section p.subtitle {
  font-size: 17px;
  margin: 0px;
}
.main-section p.subtitle-mobile {
  display: none;
}
.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;
  font-size: 17px;
}
.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: 42px;
  height: 42px;
  border-radius: 50%;
}

.main-section .testimonial .testimonial-text {
  max-width: 400px;
  line-height: 18px;
}

.main-section .testimonial .title {
  font-style: italic;
  color: var(--deep-purple);
  font-size: 12px;
}

.main-section .testimonial .text {
  font-size: 12px;
}
.main-section .action-button-container {
  margin: 0px;
}
.main-section .mobile-content {
  display: none;
}

/* JOIN THOUSANDS SECTION */
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: 40px;
  margin-bottom: 30px;
  padding: 0 20px;
}

/* Customers slider container */
.customers-slider-container {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

/* Prevent layout shift before Slick initializes */
.customers-slider {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: hidden;
}

/* Show slider once initialized */
.customers-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
  display: block;
}

/* 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;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

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

/* Responsive images for screens under 600px */
@media (max-width: 600px) {
  .customer-slide img {
    width: 143px !important;
    height: 224px !important;
    object-fit: cover;
  }
}

/* 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;
}

/* 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: #f5f4ff;
  border-radius: 12px;
  justify-content: space-between;
  padding-left: 26px;
}

/* FALL PREVENTION SECTION */
.fall-prevention {
  text-align: center;
  max-width: 1155px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fall-prevention > p:first-of-type {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 14px;
  color: var(--deep-purple);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.fall-prevention h2 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 700;
  margin: 0 0 24px 0;
  max-width: 500px;
}
.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: auto;
  height: 100%; */
  border-radius: 8px;
}
.fall-prevention .features .feature:nth-child(odd) video,
.fall-prevention .features .feature:nth-child(odd) img {
  order: 2;
}
.fall-prevention .features .feature .info-content {
  text-align: left;
  max-width: 536px;
}
.fall-prevention .features .feature .info-content h4 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 700;
  margin: 0px;
}
.fall-prevention .features .feature .info-content p {
  font-size: 16px;
  line-height: 26px;
}
.fall-prevention .features .feature .info-content .facts-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.fall-prevention .features .feature .info-content .facts-container .first p {
  font-family: "Unna", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 35px;
  margin: 0px;
  margin-top: -1rem;
}

.fall-prevention
  .features
  .feature:nth-child(3)
  .info-content
  .facts-container
  .second
  p {
  max-width: 421px;
}

.fall-prevention
  .features
  .feature
  .info-content
  .facts-container
  .first
  p
  span {
  font-style: italic;
  font-size: 17px;
  line-height: 24px;
}

.fall-prevention .features .feature .info-content .facts-container .second p {
  margin: 0px;
  max-width: 435px;
}

.fall-prevention
  .features
  .feature:nth-child(1)
  .info-content
  .facts-container
  .second
  p {
  max-width: 400px;
}

.fall-prevention .features .feature .info-content .facts-container .first img {
  margin-top: 0.25rem;
  width: 68px;
  height: auto;
}

.fall-prevention .features .feature .info-content .highlight {
  margin-top: 34px;
  background: var(--testimonial-bg);
  padding: 16px 26px;
}

.fall-prevention .features .feature .info-content .highlight img {
  width: 67px;
  height: auto;
  border-radius: 0;
}
.fall-prevention .features .feature .info-content .highlight p {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

/* ANATOMY SECTION */
section.anatomy {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0 40px;
}

section.anatomy h2 {
  font-size: 38px;
  line-height: 45px;
  font-weight: 700;
  margin-bottom: 50px;
}

section.anatomy .content {
  display: grid;
  grid-template-columns: 542px 1fr;
  gap: 30px;
  max-width: 1155px;
  margin: 0 auto;
  text-align: left;
}

section.anatomy .content > img {
  width: 100%;
  max-width: 542px;
  height: auto;
  object-fit: contain;
}

section.anatomy .features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
  align-content: center;
}

section.anatomy .feature-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

section.anatomy .feature-item img {
  width: auto;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

section.anatomy .feature-item .feature-text {
  max-width: 214px;
}

section.anatomy .feature-item .feature-text h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 5px 0;
  color: #000;
}

section.anatomy .feature-item .feature-text p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  color: #000;
}

/* comparison */
section.comparison {
  margin-top: 50px;
  position: relative;
}
section.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100% - 200px);
  background-color: #f5f4ff;
  z-index: -1;
}
section.comparison h2 {
  margin: auto;
  max-width: 690px;
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  padding-top: 50px;
}
section.comparison .comparison-table {
  margin: auto;
  max-width: 690px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 0;
}
section.comparison .comparison-table .comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 15px;
  border-bottom: 1px dotted #6b6b6b;
}
section.comparison .comparison-table .comparison-row:last-child {
  border-bottom: 0;
}
section.comparison .comparison-table .comparison-row.last-row {
  border-bottom: 0;
}
section.comparison .comparison-table .info-text,
section.comparison .comparison-table .maas-bath,
section.comparison .comparison-table .tradicional-bars {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
section.comparison .comparison-table .info-text {
  justify-content: left;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
}
section.comparison .comparison-table .last-row .info-text,
section.comparison .comparison-table .last-row .maas-bath,
section.comparison .comparison-table .last-row .tradicional-bars {
  height: 20px;
}
section.comparison .comparison-table .first-row {
  height: 140px !important;
  width: auto;
  text-align: center;
  position: relative;
}
section.comparison .comparison-table .maas-bath {
  background-color: #dedaff;
  text-align: center;
  min-width: 108px;
}
section.comparison .comparison-table .maas-bath.first-row {
  flex-direction: column;
  border-radius: 4px 4px 0 0;
}
section.comparison .comparison-table .maas-bath .logo {
  width: 82px;
  height: auto;
  margin-top: 30px;
}
section.comparison .comparison-table .maas-bath .maas-bath-img {
  position: absolute;
  /* top: 30px; */
  left: 50%;
  transform: translate(-50%, -50%);
}
section.comparison .comparison-table .tradicional-bars {
  background-color: #ebe9fd;
  text-align: center;
  min-width: 108px;
}
section.comparison .comparison-table .tradicional-bars.first-row {
  border-radius: 4px 4px 0 0;
  height: 100px !important;
  align-self: end;
}

section.comparison .comparison-table .last-row .maas-bath,
section.comparison .comparison-table .last-row .tradicional-bars {
  border-radius: 0 0 4px 4px;
}

section.comparison .comparison-table .tradicional-bars .tradicional-bar-img {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  /* max-width: 70%; */
}
section.comparison .comparison-table .tradicional-bars .text,
section.comparison .comparison-table .maas-bath .text {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 100%;
  font-weight: 700;
}

section.comparison .buy-banner {
  max-width: 622px;
  margin: auto;
  background-color: #daf4a1;
  border-radius: 12px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  padding: 30px 80px;
  margin-top: 50px;
  margin-bottom: 35px;
}
section.comparison .buy-banner .title {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
section.comparison .buy-banner .body {
  font-size: 16px;
  line-height: 25px;
}

/* ASK DOCTORS */
section.ask-doctors h2 {
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}

.ask-doctors .content {
  margin: 29px auto 0px;
  max-width: 922px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 369px 1fr;
  overflow: hidden;
}

.ask-doctors .content .texts {
  background-color: #e6f6cd;
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ask-doctors .content .texts .stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 435px;
}

.ask-doctors .content .texts .stat-item .percentage {
  font-family: "Unna", serif;
  font-weight: 700;
  font-size: 59px;
  line-height: 40px;
  flex-shrink: 0;
  min-width: 100px;
}

.ask-doctors .content .texts .stat-item .description {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.ask-doctors .content .texts .bottom-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 26px;
  margin-top: 10px;
}

/* REAL USERS */
section.real-users {
  max-width: 1140px;
  margin: auto;
}
section.real-users h2 {
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  margin-top: 52px;
}
section.real-users .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 15px;
}
section.real-users .header .stats {
  display: flex;
  flex-direction: column;
}
section.real-users .header .stats .stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 35px;
  border-bottom: 1px solid #e1e1e1;
}
section.real-users .header .stats .stats-row .text {
  flex: 0 0 200px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
section.real-users .header .stats .stats-row .rating {
  flex: 0 0 168px;
  display: flex;
  align-items: center;
}
section.real-users .header .stats .stats-row .score {
  flex: 0 0 40px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
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-family: "Inter", sans-serif;
  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%;
}

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: 6px;
  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: 13.5px;
}
section.real-users .testimonial-card .card-info .user-info {
  display: flex;
  align-items: center;
  gap: 5px;
  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;
  font-weight: 500;
}
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%;
}

/* FAQ */
.faq {
  padding: 60px 0 70px;
  max-width: 920px;
  margin: auto;
}
.faq h2 {
  font-family: "Inter", sans-serif;
  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: 800px;
}
.faq .faq-container .faq-item .header {
  font-weight: 700;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.faq .faq-container .faq-item .body {
  font-size: 16px;
  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;
}

.faq .hurry {
  text-align: center;
}

/* FOOTER */
footer {
  padding: 25px 0px;
  background-color: #000;
  text-align: center;
  margin-top: 296px;
  font-size: 14px;
  font-weight: 300;
  line-height: 22.5px;
  color: #fff;
}
footer .main-footer {
  padding-bottom: 18px;
}
footer .main-footer img {
  width: 148px;
  height: auto;
}
footer .main-footer .links {
  display: flex;
  justify-content: center;
  gap: 14px;
}

footer .main-footer .links span {
  color: #7c7c7c;
  font-size: 15px;
}

footer .main-footer .links a {
  text-decoration: none;
  color: #fff;
}

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

/* UTILITY CLASSES */
.d-none-desktop {
  display: none !important;
}

/* ==================================================
   MEDIA QUERIES - Grouped by Breakpoint
   ================================================== */

/* 1300px and below */
@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;
  }
}

/* 1200px and below */
@media (max-width: 1200px) {
  section.real-users .testimonials-grid {
    column-count: 3;
    padding: 0px 15px;
  }

  /* Anatomy */
  section.anatomy .content {
    gap: 40px;
  }
}

/* 1023px and below */
@media (max-width: 1023px) {
  /* Header */
  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: var(--yellow-bg);
  }

  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 {
    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 {
    justify-content: center;
    margin-top: 20px;
  }
  section.main-section .main-container .content h1 {
    font-size: 35px;
    line-height: 38px;
  }
  section.main-section .main-container .content p.subtitle {
    display: none;
  }
  section.main-section .banner .main-img,
  section.main-section .banner {
    height: 370px;
  }
  .main-section .guarantee-bdg {
    top: 15px;
    right: 10px;
    width: 70px;
    height: auto;
  }
  .main-section .price-drop-bdg {
    top: 100px;
    right: 10px;
    width: 47px;
    height: auto;
  }
  .main-section .recommended-bdg {
    top: 14px;
    left: 20px;
    width: 74px;
    height: auto;
  }
  .main-section .mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 15px;
    background-color: #f8faff;
  }
  .main-section .mobile-content p.subtitle-mobile {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    margin-top: 20px;
    padding: 0 5px;
  }

  .main-section .mobile-content p.subtitle-mobile-footer {
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    margin-top: 20px;
    padding: 0 5px;
  }

  .main-section ul.pros-list {
    margin: 1em auto;
  }

  .main-section ul.pros-list.mobile {
    max-width: 223px;
  }

  .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 span {
    display: block;
  }

  /* Join Thousands */
  section.join-thousands h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .customers-slider-container {
    min-height: 150px;
  }

  .full-width-img {
    width: calc(100% + 30px) !important; /* 100% + (15px padding × 2) */
    max-width: none;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0 !important;
  }

  /* Injury Cause */
  .bg-feature-blue {
    /* background-color: transparent; */
    border-radius: 0;
    justify-content: space-between;
    padding-left: 0px;
  }

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

  .d-none-desktop {
    display: block !important;
  }

  .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 */
  .fall-prevention h2 {
    font-size: 28px;
    line-height: 34px;
    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;
  }

  .fall-prevention .features .feature .info-content h4 {
    font-size: 24px;
    line-height: 35px;
  }

  /* Anatomy */
  section.anatomy {
    padding: 0 15px;
  }

  section.anatomy h2 {
    margin-bottom: 30px;
  }

  section.anatomy .content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  section.anatomy .content > img {
    width: 100%;
    height: auto;
    max-width: 542px;
    margin: 0 auto;
  }

  section.anatomy .features-list {
    grid-template-columns: 1fr 1fr;
    gap: 25px 16px;
    justify-items: center;
  }

  section.anatomy .feature-item {
    flex-direction: column;
    gap: 8px;
  }

  section.comparison h2 {
    font-size: 28px;
    line-height: 34px;
  }

  section.comparison .comparison-table .info-text {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 17px;
  }
}

/* 970px and below */
@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 {
    width: 100%;
  }
  section.real-users .header .stats .stats-row {
    gap: 5px;
  }
  section.real-users .header .stats .stats-row .text {
    flex: 6;
    font-size: 14px;
  }
  section.real-users .header .stats .stats-row .rating {
    flex: 3;
  }
  section.real-users .header .stats .stats-row .score {
    flex: 1;
    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%;
  }
}

/* 900px and below */
@media (max-width: 900px) {
  section.real-users .testimonials-grid {
    column-count: 2;
  }
}

/* 768px and below */
@media (max-width: 768px) {
  /* Logo Slider */
  .logos-stripe::before,
  .logos-stripe::after {
    width: 80px;
  }

  /* Comparison */
  section.comparison {
    padding: 0px 18px;
  }

  section.comparison .buy-banner {
    flex-direction: column;
    padding: 20px 25px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
  }

  /* FAQ */
  .faq {
    padding: 10px 0 0 0;
    max-width: 920px;
    margin: auto;
  }

  .faq h2 {
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    line-height: 120%;
    margin-top: 28px;
  }

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

  .faq .faq-container .faq-item .content {
    max-width: 280px;
  }

  .faq .faq-container .faq-item .header {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 10px;
  }

  .faq .faq-container .faq-item .body {
    line-height: 24px;
  }

  /* Footer */
  footer {
    margin-top: 295px;
  }

  /* CTA Mobile */
  .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;
  }
}

/* 600px and below */
@media (max-width: 600px) {
  .action-button-container button {
    width: 100% !important;
    min-width: unset;
  }

  section.comparison::before {
    height: calc(100% - 245px);
  }

  section.comparison h2 br {
    display: none;
  }
  section.comparison .comparison-table .comparison-row {
    gap: 5px;
  }
  section.comparison .comparison-table {
    margin-top: 40px;
  }
  section.comparison .comparison-table .first-row {
    height: 100px !important;
  }
  section.comparison .comparison-table .maas-bath .maas-bath-img {
    width: 95px;
    height: auto;
    top: 10px;
  }
  section.comparison .comparison-table .maas-bath .logo {
    width: 54px;
  }
  section.comparison .comparison-table .tradicional-bars.first-row {
    height: 75px !important;
  }
  section.comparison .comparison-table .tradicional-bars .tradicional-bar-img {
    width: 100px;
    height: auto;
  }
  section.comparison .comparison-table .tradicional-bars .text,
  section.comparison .comparison-table .maas-bath .text {
    font-size: 12px;
    bottom: 5px;
  }

  section.comparison .comparison-table .tradicional-bars .text {
    bottom: 0;
  }

  /* Real Users */
  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%;
  }

  section.real-users .testimonial-card .card-info {
    padding: 14px 22px;
  }

  /* 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;
  }

  section.main-section .banner .main-img.footer-mobile,
  section.main-section .banner.footer-mobile {
    height: 438px;
  }

  .main-section .recommended-bdg.footer-mobile {
    width: 85px;
  }
}

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

  .logo-slider-container {
    min-height: 35px;
  }
}

/* 480px and below */
@media (max-width: 480px) {
  .show-480 {
    display: block !important;
  }

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

  .logo-slider-container {
    min-height: 25px;
  }

  .logos-stripe .logo-slider .logo-item img {
    transform: scale(0.7);
  }

  .fall-prevention .features .feature {
    margin-bottom: 50px;
  }

  .fall-prevention .features .feature .info-content .highlight {
    padding: 21px 14.5px 14.5px;
  }

  .fall-prevention .features .feature:nth-child(2) .info-content > p {
    letter-spacing: 0.01em;
  }

  .fall-prevention .features .feature:nth-child(4) .info-content > p {
    letter-spacing: 0.01em;
  }

  .fall-prevention .features .feature:nth-child(5) .info-content > p {
    letter-spacing: 0.01em;
  }

  .fall-prevention .features .feature:nth-child(5) .info-content .highlight p {
    letter-spacing: 0.005em;
  }

  .testimonial {
    padding-bottom: 30px;
  }

  /* Anatomy */
  section.anatomy .content > img {
    max-width: 339.5px;
  }

  section.anatomy .features-list {
    gap: 20px 12px;
  }

  section.anatomy .feature-item .feature-text {
    max-width: 163px;
  }

  section.comparison .comparison-table .info-text {
    max-width: 80px;
  }

  section.comparison .buy-banner .title {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .fall-prevention .features .feature.alt {
    grid-template-columns: 537px 1fr;
  }
}

/* 481px and above */
@media (min-width: 481px) {
  .show-480 {
    display: none;
  }
}

/* 401px and above */
@media (min-width: 401px) {
  .show-400 {
    display: none;
  }
}
