@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap");
/* Font loading optimized with display=swap for better performance */

:root {
  /* Background Colors */
  --color-background: #f4f8fb;
  --color-background-white: #ffffff;
  --color-background-light: #f5f8fa;
  --color-background-card: #fdfeff;

  /* Text Colors */
  --color-text-primary: #0d0e0e;
  --color-text-secondary: #606060;
  --color-text-white: #ffffff;
  --color-text-black: #000000;
  --color-text-dark: #16191a;
  --color-text-dark-gray: #2d2d2d;
  --color-text-medium-gray: #666666;
  --color-text-light-gray: #999999;
  --color-text-placeholder: #b3b3b3;

  /* Primary Colors */
  --color-primary: #338bff;
  --color-primary-light: #2cbcff;
  --color-accent-pink: #ff4594;

  /* Border & Divider Colors */
  --color-border-light: #e4efff;
  --color-border-gray: #e0e0e0;
  --color-border-dark: #333333;

  /* Accent Colors */
  --color-accent-purple: #e1daf7;
  --color-accent-green: #01875f;
  --color-accent-green-light: #019d6e;
}

body {
  background-color: var(--color-background);
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Thai", sans-serif;
  min-height: 100vh;
  /* Ensure smooth native scrolling on mobile */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

html {
  /* Prevent horizontal scroll on mobile */
  overflow-x: hidden;
  /* Smooth native scrolling on mobile */
  -webkit-overflow-scrolling: touch;
  /* Ensure proper touch handling */
  touch-action: pan-y;
}

/* Ensure body allows vertical scrolling on mobile */
@media (max-width: 768px) {
  body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    touch-action: pan-y;
  }
}

/* Animation Classes */
.animate-class {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.animate-class.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-class-item {
  opacity: 0;
  scale: 0;
  transition: all 0.6s ease;
}

.animate-class-item.show {
  opacity: 1;
  scale: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.nav-container {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0px 20px;
}

.navigation-bar {
  position: fixed;
  top: 20px;
  width: 90%;
  max-width: 1200px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 0px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px);
  border-radius: 100px;
  z-index: 1100;
  transition: all 0.3s ease-in-out, width 0.3s ease, scale 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}

@keyframes navigationBarBounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(0.96, 1.04);
  }
  60% {
    transform: scale(1.03, 0.97);
  }
  100% {
    transform: scale(1);
  }
}

.navigation-bar-bounce {
  animation: navigationBarBounce 0.45s cubic-bezier(0.34, 1.56, 0.64, 1)
    forwards;
}

.navigation-bar.scrolled {
  width: 400px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 90.5px 0px rgba(0, 0, 0, 0.18);
}

.navigation-bar-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease-in-out, scale 0.3s ease-in-out,
    transform 0.2s ease-in-out;
}

.navigation-bar-logo {
  width: auto;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.logo-icon {
  width: 130px;
  height: 40px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  border-radius: 11.343px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-hdmall {
  position: absolute;
  left: -53%;
  top: -0.16%;
  width: 283.61%;
  height: 100.33%;
  max-width: none;
}

.navigation-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
  padding: 10px 15px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  background: transparent;
}

.nav-link:hover {
  background: var(--color-background-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.navigation-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  color: var(--color-text-primary);
  /* background: linear-gradient(260deg, #51c7fe 7.57%, #338bff 92.43%); */
  background: var(--color-text-white);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: "Noto Sans Thai", sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.download-app-btn-gradient {
  color: var(--color-text-white);
  /* background: linear-gradient(260deg, #51c7fe 7.57%, #338bff 92.43%); */
  background: var(--color-primary);

  span {
    color: var(--color-text-white) !important;
  }
}

.download-app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-app-btn span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.download-app-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-cta,
.jib-cta {
  font-family: "Noto Sans Thai", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 20px;
  background: white;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: linear-gradient(260deg, #51c7fe 7.57%, #338bff 92.43%);
}

.hero-cta span,
.jib-cta span {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-white);
}

.hero-cta:hover,
.jib-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-cta svg,
.jib-cta svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--color-text-white);
}

.jib-cta {
  display: none;
  text-decoration: none;
  background: var(--color-text-white);
  padding-right: 70px;
  position: relative;
  overflow: hidden;
}

.jib-cta span {
  color: var(--color-text-primary);
}

.jib-icon {
  width: 60px;
  bottom: -10px;
  position: absolute;
  right: 0;
}

.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.hamburger-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger-btn svg {
  width: 24px;
  height: 24px;
  color: var(--color-text-primary);
}

.hamburger-btn.active svg {
  display: none;
}

.hamburger-btn.active::before {
  content: "×";
  font-size: 28px;
  line-height: 1;
  color: var(--color-text-primary);
  font-weight: 300;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  right: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(45px);
  border-radius: 20px;
  box-shadow: 0px 0px 90.5px 0px rgba(0, 0, 0, 0.18);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-black);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--color-primary-light);
}

.hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: var(--color-background);
  box-sizing: border-box;
  padding-top: 60px;
  background-image: url("https://static.hdmall.co.th/1000x2000/webp/system/image_attachments/images/000/473/511/original/bg_%281%29.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  h1 {
    font-size: 50px;
    font-weight: bold;
    color: var(--color-text-primary);
    text-align: center;
    margin: 0px;
    margin-bottom: 15px;
    transition-delay: 100ms;

    span {
      color: var(--color-primary-light);
    }
  }

  p {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-primary);
    text-align: center;
    margin: 0px;
    margin-bottom: 10px;
    transition-delay: 200ms;
  }
}

.hero-section-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 25px 0px;
  transition-delay: 300ms;
}

.banner-image {
  width: 100%;
  max-width: 1150px;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-delay: 400ms;
}

.banner-image-desktop {
  width: 90%;
  height: auto;
  display: block;
  object-fit: contain;
  z-index: 1001;
}

.overlay-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  object-fit: cover;
  gap: 10px;
  z-index: 900;
}

.overlay-item-image {
  display: flex;
  width: auto;
  height: 100px;
  object-fit: contain;
  position: absolute;
  z-index: 1002;
}

.overlay-item-image#overlay-1 {
  height: 120px;
  left: 200px;
  bottom: 550px;
  transition-delay: 400ms;
}

.overlay-item-image#overlay-2 {
  height: 80px;
  left: 260px;
  bottom: 400px;
  transition-delay: 450ms;
}

.overlay-item-image#overlay-3 {
  height: 40px;
  left: 180px;
  bottom: 300px;
  transition-delay: 500ms;
}

.overlay-item-image#overlay-4 {
  height: 80px;
  left: 300px;
  bottom: 100px;
  transition-delay: 550ms;
}

.overlay-item-image#overlay-5 {
  height: 60px;
  right: 350px;
  bottom: 630px;
  transition-delay: 600ms;
}

.overlay-item-image#overlay-6 {
  height: 50px;
  right: 100px;
  bottom: 380px;
  transition-delay: 650ms;
}

.overlay-item-image#overlay-7 {
  height: 100px;
  right: 200px;
  bottom: 200px;
  transition-delay: 700ms;
}

.overlay-item-image#overlay-8 {
  height: 100px;
  right: 250px;
  bottom: 500px;
  transition-delay: 750ms;
}

.phone-screen-container {
  position: absolute;
  right: 40.3%;
  top: 5%;
  width: 20%;
  height: auto;
  z-index: 1000;
}

.phone-screen {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.phone-screen.active {
  opacity: 1;
}

.slideshow-indicators {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  transition: opacity 0.3s ease;
  z-index: 1004;
}

.phone-screen-container:hover .slideshow-indicators {
  opacity: 1;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--color-text-white);
  padding: 0;
}

.indicator-dot:hover {
  background: var(--color-text-secondary);
  transform: scale(1.2);
}

.indicator-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

.banner-image-mobile {
  display: none;
}

.testimonials-section {
  background-color: var(--color-background-white);
  border-radius: 50px;
  padding: 70px 0px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  width: 100%;
  height: fit-content;
}

.testimonials-title {
  font-family: "Noto Sans Thai", "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 35px;
  text-align: center;
  color: var(--color-text-black);
  max-width: 810px;
  line-height: normal;
  margin: 0;
}

.testimonials-title .highlight-number {
  background: linear-gradient(
    202.563deg,
    rgb(81, 199, 254) 7.565%,
    rgb(51, 139, 255) 92.435%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonials-container {
  padding-top: 10px;
  height: 220px;
  display: flex;
  gap: 30px;
  align-items: flex-end;
  justify-content: flex-start;
  width: fit-content;
  animation: slide 60s linear infinite;
  will-change: transform;
}

.testimonials-container:hover {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background-color: var(--color-background-card);
  border: 5px solid var(--color-border-light);
  border-bottom: 0px;
  border-radius: 20px 20px 0px 0px;
  width: 400px;
  height: 100%;
  flex-shrink: 0;
}

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  justify-content: start;
  height: 100%;
  box-sizing: border-box;
}

.card-header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.customer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-grow: 1;
}

.customer-name {
  font-family: "Noto Sans Thai", "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: var(--color-text-black);
  white-space: nowrap;
}

.customer-name p {
  margin: 0;
  line-height: normal;
}

.stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.star-icon {
  width: 30px;
  height: 30px;
}

.testimonial-text {
  font-family: "Noto Sans Thai", "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--color-text-black);
  width: 100%;
}

.testimonial-text p {
  font-size: 16px;
  margin: 0;
  line-height: normal;
}

.features-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 150px;
  gap: 70px;
}

.features-section h2 {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: var(--color-text-black);
  margin: 0;
}

#baby-monitor.features-section h2 {
  font-weight: 500;
}

.features-section h2 span {
  color: var(--color-accent-pink);
}

#baby-monitor.features-section h2 span {
  font-weight: 700;
}

.blue-text {
  color: var(--color-primary);
}

.features-section-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 50px;
}

.calories-tracker .features-card-title {
  position: relative;
  top: 0px;
}

.features-card-title {
  position: sticky;
  top: 80px;
  flex: 30%;
  flex-shrink: 0;
}

.features-card-title img {
  width: 80px;
  height: auto;
  object-fit: contain;
  padding-bottom: 10px;
}

.features-card-title h3 {
  font-weight: bold;
  font-size: 40px;
  text-align: start;
  color: var(--color-text-black);
  margin: 0;
  padding-bottom: 10px;
}

.features-card-title p {
  font-weight: 500;
  font-size: 18px;
  text-align: start;
  color: var(--color-text-secondary);
  margin: 0;
}

.features-card-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.features-card-content .text {
  font-size: 40px;
  color: #222;
  font-weight: bold;
  margin: 0;
}

.features-card-content .text span {
  color: #66bb6a;
}

.features-card-content.column {
  flex-direction: column;
  gap: 50px;
}

.feature-banner-container {
  display: flex;
  width: 100%;
}

#baby-monitor .feature-banner-container {
  flex-direction: row;
  gap: 30px;
}

#baby-monitor .feature-banner-container {
  background-image: url("https://static.hdmall.co.th/system/image_attachments/images/000/485/283/original/baby-monitor-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 35.9px 0 rgba(255, 51, 173, 0.5);
  box-sizing: border-box;
}

#baby-monitor .feature-banner-container img {
  width: auto;
  height: 350px;
  object-fit: contain;
}

#baby-monitor .feature-banner-container h4 {
  font-weight: bold;
  font-size: 25px;
  text-align: start;
  color: var(--color-text-white);
  margin: 0;
}

#baby-monitor .feature-banner-container h4 {
  font-weight: 500;
  font-size: 20px;
  text-align: start;
  color: var(--color-text-white);
  margin: 0;
}

#baby-monitor .feature-banner-container h4 span {
  font-weight: 700;
  font-size: 30px;
  text-align: start;
  color: var(--color-text-white);
  margin: 0;
}

.feature-banner-container img {
  width: 100%;
  box-sizing: border-box;
}

.features-card#air-quality-module {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-card#air-quality-module .feature-image {
  background: #ffffff;
  overflow: hidden;
  height: auto;
}

.features-card#air-quality-module img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 0px;
}

.video-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 35.9px 0 rgba(51, 139, 255, 0.5);
}

.video-container video {
  display: block;
  width: 100%;
  height: auto;
}

.video-replay-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  opacity: 0;
}

.video-container:hover .video-replay-btn {
  display: flex;
  opacity: 1;
}

.video-replay-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.video-replay-btn svg {
  color: var(--color-text-primary);
  width: 24px;
  height: 24px;
}

.video-replay-btn:active {
  transform: scale(0.95);
}

.features-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.features-card img {
  width: 100%;
  height: auto;
}

.features-card h4 {
  font-weight: bold;
  font-size: 20px;
  text-align: start;
  color: var(--color-text-black);
  margin: 0;
  padding-top: 20px;
  padding-bottom: 10px;
}

.ai-module-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.features-card#ai-module {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.features-card#ai-module img{
  width: 50%;
}

.features-card.horoscope-module-1 ul{
  margin: 0px;
  padding-left: 30px;
}

.features-card.horoscope-module-1 ul li{
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.features-card.horoscope-module-1 .feature-image,
.features-card.horoscope-module-2 .feature-image,
.features-card.baby-monitor-module-1 .feature-image,
.features-card.baby-monitor-module-2 .feature-image {
  overflow: hidden;
}

.features-card.horoscope-module-1 .feature-image {
  background-image: url("https://static.hdmall.co.th/system/image_attachments/images/000/481/954/original/horoscope-bg-1.png");
}

.features-card.horoscope-module-2 .feature-image {
  background-image: url("https://static.hdmall.co.th/system/image_attachments/images/000/481/955/original/horoscope-bg-2.png");
}

.features-card.baby-monitor-module-1 .feature-image {
  background-image: url("https://static.hdmall.co.th/system/image_attachments/images/000/485/320/original/baby-monitor-bg-1.png");
}

.features-card.baby-monitor-module-2 h4,
.features-card.air-quality-module h4 {
  font-size: 30px;
}

.features-card#horoscope-module img {
  width: auto;
  height: 100%;
  padding-bottom: 0px;
}

#ai-module h4 {
  font-size: 30px;
  color: var(--color-primary);
}

.icon-ai-send {
  width: 50px !important;
  height: 50px;
  object-fit: contain;
}

.text-ai-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}

.text-ai-content span {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-primary);
  padding: 10px;
  border-radius: 10.249px;
  background: var(--color-background-white);
  box-shadow: 0 4.099px 4.099px -2.05px rgba(69, 175, 254, 0.5),
    0 2.05px 11.171px 2.05px var(--color-accent-purple);
}

#ai-module-title {
  font-size: 28px;
  color: var(--color-text-primary);
  padding-bottom: 30px;
}

#ai-module-title span {
  background: linear-gradient(90deg, #25ccb0 0%, #338bff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-card p {
  font-weight: 500;
  font-size: 16px;
  text-align: start;
  color: var(--color-text-secondary);
  margin: 0;
}

.features-section-bottom {
  box-sizing: border-box;
  background: white;
  border-radius: 50px;
  padding: 20px;
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 35.9px 0 rgba(51, 139, 255, 0.2);
}

.features-section-bottom h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-weight: bold;
  font-size: 80px;
  text-align: center;
  color: var(--color-text-black);
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.features-section-bottom h3 span {
  font-size: 40px;
  background: linear-gradient(90deg, #7e87ff 0%, #ff79b2 50%, #72dbff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features Highlight Section */
.features-highlight-section {
  background-color: var(--color-background-white);
  padding: 50px;
  width: 100%;
  height: auto;
  border-radius: 80px;
  margin-top: 100px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 45px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 30px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  box-sizing: border-box;
}

/* Feature Card */
.feature-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start;
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
}

/* Feature Mockup */
.feature-mockup {
  width: 100%;
  position: relative;
}

.mockup-container {
  width: 100%;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 50px 30px 0;
  background: linear-gradient(135deg, #e8f8f5 0%, #d4f1e8 100%);
}

/* Different background gradients for each feature */
.no-upsell-bg {
  background: linear-gradient(135deg, #e8f8f5 0%, #d4f1e8 50%, #c5ebe0 100%);
}

.transparent-pricing-bg {
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e8f1 50%, #c5dfe8 100%);
}

.installment-bg {
  background: linear-gradient(135deg, #fef9e8 0%, #fdf3d4 50%, #fbedc5 100%);
  opacity: 0.87;
}

.mockup-phone {
  width: 100%;
  max-width: 290px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.mockup-phone-installment {
  width: 100%;
  max-width: 320px;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Mockup Overlay for Badge */
.mockup-overlay {
  position: absolute;
  top: 133px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  max-width: 290px;
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
}

.overlay-badge {
  background-color: var(--color-background-light);
  border: 1.5px solid var(--color-primary);
  border-radius: 28px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
}

.badge-text {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Feature Text */
.feature-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
  text-align: start;
  margin: 0px;
}

.feature-description {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.5;
  text-align: start;
  margin: 0px;
}

.feature-image {
  width: 100%;
  height: 500px;
  background-image: url("https://static.hdmall.co.th/1000x2000/webp/system/image_attachments/images/000/472/871/original/bg-feature.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: end;
}

.feature-image img {
  width: auto;
  height: 90%;
  object-fit: cover;
}

/* Bottom CTA Section */
.section-bottom {
  text-align: center;
  padding: 50px 0;
  padding-bottom: 0px;
}

.section-bottom-title {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(260deg, #51c7fe 7.57%, #338bff 92.43%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-bottom-description {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.self-care {
  padding-bottom: 100px;
}

.self-care-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.self-care-description {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.6;
  text-align: center;
  margin: 0px;
}

.features-card-self-care {
  background: var(--color-background-white);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.features-card-self-care img {
  width: 100%;
  height: 90%;
  object-fit: contain;
}

.feature-image#self-care {
  height: 450px;
  border-radius: 20px;
}

.feature-image#self-care img {
  width: auto;
  height: 90%;
  object-fit: cover;
  overflow: hidden;
}

.features-card-self-care h4 {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-text-primary);
  line-height: 1.6;
  text-align: start;
  margin: 0px;
  margin-top: 20px;
}

.features-card-self-care h4:nth-child(odd) {
  margin: 0px;
}

.features-card-self-care p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.6;
  text-align: start;
  margin: 0px;
  margin-top: 10px;
}

.features-card-self-care p:nth-child(even) {
  margin-bottom: 20px;
}

/* Email Link Modal Styles */
.email-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.email-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-modal-content {
  position: relative;
  background-image: url("https://static.hdmall.co.th/1000x2000/webp/system/image_attachments/images/000/473/510/original/Popup_-_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 50px;
  max-width: 750px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  z-index: 10001;
}

.email-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-background);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10002;
}

.email-modal-close:hover {
  background: var(--color-border-light);
  transform: rotate(90deg);
}

.email-modal-close svg {
  color: var(--color-text-primary);
}

.email-modal-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.email-content-section {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.email-text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 20px 0px 20px 20px;
}

.email-text-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.4;
  padding-bottom: 10px;
}

.email-text-section p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin: 0;
  padding-bottom: 20px;
}

.email-input-wrapper {
  display: flex;
  gap: 15px;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
}

.email-input-wrapper div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 15px;
}

.email-input-wrapper input {
  flex: 1;
  padding: 10px 20px;
  border: 1px solid #c0c0c0;
  border-radius: 15px;
  font-family: "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-primary);
  background: var(--color-background-white);
  outline: none;
  transition: border-color 0.2s ease;
}

.email-input-wrapper input::placeholder {
  color: var(--color-text-placeholder);
}

.email-input-wrapper input:focus {
  border-color: var(--color-border-dark);
}

.email-send-btn {
  padding: 10px 30px;
  background: linear-gradient(260deg, #51c7fe 7.57%, #338bff 92.43%);
  color: var(--color-text-white);
  border: none;
  border-radius: 100px;
  font-family: "Noto Sans Thai", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.email-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 139, 255, 0.3);
}

.email-qr-section {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-wrapper {
  width: 331px;
  height: 331px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.qr-code-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* QR Code Modal Styles */
.qr-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.qr-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.qr-modal-content {
  position: relative;
  background: white;
  border-radius: 30px;
  padding: 50px 40px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  z-index: 10001;
}

.qr-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-background);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10002;
}

.qr-modal-close:hover {
  background: var(--color-border-light);
  transform: rotate(90deg);
}

.qr-modal-close svg {
  color: var(--color-text-primary);
}

.qr-modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.qr-modal-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 10px 0;
}

.qr-modal-header p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-medium-gray);
  margin: 0;
}

.qr-modal-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.qr-code-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.qr-code-card {
  background: var(--color-background);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qr-code-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.qr-code-platform {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.qr-code-platform svg {
  color: var(--color-primary-light);
}

.qr-code-image {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.qr-code-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-link {
  display: block;
  transition: transform 0.2s ease;
}

.store-link:hover {
  transform: scale(1.05);
}

.store-link img {
  height: 50px;
  width: auto;
}

.qr-modal-divider {
  position: relative;
  text-align: center;
  margin: 10px 0;
}

.qr-modal-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-gray);
}

.qr-modal-divider span {
  position: relative;
  background: var(--color-background-white);
  padding: 0 20px;

  font-size: 14px;
  color: var(--color-text-light-gray);
  font-weight: 500;
}

.direct-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.direct-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 15px;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.direct-link-btn.ios {
  background: var(--color-text-black);
  color: var(--color-text-white);
}

.direct-link-btn.ios:hover {
  background: var(--color-border-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.direct-link-btn.android {
  background: var(--color-accent-green);
  color: var(--color-text-white);
}

.direct-link-btn.android:hover {
  background: var(--color-accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 135, 95, 0.3);
}

.direct-link-btn svg {
  flex-shrink: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Styles */
.footer-section {
  background: var(--color-background);
  border-radius: 50px 50px 0 0;
  padding-bottom: 30px;
  position: relative;
}

.download-content {
  background: white;
  text-align: center;
  padding: 50px 80px;
  border-radius: 30px 30px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  background-image: url("https://static.hdmall.co.th/system/image_attachments/images/000/472/988/original/bg-top-footer.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.jib-footer {
  position: absolute;
  bottom: -100px;
  right: 70px;
  width: auto;
  height: 350px;
  object-fit: cover;
}

.jib-footer-hand {
  position: absolute;
  bottom: 270px;
  right: 100px;
  width: auto;
  height: 100px;
  object-fit: cover;
}

.download-section-title {
  font-size: 38px;
  font-weight: bold;
  background: linear-gradient(260deg, #51c7fe 7.57%, #338bff 92.43%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0px;
  line-height: 1.2;
  text-align: start;
  padding-bottom: 5px;
}

.download-section-title-description {
  color: var(--color-text-dark-gray);
  background: none;
  -webkit-text-fill-color: var(--color-text-dark-gray);
  font-weight: 600;
  font-size: 28px;
  margin: 0;
  padding-bottom: 20px;
}

.footer-content {
  background: var(--color-background-white);
  border-radius: 0px 0px 30px 30px;
  padding: 50px;
  padding-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-top {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 50px;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer-logo img {
  width: auto;
  height: 50px;
}

.logo-text-footer {
  width: 96.154px;
  height: 50px;
  display: flex;
  align-items: center;
}

.logo-text-footer img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 30px;
  flex-grow: 1;
  padding-top: 10px;
}

.footer-section-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.footer-section-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text-black);
  margin: 0;
  white-space: nowrap;
}

.footer-section-items {
  display: flex;
  gap: 25px;
}

.footer-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-black);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  width: 100%;
}

.footer-copyright p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-black);
  margin: 0;
}

.footer-terms {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-divider {
  font-size: 14px;
  color: var(--color-text-black);
}

.hide-on-desktop {
  display: none;
}

.hide-on-mobile {
  display: flex;
}

/* QR Code Widget (Bottom Right) */
.qr-code-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-background-white);
  border-radius: 16px;
  padding: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  max-width: 300px;
}

.qr-code-widget.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.qr-code-widget-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  background: var(--color-primary);
}

.qr-code-widget-text {
  height: 100%;
  padding: 15px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-white);
  text-align: start;
  margin: 0;
}

.qr-code-widget-image {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background-white);
  border-radius: 8px;
  padding: 0px;
}

.qr-code-widget-image img {
  width: auto;
  height: 130px;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 1180px) {
  .overlay-item-image#overlay-1 {
    width: 110px;
    bottom: 350px;
    left: 15px;
  }

  .overlay-item-image#overlay-2 {
    width: 50px;
    bottom: 180px;
    left: 20px;
  }

  .overlay-item-image#overlay-3 {
    width: 90px;
    bottom: 300px;
    left: 20px;
  }

  .overlay-item-image#overlay-4 {
    width: 60px;
    bottom: 40px;
    left: 40px;
  }

  .overlay-item-image#overlay-5 {
    width: 30px;
    bottom: 400px;
    right: 90px;
  }

  .overlay-item-image#overlay-6 {
    width: 100px;
    bottom: 350px;
    right: 10px;
  }

  .overlay-item-image#overlay-7 {
    width: 40px;
    bottom: 140px;
    right: 10px;
  }

  .overlay-item-image#overlay-8 {
    width: 50px;
    bottom: 250px;
    right: 10px;
  }

  #baby-monitor.features-section h2{
    font-size: 25px;
  }

  .features-card#ai-module img{
    width: 100%;
  }

  .features-card#ai-module{
    flex-direction: column;
  }

  #baby-monitor .feature-banner-container{
    padding: 20px;
  }

  #baby-monitor .feature-banner-container{
    flex-direction: column;
    gap: 15px;
  }

  #baby-monitor .feature-banner-container{
   background-position: bottom left;
  }

  #baby-monitor .feature-banner-container h4 span{
    font-size: 25px;
  }

  #baby-monitor .feature-banner-container h4{
    font-size: 18px;
  }

  .hero-cta svg,
  .jib-cta svg {
    width: 25px;
    height: 25px;
  }

  .hero-cta span,
  .jib-cta span {
    font-size: 11px;
  }

  .slideshow-indicators {
    bottom: 20px;
  }

  .banner-image-desktop {
    width: 170%;
  }

  .phone-screen-container {
    position: absolute;
    right: 31.6%;
    top: 5.5%;
    width: 37.78%;
    height: auto;
    z-index: 1000;
  }

  .feature-description {
    font-size: 14px;
  }

  .feature-title {
    font-size: 22px;
  }

  .features-card-self-care p {
    font-size: 14px;
  }

  .features-card-self-care h4 {
    font-size: 22px;
  }

  .footer-section-title {
    font-size: 20px;
  }

  .footer-section-links {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }

  .jib-footer-hand {
    height: 65px;
    bottom: 450px;
    right: 80px;
  }

  .jib-footer {
    height: 250px;
    bottom: -80px;
  }

  .hide-on-mobile {
    display: none;
  }

  .section-bottom-description {
    font-weight: 500;
    font-size: 16px;
  }

  .section-bottom-title {
    font-size: 32px;
  }

  .features-card-self-care {
    padding: 20px;
  }

  .self-care-description {
    font-size: 20px;
  }

  .features-section h2 {
    font-size: 32px;
  }

  .feature-image img {
    height: 95%;
  }

  .feature-image#fix-tem {
    padding-top: 30px;
    height: auto;
  }

  .feature-image {
    height: 450px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .features-highlight-section {
    padding: 50px 20px;
    border-radius: 40px;
  }

  .section-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.5;
  }

  #ai-module-title {
    font-size: 25px;
  }

  .features-section {
    gap: 30px;
    padding-top: 100px;
  }

  .features-section-bottom {
    border-radius: 20px;
  }

  .features-section-bottom h3 {
    font-size: 35px;
  }

  .features-section-bottom h3 span {
    font-size: 25px;
  }

  .features-card p {
    font-size: 14px;
  }

  .features-card-title p {
    font-size: 16px;
  }

  .features-card-title h3 {
    font-size: 32px;
  }

  .features-section h2 {
    font-size: 32px;
  }

  .testimonials-section {
    border-radius: 0px 0px 30px 30px;
    padding: 50px 0px;
    padding-bottom: 0px;
    gap: 30px;
  }

  .card-content {
    gap: 15px;
  }

  .testimonials-container {
    height: 200px;
  }

  .testimonial-card {
    width: 280px;
  }

  .customer-name p {
    font-size: 20px;
    font-weight: 700;
  }

  .star-icon {
    width: 15px;
    height: 15px;
  }

  .testimonial-text p {
    font-size: 14px;
  }

  .testimonials-title {
    font-weight: 700;
    font-size: 28px;
    padding: 0 20px;
  }

  .features-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .features-card-title {
    position: static;
  }

  .features-card-content {
    gap: 50px;
    flex-direction: column;
  }

  .features-card-content .text {
    font-size: 25px;
  }

  .features-section-content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
  }

  .navigation-bar {
    box-sizing: border-box;
    top: 10px;
    width: 95%;
    padding: 10px 10px 10px 20px;
  }

  .navigation-bar-content {
    box-sizing: border-box;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .navigation-links {
    display: none;
  }

  .logo-icon {
    height: 25px;
    width: 110px;
    gap: 7px;
    justify-content: center;
    align-items: center;
  }

  .logo-text {
    height: auto;
    width: 70px;
  }

  .logo-mascot {
    height: 100%;
    width: auto;
  }

  .download-app-btn {
    color: var(--color-text-white);
    background: linear-gradient(260deg, #51c7fe 7.57%, #338bff 92.43%);
    padding: 8px 12px;
    gap: 6px;
  }

  .download-app-btn span {
    color: var(--color-text-white);
    font-size: 12px;
  }

  .banner-image-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-section {
    padding: 0px;
    padding-top: 50px;
  }

  .hero-section h1 {
    font-size: 28px;
    padding: 0px 20px;
    margin-bottom: 10px;
  }

  .hero-section p {
    font-size: 14px;
    padding: 0 20px;
  }

  .download-app-btn svg {
    width: 20 px;
    height: 20px;
  }

  .hamburger-btn {
    display: flex;
    width: 36px;
    height: 36px;
  }

  .qr-modal-content {
    padding: 40px 25px;
    border-radius: 20px;
    max-height: 95vh;
  }

  .qr-modal-header h2 {
    font-size: 24px;
  }

  .qr-modal-header p {
    font-size: 14px;
  }

  .qr-code-section {
    flex-direction: column;
    gap: 20px;
  }

  .qr-code-card {
    max-width: 100%;
    min-width: 100%;
    padding: 25px;
  }

  .qr-code-image {
    width: 180px;
    height: 180px;
    padding: 12px;
  }

  .store-link img {
    height: 40px;
  }

  .direct-link-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .qr-modal-close {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }

  .footer-section {
    padding: 0px;
  }

  .download-content {
    align-items: center;
    justify-content: center;
    padding: 40px 10px;
    padding-bottom: 200px;
    border-radius: 50px 50px 0px 0px;
  }

  .download-section-title {
    font-size: 30px;
    text-align: center;
  }

  .download-section-title-description {
    font-size: 20px;
  }

  .footer-content {
    padding: 30px;
    gap: 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo {
    width: auto;
  }

  .footer-links {
    width: 100%;
    padding-top: 0px;
    flex-direction: column;
    gap: 30px;
  }

  .footer-section-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 15px;
    align-items: flex-start;
    padding-top: 0px;
  }

  .footer-terms {
    flex-wrap: wrap;
  }

  .hide-on-desktop {
    display: block;
  }

  .email-modal {
    box-sizing: border-box;
    padding: 0px 20px;
  }

  .email-modal-content {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .email-content-section {
    flex-direction: column;
    gap: 30px;
  }

  .email-text-section {
    padding: 0;
  }

  .email-text-section h2 {
    font-size: 24px;
    text-align: center;
  }

  .email-text-section p {
    font-size: 14px;
  }

  .email-input-wrapper input {
    width: 180px;
    font-size: 14px;
    padding: 10px 15px;
  }

  .email-send-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .qr-code-widget {
    display: none;
  }
}
