/* GLOBAL */
:root {
  --yellow-bg: #fff200;
  --yellow-border: #cab303;
  --deep-purple: #5346d3;
  --testimonial-bg: #a7e0524a;
  --heading-color: #0e807e;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Baloo 2", sans-serif;
  color: var(--heading-color);
}

/* LOGO SLIDER */
.logos-stripe {
  border-top: 1px dotted #caab85;
  max-width: 1183px;
  margin: 0 auto;
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

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

.logo-slider {
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: logo-marquee var(--logo-marquee-duration, 24s) linear infinite;
}

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

@keyframes logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--logo-marquee-distance, 50%)), 0, 0);
  }
}

.logos-stripe .logo-slider .logo-item img {
  width: 50px;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logos-stripe .logo-slider .logo-item p {
  margin: 8px 0 0;
}

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

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

/* ACTION BUTTON */
.action-button-container {
  width: fit-content;
  text-align: center;
  margin: auto;
}

.action-button-container button {
  background-color: var(--yellow-bg);
  border: 1px solid var(--yellow-border);
  border-radius: 39px;
  margin: 0 auto;
  color: #000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  min-width: 303px;
  padding: 0px 20px;
  cursor: pointer;
  font-family: "Baloo 2", 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: #b9b9b9;
}
.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 .container {
  max-width: 1158px;
}

header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header > div .logo,
header > div .menu {
  /* width: 100%; */
  display: flex;
  align-items: center;
}
header > div .logo img {
  width: 215px;
  /* 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: transparent;
  border: none;
  color: #000;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-left: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header .menu > img {
  width: 29px;
  height: auto;
  margin-left: 9px;
  /* padding-right: 90px; */
}

/* MAIN SECTION */
section.main-section {
  background-color: #fffbf6;
}

section.main-section.bottom {
  background-color: #f5fbfb;
  margin-top: 8px;
}

section.main-section .main-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-bottom: 35px;
  margin-left: 12%;
}

section.main-section.bottom .main-container {
  padding: 35px 0;
}

section.main-section .banner {
  /* height: 640px;
  position: relative;
  overflow: hidden; */
}

section.main-section .banner .hero-video-wrap {
  position: relative;
  /* width: 653px; */
  max-width: 100%;
  padding-top: 40px;
}

section.main-section .banner .hero-video {
  display: block;
  /* width: 100%; */
  height: auto;
  border-radius: 16px;
}

section.main-section .banner .hero-video-mobile,
section.main-section .banner .hero-floating-mobile {
  display: none;
}

section.main-section .banner .hero-floating {
  position: absolute;
  z-index: 2;
}

section.main-section .banner .hero-floating-desktop {
  /* width: 246px; */
  height: auto;
  left: -143px;
  bottom: 20px;
}

section.main-section .banner .hero-guarantee-badge {
  position: absolute;
  z-index: 2;
  width: 82px;
  height: auto;
  top: 30px;
  right: -6px;
}

/* Prevent slider CSS from affecting the video/main image only */
section.main-section .banner .main-img {
  height: auto;
  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 .banner .customers {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
}

.main-section.bottom .banner .customers {
  padding-left: 40px;
  justify-content: center;
}

.main-section .banner .customers p {
  max-width: 275px;
  font-size: 14px;
}

.main-section .content {
  /* padding-left: 40px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
}
.main-section .content .trusted-by {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  gap: 5px;
}
.main-section h1 {
  font-size: 48px;
  line-height: 50px;
  margin: 10px 0px;
}

.main-section h1 img {
  width: 44px;
  height: 46px;
  vertical-align: -0.15em;
}

.main-section p.subtitle {
  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;
}
.main-section ul.pros-list li img,
.main-section ul.pros-list li svg {
  margin-right: 9px;
}
.main-section ul.pros-list li svg.checkmark {
  color: var(--heading-color);
  flex-shrink: 0;
}
.main-section .action-button-container {
  margin: 0px;
}
.main-section .mobile-content {
  display: none;
}

.first-bg {
  position: relative;
  padding-bottom: 50px;
  margin: 0 auto;
  max-width: 1440px;
}

.first-bg::before {
  content: "";
  position: absolute;
  top: 13%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f4fafa;
  z-index: -1;
}

/* JOIN THOUSANDS SECTION */
section.join-thousands {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 12px;
  max-width: 1200px;
}

section.join-thousands h2 {
  font-size: 48px;
  line-height: 62px;
  margin: 32px 0 16px;
  padding: 0 20px;
}

section.join-thousands p {
  max-width: 759px;
  margin: 0 auto;
  line-height: 26px;
}

/* Video optimization for PageSpeed Insights */
.join-thousands-video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 32px auto;
  border-radius: 8px;
}

.join-thousands-video-desktop {
  display: block;
  width: 100%;
  max-width: 956px;
}

.join-thousands-video-mobile {
  display: none;
  width: 100%;
  max-width: 100%;
}

.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: 955px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fall-prevention h2 {
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
  margin: 0 0 24px 0;
  max-width: 642px;
}

.fall-prevention .features .feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 43px;
  align-items: center;
  margin-bottom: 50px;
}

.fall-prevention .features .feature video,
.fall-prevention .features .feature img {
  /* width: auto;
  height: 100%; */
  border-radius: 16px;
}
.fall-prevention .features .feature:nth-child(even) video,
.fall-prevention .features .feature:nth-child(even) img {
  order: 2;
}
.fall-prevention .features .feature .info-content {
  text-align: left;
  max-width: 470px;
}
.fall-prevention .features .feature .info-content h3 {
  font-size: 32px;
  line-height: 36px;
  margin: 0px 0px 16px 0px;
}

.fall-prevention .features .feature .info-content h3 ol {
  padding-left: 27px;
  margin: 0;
}

.fall-prevention .features .feature .info-content h3 ol li {
  color: #020202;
}

.fall-prevention .features .feature .info-content h3 ol li::marker {
  color: var(--heading-color);
}

.fall-prevention .features .feature .info-content ul {
  line-height: 28px;
}

.fall-prevention .features .feature .info-content ul li + li {
  margin-top: 16px;
}

.fall-prevention .promo-banner {
  background: url("https://cdn.29next.store/media/wuzutech/uploads/happy-birdy-humhum-cta-bg.webp")
    no-repeat center center / cover;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.fall-prevention .promo-banner .promo-content {
  padding: 70px 64px 77px 402px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.fall-prevention .promo-banner .promo-content > p {
  font-family: "Baloo 2", sans-serif;
  font-size: 26px;
  line-height: 34px;
  color: #fff;
}

.fall-prevention .promo-banner .promo-content .action-button-container {
  margin: 0;
}

.fall-prevention .promo-banner .promo-content .action-button-container .status {
  color: #fff;
}

.fall-prevention .promo-banner .promo-footer {
  background-color: #010a0b;
  padding: 12px 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.fall-prevention .promo-banner .promo-footer .seen-logos {
  display: flex;
  gap: 28px;
  align-items: center;
}

.fall-prevention .promo-banner .promo-footer .seen-logos img {
  width: 100%;
  height: auto;
}

/* instructions */
.instructions {
  text-align: center;
  max-width: 955px;
  margin: 0 auto;
  padding: 38px 20px 44px;
}

.instructions h2 {
  font-size: 48px;
  line-height: 62px;
  margin: 0;
}

.instructions .instruction {
  width: 100%;
  max-width: 281px;
}

.instructions .instruction .texts {
  text-align: center;
}

.instructions .instruction h3 {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 8px;
}

.instructions .instruction .texts p {
  line-height: 26px;
  margin: 0;
}

.instructions .instruction .img-wrapper {
  width: 100%;
  max-width: 281px;
  height: auto;
  max-height: 413px;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .instructions-bird {
    display: none;
  }
}

.instructions .instructions-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
}

.instructions .instructions-items .slick-dots {
  padding: 0;
  margin: 5px auto;
}

ul.slick-dots li.slick-active button {
  background-color: #000 !important;
}

@media (max-width: 900px) {
  .instructions .instructions-items {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

/* comparison */
section.comparison {
  position: relative;
}
section.comparison::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(100% - 80px);
  background-color: #fffbf6;
  z-index: -1;
}
section.comparison h2 {
  margin: auto;
  max-width: 690px;
  font-size: 48px;
  line-height: 46px;
  text-align: center;
  padding: 44px 0 20px;
}
section.comparison .comparison-table {
  margin: auto;
  max-width: 886px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 0;
}
section.comparison .comparison-table .comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px dotted #caab85;
}
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 .happy-birdy,
section.comparison .comparison-table .tradicional-bars {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
}
section.comparison .comparison-table .info-text {
  justify-content: left;
  font-size: 18px;
  padding-left: 50px;
  min-width: 180px;
}
section.comparison .comparison-table .last-row .info-text,
section.comparison .comparison-table .last-row .happy-birdy,
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 .happy-birdy {
  border: 1px dotted #caab85;
  background-color: #f5fbfb;
  text-align: center;
  min-width: 108px;
}
section.comparison
  .comparison-table
  .comparison-row:not(.last-row)
  .happy-birdy:not(.first-row) {
  border-top: none;
  border-bottom: none;
}
section.comparison .comparison-table .happy-birdy.first-row {
  border-bottom: none;
}
section.comparison .comparison-table .last-row .happy-birdy {
  border-top: none;
}
section.comparison .comparison-table .happy-birdy.first-row {
  flex-direction: column;
  border-radius: 4px 4px 0 0;
  height: 115px !important;
  align-self: end;
}

section.comparison .comparison-table .happy-birdy.first-row .content,
section.comparison .comparison-table .tradicional-bars first-row .content {
  margin-top: 60px;
}

section.comparison .comparison-table .happy-birdy .brand-logo {
  width: 155px;
  height: auto;
}

section.comparison .comparison-table .happy-birdy .logo,
section.comparison .comparison-table .tradicional-bars.first-row .logo {
  width: 118px;
  height: auto;
}

section.comparison .comparison-table .tradicional-bars.first-row .logo {
  margin-top: 8px;
}

section.comparison .comparison-table .happy-birdy .happy-birdy-img {
  position: absolute;
  /* top: 30px; */
  left: 50%;
  transform: translate(-50%, -50%);
}
section.comparison .comparison-table .tradicional-bars {
  text-align: center;
  min-width: 108px;
}
section.comparison .comparison-table .tradicional-bars.first-row {
  border-radius: 4px 4px 0 0;
  height: 52px !important;
  align-self: end;
}

section.comparison .comparison-table .last-row .happy-birdy,
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 .happy-birdy .text {
  width: 100%;
  font-size: 17px;
  line-height: 100%;
  font-weight: 700;
}

/* SVG checkmark styling */
section.comparison .happy-birdy svg {
  color: var(--heading-color);
}

section.comparison .buy-banner {
  max-width: 728px;
  margin: auto;
  background-color: var(--heading-color);
  color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
  margin-top: 50px;
  margin-bottom: 35px;
}

section.comparison .buy-banner .info-text {
  max-width: 585px;
}

section.comparison .buy-banner .title {
  font-family: "Baloo 2", sans-serif;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 10px;
}
section.comparison .buy-banner .body {
  font-size: 16px;
  line-height: 28px;
}

/* WHATS INCLUDED */
.whats-included {
  max-width: 954px;
  margin: 48px auto 50px;
}

.whats-included h2 {
  font-size: 48px;
  line-height: 62px;
  text-align: center;
  margin: 0;
  overflow: hidden;
}

.whats-included .items-container {
  margin: 21px 0;
  border-radius: 16px;
  background: url("https://cdn.29next.store/media/wuzutech/uploads/happy-birdy-hum-whats-included-bg.webp")
    no-repeat center center / cover;
  display: flex;
  justify-content: flex-end;
  padding: 70px 80px 48px;
}

.whats-included .items-container .items-list-columns {
  display: flex;
  flex-direction: column;
}

.whats-included .items-container .items-list-columns ol {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  line-height: 36px;
  margin: 0;
  padding-left: 26px;
}

.whats-included .items-container .items-list-columns .col-two {
  margin-top: 0;
}

.whats-included .specs {
  background-color: #f5fbfb;
  border-radius: 16px;
  padding: 20px 16px;
}

.whats-included .specs h3 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 32px;
  line-height: 62px;
}

.whats-included .specs .specs-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.whats-included .specs .specs-table p {
  border-top: 1px dotted #475858;
  margin: 0;
  padding: 13px 0 18px;
}

.second-bg {
  position: relative;
  padding-bottom: 50px;
  margin: 0 auto;
  max-width: 1440px;
}

.second-bg::before {
  content: "";
  position: absolute;
  top: 26%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fffbf6;
  z-index: -1;
}

/* REAL USERS */
section.real-users {
  max-width: 1000px;
  margin: auto;
}

section.real-users h2 {
  font-size: 48px;
  line-height: 46px;
  font-weight: 800;
  text-align: center;
  margin-top: 52px;
}
section.real-users .header {
  display: flex;
  justify-content: space-between;
}
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 145px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
section.real-users .header .stats .stats-row .rating {
  display: flex;
  align-items: center;
}
section.real-users .header .stats .stats-row .score {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
section.real-users .header .total-score {
  text-align: center;
  align-content: center;
}
section.real-users .header .total-score .main-score {
  font-family: "Inter", sans-serif;
  font-size: 70px;
  line-height: 120%;
  font-weight: 700;
}
section.real-users .header .total-score img {
  margin: 10px 0px;
}
section.real-users .header .total-score .info {
  font-size: 14px;
  line-height: 120%;
}

section.real-users .testimonials-grid {
  column-count: 3;
  column-gap: 25px;
  margin-top: 35px;
  margin-bottom: 35px;
}
section.real-users .testimonial-card {
  break-inside: avoid;
  border-radius: 6px;
  margin-bottom: 35px;
  display: inline-block;
  width: 100%;
  max-width: 308px;
}
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-top: 13.5px;
}
section.real-users .testimonial-card .card-info .rating {
  display: flex;
  align-items: center;
}
section.real-users .testimonial-card .card-info .review {
  margin-top: 8px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.real-users .testimonial-card .card-info .review .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
}
section.real-users .testimonial-card .card-info .review .body {
  line-height: 162%;
}

section.real-users .testimonial-card .card-info .review .signature {
  font-size: 14px;
  font-weight: bold;
}

section.real-users .testimonial-card .card-info .review .signature span {
  font-weight: 400;
}

/* FAQ */
.faq {
  padding: 45px 0 70px;
  max-width: 1010px;
  margin: auto;
}
.faq h2 {
  font-size: 48px;
  line-height: 46px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 30px;
}
.faq .faq-container .faq-item {
  border: 1px solid #4f4f4f;
  font-size: 16px;
  line-height: 26px;
  padding: 24px 29px 17px 42px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq .faq-container .faq-item .content {
  width: 100%;
}
.faq .faq-container .faq-item .header {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.faq .faq-container .faq-item .body {
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              margin-top 0.35s ease;
}
.faq .faq-container .faq-item.open .body {
  max-height: 600px;
  max-width: 800px;
  opacity: 1;
  margin-top: 14px;
}
.faq .faq-container .faq-item button {
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
  line-height: 0;
}
.faq .faq-container .faq-item button img {
  width: 30px;
  height: 30px;
  display: block;
}

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

/* FOOTER */
footer {
  padding: 25px 0px;
  text-align: center;
  margin-top: 200px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22.5px;
  color: #808080;
}
footer .main-footer {
  padding-bottom: 18px;
  border-bottom: 1px solid #dfdfdf;
}

footer .main-footer .links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

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

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

footer .copyright {
  margin-top: 18px;
}

/* 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-around;
    align-items: center;
    gap: 0;
    width: 100%;
  }

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

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

/* 1023px and below */
@media (max-width: 1023px) {
  /* Header */
  header {
    border-bottom: 1px solid #e0e0e0;
  }

  header > div {
    justify-content: space-between;
  }

  header > div .logo img {
    padding-left: 15px;
    width: 141px;
    height: 21px;
  }
  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: #000;
    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; */
    flex-direction: column;
    gap: 0;
    padding-bottom: 56px;
    margin-left: 0;
  }
  section.main-section.bottom .main-container {
    padding: 0;
  }

  section.main-section .main-container .banner {
    order: 2;
  }

  .logos-stripe {
    margin: 25px 10px 10px;
  }

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

  .main-section.bottom .mobile-content .customers {
    margin: 20px 0;
  }

  .mobile-content .customers img {
    width: 149px;
    height: auto;
  }

  .mobile-content .customers p {
    font-size: 14px;
    margin: 0;
  }

  section.main-section .main-container .content {
    padding-left: 0px;
    order: 1;
    text-align: center;
    max-width: none;
  }
  section.main-section .main-container .content .pros-list,
  section.main-section .main-container .content .action-button-container {
    display: none;
  }
  section.main-section .main-container .content .trusted-by {
    flex-direction: column;
    justify-content: center;
    margin-top: 15px;
  }
  section.main-section .main-container .content h1 {
    font-size: 36px;
    line-height: 38px;
  }

  .main-section h1 img {
    width: 32px;
    height: 34px;
    vertical-align: -0.15em;
  }

  section.main-section .main-container .content p.subtitle {
    display: none;
  }
  section.main-section .banner,
  section.main-section .banner .hero-video-wrap,
  section.main-section .banner .hero-video {
    width: 100%;
    height: auto;
  }

  section.main-section .banner .hero-video-wrap {
    padding-top: 4px;
  }

  section.main-section .banner .hero-video-desktop,
  section.main-section .banner .hero-floating-desktop {
    display: none;
  }

  section.main-section .banner .hero-video-mobile,
  section.main-section .banner .hero-floating-mobile {
    display: block;
    border-radius: 0;
  }

  section.main-section .banner .hero-floating-mobile {
    left: 8px;
    bottom: -36px;
  }

  section.main-section .banner .hero-guarantee-badge {
    width: 69px;
    top: 22px;
    left: 16px;
    right: auto;
  }

  .main-section .mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 15px;
  }
  .main-section .mobile-content p.subtitle-mobile {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    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 ul.pros-list li svg.checkmark {
    margin-top: 4px;
  }

  .main-section .mobile-content .action-button-container {
    width: auto;
  }
  .main-section .mobile-content .action-button-container .cta-btn {
    max-width: 342px;
    margin: auto;
  }
  

  /* Join Thousands */
  .join-thousands .join-thousands-video {
    margin: 20px auto;
  }

  section.join-thousands h2 {
    font-size: 32px;
    line-height: 33px;
    margin: 0;
  }

  .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;
  }

  /* Fall Prevention */
  .fall-prevention h2 {
    font-size: 32px;
    line-height: 33px;
    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 h3 {
    font-size: 26px;
    line-height: 30px;
  }

  .fall-prevention .features .feature .info-content ul {
    padding: 0 0 0 18px;
  }

  .fall-prevention .features .feature .info-content ul li + li {
    margin-top: 10px;
  }

  section.comparison h2 {
    font-size: 32px;
    line-height: 34px;
    padding: 20px 0 15px;
  }

  section.comparison .comparison-table .info-text {
    font-size: 15px;
    line-height: 20px;
    padding-left: 8px;
  }

  .whats-included h2 {
    font-size: 32px;
    line-height: 34px;
    padding: 0px 25px;
  }

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

/* 970px and below */
@media (max-width: 970px) {
  section.real-users h2 {
    margin-top: 32px;
    font-size: 34px;
    line-height: 40px;
  }
  section.real-users .header .stats {
    width: 100%;
  }
  section.real-users .header .stats .stats-row {
    gap: 5px;
    margin: 0 32px;
  }
  section.real-users .header .stats .stats-row .text {
    flex: 5;
    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: 16px;
  }

  section.real-users .header .total-score img {
    margin: 0;
  }

  section.real-users .header .customers-img {
    display: flex;
    justify-content: center;
  }
}

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

/* 768px and below */
@media (max-width: 768px) {
  .d-none-tablet {
    display: none !important;
  }

  section.real-users .header {
    flex-direction: column;
    gap: 18px;
    align-items: unset;
  }

  section.real-users .testimonials-grid {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .first-bg {
    padding-bottom: 0px;
  }

  .first-bg::before {
    top: 10%;
  }

  /* Responsive Video for mobile */
  .join-thousands-video-desktop {
    display: none !important;
  }

  .join-thousands-video-mobile {
    display: block !important;
  }

  /* Logo Slider */
  .logos-stripe::before,
  .logos-stripe::after {
    width: 80px;
  }

  .fall-prevention .promo-banner {
    border-radius: 0;
    background:
      linear-gradient(0deg, #000 0%, transparent 95%),
      url("https://cdn.29next.store/media/wuzutech/uploads/happy-birdy-humhum-cta-bg.webp")
        no-repeat bottom 140% left 22%;
  }

  .fall-prevention .promo-banner .promo-content {
    padding: 160px 20px 25px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .fall-prevention .promo-banner .promo-content > p {
    font-size: 22px;
    line-height: 27px;
  }

  .fall-prevention .promo-banner .promo-footer .seen-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .fall-prevention .promo-banner .promo-footer .seen-logos img {
    width: auto;
    max-height: 22px;
  }

  .instructions h2 {
    font-size: 32px;
    line-height: 33px;
  }

  .instructions .instruction .img-wrapper {
    width: 100%;
    max-width: 293px;
    max-height: 341px;
  }

  .instructions .instruction .img-wrapper img {
    max-width: 293px;
    max-height: 341px;
    border-radius: 16px;
  }

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

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

  .whats-included .items-container {
    border-radius: 0;
    flex-direction: column;
    padding: 93% 0 0;
    background: #eaedf3
      url("https://cdn.29next.store/media/wuzutech/uploads/happy-birdy-hum-whats-included-bg-mob.webp")
      no-repeat top center / contain;
  }

  .whats-included .items-container .items-list-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
    align-items: start;
    padding: 0 14px 16px 34px;
    justify-items: center;
  }

  .whats-included .items-container .items-list-columns ol {
    margin: 0;
    padding-left: 18px;
    line-height: 1.2;
    gap: 16px;
  }

  .whats-included .items-container .items-list-columns .col-two {
    padding-left: 12px;
  }

  .second-bg::before {
    top: 22.5%;
  }

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

  .faq h2 {
    font-size: 32px;
    line-height: 34px;
    margin: 20px 0;
  }

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

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

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

  section.main-section.bottom {
    margin-top: 18px;
  }

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

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

  section.comparison::before {
    height: 100%;
  }

  section.comparison h2 br {
    display: none;
  }
  section.comparison .comparison-table {
    margin-top: 40px;
  }
  section.comparison .comparison-table .first-row {
    height: 100px !important;
  }
  section.comparison .comparison-table .happy-birdy .happy-birdy-img {
    width: 69px;
    height: auto;
    top: 10px;
  }
  section.comparison .comparison-table .happy-birdy .logo,
  section.comparison .comparison-table .tradicional-bars .logo {
    width: 77px !important;
  }
  section.comparison .comparison-table .tradicional-bars.first-row {
    height: 35px !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 .happy-birdy .text {
    font-size: 12px;
    bottom: 5px;
  }

  /* Real Users */
  section.real-users .header .customers-img img {
    width: 90%;
    height: auto;
  }

  section.real-users .testimonials-grid {
    column-count: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px 0 0;
  }
  section.real-users .testimonial-card {
    display: block;
    break-inside: auto;
    width: 100%;
    max-width: none;
  }

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

  .second-bg {
    padding-bottom: 20px;
  }

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

  .main-section ul.pros-list {
    margin: 1em 10px .5em;
  }

  .main-section.bottom ul.pros-list {
    max-width: 269px;
    margin: 1em auto;
  }

  .mobile-content .customers p {
    max-width: 180px;
  }

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

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

  section.join-thousands p {
    max-width: 346px;
  }

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

  .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;
  }

  .instructions {
    padding: 20px;
  }

  .instructions .instructions-items {
    margin-top: 20px;
  }

  section.comparison .comparison-table .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  section.comparison .comparison-table .info-text,
  section.comparison .comparison-table .happy-birdy,
  section.comparison .comparison-table .tradicional-bars {
    min-width: 0;
  }

  section.comparison .comparison-table .info-text {
    font-size: 13px;
    padding-left: 12px;
    line-height: 1.3;
  }

  section.comparison .comparison-table .happy-birdy .brand-logo {
    width: 72px;
  }

  section.comparison .buy-banner .title {
    font-size: 32px;
    line-height: 37px;
  }

  .whats-included {
    margin: 20px 0;
  }

  .whats-included .items-container {
    margin-bottom: 10px;
  }

  .whats-included .specs {
    padding-bottom: 5px;
  }

  .whats-included .specs h3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .whats-included .specs .specs-table {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .whats-included .specs .specs-table p:last-child {
    display: none;
  }

  section.real-users h2 {
    margin: 20px 0;
  }

  section.real-users .testimonial-card .card-info .review {
    padding: 0 4px;
  }

  footer .main-footer {
    padding-bottom: 12px;
  }

  footer .copyright {
    margin-top: 12px;
  }
}

@media (min-width: 1024px) {
  .logos-stripe .logo-slider .logo-item {
    padding: 0 70px;
  }

  .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;
  }
}
