* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== MODERN IMAGE ANIMATIONS ===== */

@keyframes appear {
  from {
    opacity: 1;
    clip-path: inset(100% 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes scrollFadeUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(-15px);
  }
  50% {
    opacity: 1;
    transform: translateY(-30px);
  }
  75% {
    opacity: 1;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50px);
  }
}

@keyframes scrollFadeDown {
  0% {
    opacity: 1;
    transform: translateY(-50px);
  }
  25% {
    opacity: 1;
    transform: translateY(-40px);
  }
  50% {
    opacity: 1;
    transform: translateY(-30px);
  }
  75% {
    opacity: 1;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.block {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

/* Apply smooth parallax effect to decorative images */
.star,
.headphones,
.mcdonalds-logo,
.sneaker,
.star-2,
.starbucks-logo,
.watch,
.coffee-cup,
.bubble {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* Parallax effect - images move UP when scrolling down */
.star {
  transform: translateX(calc(var(--scroll-y, 0) * 0.1px))
    translateY(calc(var(--scroll-y, 0) * -0.4px)) !important;
}

.headphones {
  transform: translateX(calc(var(--scroll-y, 0) * 0.1px))
    translateY(calc(var(--scroll-y, 0) * -0.4px)) !important;
}

.mcdonalds-logo {
  transform: translateY(calc(var(--scroll-y, 0) * -0.7px)) !important;
}

.sneaker {
  transform: translateY(calc(var(--scroll-y, 0) * -0.5px)) !important;
}

.star-2 {
  transform: translateY(calc(var(--scroll-y, 0) * -0.5px)) !important;
}

.starbucks-logo {
  transform: translateY(calc(var(--scroll-y, 0) * -0.55px)) !important;
}

.watch {
  transform: translateY(calc(var(--scroll-y, 0) * -0.45px)) !important;
}

.coffee-cup {
  transform: translateY(calc(var(--scroll-y, 0) * -0.6px)) !important;
}

.bubble {
  transform: translateY(calc(var(--scroll-y, 0) * -0.3px)) !important;
}

body {
  background-color: #f0f9f5; /* base color beneath artwork */
  margin: 0;
  background-image: url('heyjinie/images/background.png');
  background-repeat: no-repeat; /* don't repeat the image */
  background-position: center top; /* align artwork */
  background-size: 1400px auto !important; /* much smaller background size */
  background-attachment: scroll; /* scroll with content */
  min-height: 110vh; /* ensure minimum page height */
  overflow-x: hidden !important; /* prevent horizontal scroll */
}

/* Wrapper for page content */
.with-bg {
  position: relative; /* anchor absolute decorations */
  overflow-x: hidden !important
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 20px 0;
  backdrop-filter: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo::before {
  content: '';
  width: 24px;
  height: 24px;
  background: #333;
  border-radius: 50%;
  margin-right: 8px;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 16px;
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  flex-direction: column;
  padding: 30px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  position: relative;
}

.mobile-nav a:hover {
  color: #40a574;
  background-color: rgba(64, 165, 116, 0.05);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav .get-started-btn {
  margin: 15px 0 5px 0;
  width: 100%;
  text-align: center;
  border-radius: 25px;
  padding: 15px 20px;
  background: #40a574;
  color: white;
  font-weight: 600;
  border: none;
  font-size: 16px;
}

.mobile-nav .get-started-btn:hover {
  background: #40a574c5;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 4px 12px rgba(64, 165, 116, 0.3);
}

/* Hamburger Animation */
.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);
}

.get-started-btn {
  background: #40a574;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  width: 180px; /* set fixed width */
  text-align: center;
  font-size: 16px;
}

.get-started-btn:hover {
  background: #40a574;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 0 130px 0 !important;
  position: relative;
  overflow: visible;
  background: transparent; /* show page background image */
  min-height: 300px !important;
}

.hero-subtitle {
  color: #666;
  font-size: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.try-pro-btn {
  background: #40a574;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  font-size: 18px;
}

.try-pro-btn:hover {
  background: #40a574;
}

/* Decorative Elements */
.hero-decoration {
  position: absolute;
  z-index: 1;
}

/* Hero container positioning */
.hero .container {
  position: relative;
}

.headphones {
  top: 10px;
  left: 45px;
  width: 210px;
  height: 210px;
  background-size: contain;
  transform: rotate(45deg) translateY(calc(var(--scroll-y, 0) * -0.4px)) !important;
  max-width: 100%;
  height: auto;
}

.star {
  top: 80px;
  left: 35px;
  width: 120px;
  height: 120px;
  z-index: 0;
  max-width: 100%;
  transform: rotate(45deg) translateY(calc(var(--scroll-y, 0) * -0.4px)) !important;
  height: auto;
  /* background-size: contain; */
}

.mcdonalds-logo {
  top: 0px;
  right: 160px;
  width: 87px;
  height: 87px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #da020e;
  font-size: 24px;
  max-width: 100%;
  height: auto;
}

.sneaker {
  top: 280px;
  right: 30px;
  width: 236px;
  height: 154px;
  background-position: top;
  background-size: contain;
  transform: rotate(5deg) translateY(calc(var(--scroll-y, 0) * -0.5px)) !important;
  max-width: 100%;
  height: auto;
}

.star-2 {
  top: 220px;
  right: 50px;
  width: 120px;
  height: 120px;
  z-index: 0;
  /* background-size: contain; */
}

.starbucks-logo {
  top: 330px;
  left: 70px;
  width: 90px;
  height: 94px;
  background: none;
  border-radius: 0;
  max-width: 100%;
  height: auto;
}

.watch {
  top: 10px;
  left: 80px;
  width: 80px;
  height: 80px;
  background-size: contain;
  max-width: 100%;
  height: auto;
}

.coffee-cup {
  top: 220px;
  right: 200px;
  width: 60px;
  height: 60px;
  background-size: contain;
  max-width: 100%;
  height: auto;
}

.bubble {
  top: 200px;
  right: 180px;
  width: 40px;
  height: 40px;
  background-size: contain;
  max-width: 100%;
  height: auto;
}

/* Trusted Brands */
.trusted-brands {
  text-align: center;
  padding: 10px 0;
  background: transparent;
}

.trusted-brands h3 {
  color: red;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0px;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 30px;
  gap: 60px; /* spacing between logos */
  flex-wrap: wrap; /* allows wrapping to next line */
  overflow-x: visible; /* no horizontal scroll */
}

.brands-grid img {
  height: 20px; /* make all logos the same height */
  width: auto; /* keep proportions */
  object-fit: contain; /* ensures logos don't stretch weirdly */
  max-width: 100%;
}

/* Features Section */
.features {
  padding: 80px 0;
  position: relative; /* contain absolute feature decorations */
  background-color: white;
  overflow: visible;
}

/* Features container positioning */
.features .container {
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 0px;
}

.features-header h2 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.features-header p {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

/* Group only feature blocks to avoid interference from other siblings */
.feature-list {
  display: flex;
  flex-direction: column;
}

/* Alternate layout left/right reliably across only the feature blocks */
.feature-list > .feature:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 0 1 auto;
  max-width: 400px;
}

.feature-visual {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  min-width: 350px;
  min-height: 300px;
  height: auto;
}

.feature h2 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.feature p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

/* Feature imagery */
.feature-visual img {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(0.3) translateY(50px);
  opacity: 0.3;
}

/* Animation for feature images on scroll */
.feature-visual img.scroll-animate {
  transform: scale(1.2) translateY(-20px);
  opacity: 0.8;
}

.feature-visual img.scroll-animate.final {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Smooth scroll direction animations */
.feature-visual img.scroll-up {
  transform: scale(1) translateY(-15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-visual img.scroll-down {
  transform: scale(1) translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gifting-wheel-img {
  width: 350px;
  max-width: 100%;
  height: auto;
}
.calendar-img {
  width: 350px !important;
  max-width: 100%;
  height: auto;
}
.gift-boxes {
  display: flex;
  gap: 20px;
}
.gift-box-img {
  width: 250px;
  max-width: 100%;
  height: auto;
}
.dashboard-img {
  width: 300px;
  max-width: 100%;
  height: auto;
}
.marketing-img {
  width: 220px;
  max-width: 100%;
  height: auto;
}

/* Raise feature visuals approximately 1 inch on desktop */
@media (min-width: 769px) {
  .feature-visual .image-card {
    margin-top: -96px;
  }
}

/* playful slight tilt like the mock */
.feature-list > .feature:nth-child(odd) .image-card {
  transform: rotate(-6deg);
}
.feature-list > .feature:nth-child(even) .image-card {
  transform: rotate(6deg);
}

/* Decorative squares behind middle feature images */
.features .feature .feature-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2800px;
  height: 2800px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  max-width: none;
  max-height: none;
}

/* Feature section decorative elements */
.feature-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.watch-feature {
  top: 70px;
  left: 150px;
  width: 140px;
  height: 140px;
  max-width: 100%;
  height: auto;
  transform: translateY(calc(var(--scroll-y, 0) * -0.3px)) !important;
}

.coffee-feature {
  top: 410px;
  right: 70px;
  width: 130px;
  height: 190px;
  max-width: 100%;
  height: auto;
  transform: translateY(calc(var(--scroll-y, 0) * -0.35px)) !important;
}

.bubble-feature {
  top: 180px;
  right: 120px;
  width: 104px;
  height: 95px;
  max-width: 100%;
  height: auto;
  transform: translateY(calc(var(--scroll-y, 0) * -0.25px)) !important;
}

.star-feature {
  top: 300px;
  left: 100px;
  width: 50px;
  height: 50px;
  max-width: 100%;
  height: auto;
}

/* Odd features: left square */
.feature-list > .feature:nth-child(1) .feature-visual::before {
  background-image: url('./heyjinie/images/left_square.png');
  width: 2800px !important;
  height: 2800px !important;
  background-size: 90% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* Even features: right square */
.feature-list > .feature:nth-child(2) .feature-visual::before {
  background-image: url('./heyjinie/images/right_square.png');
  width: 2800px !important;
  height: 2800px !important;
  background-size: 85% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.feature-list > .feature:nth-child(3) .feature-visual::before {
  background-image: url('./heyjinie/images/left_square.png');
  width: 2800px !important;
  height: 2800px !important;
  background-size: 90% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* Even features: right square */
.feature-list > .feature:nth-child(4) .feature-visual::before {
  background-image: url('./heyjinie/images/right_square.png');
  width: 2800px !important;
  height: 2800px !important;
  background-size: 90% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.feature-list > .feature:nth-child(5) .feature-visual::before {
  background-image: url('./heyjinie/images/left_square.png');
  width: 2800px !important;
  height: 2800px !important;
  background-size: 90% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* Even features: right square */

/* Gift Options Section */
.gift-options {
  text-align: center;
  padding: 80px 0;
  overflow: visible;
  background-color: #ecf6f1;
  position: relative;
}

.gift-options .container {
  position: relative;
}

.gift-options h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.gift-options p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px;
}

.hm-logo {
  position: absolute;
  left: 20px;
  top: 200px; /* just under the paragraph line */
  height: 70px;
  width: auto;
  margin: 0;
}

.get-started-final {
  background: #40a574;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  font-size: 18px;
  margin: 8px 0; /* Add vertical spacing above and below button */
}

/* Footer */
.footer {
  text-align: center;
  padding: 80px 0;
  position: relative;
  background-color: #cfeadd;
  overflow: visible;
}

/* Footer container positioning */
.footer .container {
  position: relative;
}

.footer h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-decoration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
}

/* Footer gift box left-centered */
.footer-gift {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: auto;
  max-width: 100%;
}

/* Footer stars */
.footer-decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.star-left {
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 60px;
}

.star-right {
  bottom: 200px;
  right: 180px;
  width: 60px;
  height: 60px;
}

/* Combined Background Wrapper for Last 2 Sections */
.combined-background-wrapper {
  position: relative;
  background-image: url('heyjinie/images/background.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1400px auto;
  background-attachment: scroll;
  min-height: 400px; /* Ensure minimum height to see the background */
  /* Hide the body background image in this area */
  background-color: #f0f9f5; /* Same as body background color */
}

/* Hide body background image specifically for the combined wrapper area */
.combined-background-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f0f9f5; /* Cover the body background image */
  z-index: 0;
  pointer-events: none;
}

/* Ensure the individual section background colors remain visible but allow background image to show through */
.combined-background-wrapper .gift-options {
  background-color: rgba(
    236,
    246,
    241,
    0.3
  ); /* More transparent version of #ECF6F1 */
  position: relative;
  z-index: 3; /* Above the background cover */
}

.combined-background-wrapper .footer {
  background-color: rgba(
    207,
    234,
    221,
    0.8
  ); /* More visible version of #CFEADD */
  position: relative;
  z-index: 3; /* Above the background cover */
}

/* Alternative approach using pseudo-element for guaranteed background image display */
.combined-background-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('heyjinie/images/background.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1400px auto;
  z-index: 3; /* Behind the sections but above the background cover */
  pointer-events: none;
}

/* Decorative logos inside gift-options */
.gift-options .deco-burger,
.gift-options .deco-tommy {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.gift-options .deco-burger {
  position: absolute;
  top: -242px; /* 2 inches (192px) higher than before */
  right: 120px;
  width: 200px;
  height: auto;
  transform: rotate(-5deg);
  z-index: 1;
  max-width: 100%;
}

.gift-options .deco-tommy {
  position: absolute;
  top: -100px; /* 2 inches (192px) higher than before */
  left: 320px;
  width: 70px;
  height: auto;
  transform: rotate(5deg);
  z-index: 1;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  /* Background responsive - removed body background image */
  body {
    min-height: 100vh;
  }

  /* Combined background wrapper responsive - maintain desktop size */
  .combined-background-wrapper {
    background-size: 1400px auto;
    background-position: center center;
  }

  /* General responsive adjustments */
  .container {
    padding: 0 15px;
  }

  /* Header responsive */
  header {
    padding: 15px 0;
    position: relative;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    height: 30px;
  }

  .logo::before {
    width: 20px;
    height: 20px;
  }

  nav {
    gap: 20px;
  }

  nav a {
    font-size: 14px;
  }

  .get-started-btn {
    width: 150px;
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Hero responsive */
  .hero-title {
    font-size: 30px;
    line-height: 1;
  }

  .hero {
    padding: 15px 0 15px;
    min-height: 250px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-description {
    font-size: 16px;
  }

  .try-pro-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Hero decorations responsive - maintaining same relative positions as desktop */
  .headphones {
    top: 130px;
    left: 17px;
    width: 105px;
    height: 105px;
  }

  .mcdonalds-logo {
    top: 45px;
    right: 40px;
    width: 43px;
    height: 43px;
    font-size: 12px;
  }

  .sneaker {
    top: 330px;
    right: 15px;
    width: 118px;
    height: 77px;
  }

  .starbucks-logo {
    top: 365px;
    left: 25px;
    width: 45px;
    height: 47px;
  }

  .watch {
    top: 5px;
    left: 40px;
    width: 40px;
    height: 40px;
  }

  .coffee-cup {
    top: 110px;
    right: 100px;
    width: 30px;
    height: 30px;
  }

  .bubble {
    top: 100px;
    right: 90px;
    width: 20px;
    height: 20px;
  }

  .star {
    top: 270px;
    left: 20px;
    width: 60px;
    height: 60px;
    z-index: 0;
  }

  /* Trusted brands responsive */
  .trusted-brands {
    padding: 20px 0;
  }

  .trusted-brands h3 {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .brands-grid {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .brands-grid img {
    height: 16px;
  }

  /* Features responsive */
  .features {
    padding: 30px 0;
  }

  .features-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .features-header p {
    font-size: 16px;
  }

  .features .feature {
    flex-direction: column !important;
    text-align: center;
    gap: 40px;
    margin-bottom: 0;
  }

  .feature h3 {
    font-size: 24px;
  }

  .feature p {
    font-size: 15px;
  }

  /* Feature images responsive */
  .gifting-wheel-img {
    width: 280px;
    max-width: 90%;
  }

  .calendar-img {
    width: 220px;
    max-width: 90%;
  }

  .gift-box-img {
    width: 180px;
    max-width: 90%;
  }

  .dashboard-img {
    width: 280px;
    max-width: 90%;
  }

  .marketing-img {
    width: 200px;
    max-width: 90%;
  }

  /* Decorative squares responsive */
  .features .feature .feature-visual::before {
    width: 900px;
    height: 900px;
    max-width: 90%;
    max-height: 90%;
  }

  /* Mobile responsive squares - specific selectors */
  .feature-list > .feature:nth-child(odd) .feature-visual::before {
    width: 900px !important;
    height: 900px !important;
  }

  .feature-list > .feature:nth-child(even) .feature-visual::before {
    width: 900px !important;
    height: 900px !important;
  }

  /* Feature decorations responsive */
  .watch-feature {
    top: 160px;
    left: 30px;
    width: 60px;
    height: 60px;
  }

  .coffee-feature {
    top: 280px;
    right: 30px;
    width: 45px;
    height: 45px;
  }

  .bubble-feature {
    top: 180px;
    right: 40px;
    width: 30px;
    height: 30px;
  }

  .star-feature {
    top: 240px;
    left: 60px;
    width: 40px;
    height: 40px;
  }

  /* Gift options responsive */
  .gift-options {
    padding: 60px 0;
  }

  .gift-options h2 {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .gift-options p {
    font-size: 18px;
    margin-bottom: 9px;
  }

  .hm-logo {
    position: static;
    height: 50px;
    margin: 0 auto 30px;
    display: block;
  }

  .get-started-final {
    padding: 12px 24px;
    font-size: 14px;
    margin: 30px 0; /* Responsive spacing for mobile */
  }

  /* Footer responsive */
  .footer {
    padding: 40px 0;
  }

  .footer h2 {
    font-size: 24px;
    max-width: 400px;
  }

  .footer h2 {
    font-size: 28px;
    max-width: 500px;
  }

  .footer-gift {
    width: 80px;
    right: 20px;
  }

  .star-left {
    bottom: 30px;
    left: 20px;
    width: 50px;
    height: 50px;
  }

  .star-right {
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  /* Decorative elements responsive */
  .gift-options .deco-burger {
    /* bottom: 60px; */
    top: -180px;
    right: 60px;
    width: 80px;
  }

  .gift-options .deco-tommy {
    bottom: 80px;
    left: 30px;
    width: 50px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  /* Background responsive for small screens - removed body background image */

  body {
    min-height: 100vh;
  }

  p {
    font-size: 16px !important;
  }

  /* Combined background wrapper responsive - maintain desktop size */
  .combined-background-wrapper {
    background-size: 1400px auto;
    background-position: center center;
  }

  /* Feature images for small mobile */
  .gifting-wheel-img {
    width: 240px;
    max-width: 85%;
  }

  .calendar-img {
    width: 280px !important;
    max-width: 85%;
    bottom: 10px;
  }

  .gift-box-img {
    width: 200px;
    bottom: 10px;

    max-width: 95%;
  }

  .dashboard-img {
    width: 260px;
    max-width: 85%;
  }

  .marketing-img {
    width: 200px;
    max-width: 85%;
    bottom: 10px;
  }

  /* Header responsive for small screens */
  header {
    padding: 10px 0;
  }

  .hero-title {
    font-size: 35px;
   word-spacing: 8px;
  }

  .hero {
    padding: 10px 0 35px !important;
    min-height: 200px !important;
  }

  .container {
    padding: 30px 10px;
  }

  .logo {
    font-size: 18px;
  }

  .logo img {
    height: 25px;
  }

  .logo::before {
    width: 18px;
    height: 18px;
  }

  nav a {
    font-size: 13px;
  }

  .get-started-btn {
    font-size: 13px;
    width: 130px;
    padding: 8px 16px;
  }

  .feature h3 {
    font-size: 22px;
  }

  .gift-options h2 {
    font-size: 24px;
  }

  .headphones {
    width: 105px;
    height: 105px;
    top: -30px;
    left: 17px;
  }

  .deco-burger {
    top: -300px !important;
    /* top:-180px; */
    right: 60px;
    width: 80px;
  }

  .mcdonalds-logo {
    width: 43px;
    height: 43px;
    top: 15px;
    right: 20px;
    font-size: 12px;
  }

  .sneaker {
    width: 98px;
    height: 77px;
    top: 200px;
    right: 25px;
  }

  .starbucks-logo {
    width: 45px;
    height: 47px;
    top: 220px;
    left: 25px;
  }

  .watch {
    width: 40px;
    height: 40px;
    top: 5px;
    left: 40px;
  }

  .coffee-cup {
    width: 30px;
    height: 30px;
    top: 110px;
    right: 100px;
  }

  .bubble {
    width: 20px;
    height: 20px;
    top: 100px;
    right: 90px;
  }

  .star {
    width: 60px;
    height: 60px;
    top: -10px;
    left: 10px;
    z-index: 0;
  }

  .star-2 {
    width: 60px;
    height: 60px;
    top: 175px;
    right: 20px;
    z-index: 0;
  }

  /* Decorative squares for small mobile */
  .features .feature .feature-visual::before {
    width: 800px;
    height: 800px;
    max-width: 80%;
    max-height: 95%;
    overflow: visible;
  }

  /* Small mobile responsive squares - specific selectors */
  .feature-list > .feature:nth-child(1) .feature-visual::before {
    width: 800px !important;
    height: 800px !important;
    background-size: 90% !important;
  }

  .feature-list > .feature:nth-child(3) .feature-visual::before,
  .feature-list > .feature:nth-child(5) .feature-visual::before {
    width: 800px !important;
    height: 800px !important;
    background-size: 90% !important;
  }

  .feature-list > .feature:nth-child(4) .feature-visual::before {
    width: 800px !important;
    height: 800px !important;
    background-size: 90% !important;
  }

  .feature-list > .feature:nth-child(2) .feature-visual::before {
    width: 800px !important;
    height: 800px !important;
    background-size: 90% !important;
  }

  .brands-grid {
    gap: 20px;
  }

  .brands-grid img {
    height: 14px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-description {
    font-size: 15px;
  }

  .try-pro-btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .feature p {
    font-size: 14px;
  }

  .gift-options p {
    font-size: 14px;
  }

  .get-started-final {
    font-size: 13px;
    padding: 10px 20px;
  }

  .footer {
    padding: 30px 0;
  }

  .footer h2 {
    font-size: 20px;
    max-width: 300px;
  }

  .footer-gift {
    width: 60px;
    right: 15px;
    top: 100px !important;
  }

  .star-left {
    bottom: 20px;
    left: 15px;
    width: 40px;
    height: 40px;
  }

  .star-right {
    bottom: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .star-left {
    bottom: 20px;
    left: 15px;
    width: 40px;
    height: 40px;
  }

  .deco-tommy {
    left: 30px;
    width: 50px;
    top: -90px !important;
  }

  .star-right {
    bottom: 50px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Background responsive for tablets */
  body {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
  }

  /* Combined background wrapper responsive - maintain desktop size */
  .combined-background-wrapper {
    background-size: 1400px auto;
    background-position: center center;
  }

  /* Feature images for tablets */
  .gifting-wheel-img {
    width: 320px;
    max-width: 95%;
  }

  .calendar-img {
    width: 260px;
    max-width: 95%;
  }

  .gift-box-img {
    width: 260px;
    max-width: 95%;
  }

  .dashboard-img {
    width: 320px;
    max-width: 95%;
  }

  .marketing-img {
    width: 240px;
    max-width: 95%;
  }

  /* Header responsive for tablets */
  header {
    padding: 18px 0;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero {
    padding: 70px 0 50px;
    min-height: 550px;
  }

  .feature {
    gap: 60px;
    margin-bottom: 0;
  }

  .feature h3 {
    font-size: 26px;
  }

  .gift-options h2 {
    font-size: 32px;
  }

  .container {
    max-width: 900px;
  }

  .logo {
    font-size: 22px;
  }

  .logo img {
    height: 35px;
  }

  .logo::before {
    width: 22px;
    height: 22px;
  }

  nav a {
    font-size: 15px;
  }
  .watch-feature {
    top: 160px;
    left: 50px;
    width: 100px;
    height: 100px;
  }

  .get-started-btn {
    font-size: 15px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-description {
    font-size: 17px;
  }

  .try-pro-btn {
    font-size: 17px;
  }

  .feature p {
    font-size: 15px;
  }

  .gift-options p {
    font-size: 15px;
  }

  .get-started-final {
    font-size: 17px;
  }

  .footer h2 {
    font-size: 32px;
    max-width: 550px;
  }

  /* Decorative squares for tablets */
  .features .feature .feature-visual::before {
    width: 1000px;
    height: 1000px;
    max-width: 95%;
    max-height: 95%;
  }

  /* Tablet responsive squares - specific selectors */
  .feature-list > .feature:nth-child(odd) .feature-visual::before {
    width: 1000px !important;
    height: 1000px !important;
  }

  .feature-list > .feature:nth-child(even) .feature-visual::before {
    width: 1000px !important;
    height: 1000px !important;
  }

  /* Tablet decorative elements - maintaining same relative positions */
  .headphones {
    top: 50px;
    left: 50px;
    width: 157px;
    height: 157px;
  }

  .star {
    top: 100px;
    left: 45px;
    width: 90px;
    height: 90px;
  }

  .mcdonalds-logo {
    top: 67px;
    right: 60px;
    width: 65px;
    height: 65px;
    font-size: 18px;
  }

  .sneaker {
    top: 295px;
    right: 45px;
    width: 177px;
    height: 115px;
  }

  .star-2 {
    top: 250px;
    right: 50px;
    width: 90px;
    height: 90px;
  }

  .starbucks-logo {
    top: 320px;
    left: 80px;
    width: 67px;
    height: 70px;
  }

  .watch-feature {
    top: 60px;
    left: 60px;
    width: 100px;
    height: 100px;
  }

  .coffee-cup {
    top: 165px;
    right: 150px;
    width: 45px;
    height: 45px;
  }

  .bubble {
    top: 150px;
    right: 135px;
    width: 30px;
    height: 30px;
  }

  .coffee-feature {
    top: 410px;
    right: 15px;
    width: 130px;
    height: 190px;
    max-width: 100%;
    height: auto;
  }

  .bubble-feature {
    top: 180px;
    right: 20px;
    width: 104px;
    height: 95px;
    max-width: 100%;
    height: auto;
  }
}

/* Large screens */
@media (min-width: 1025px) {
  /* Background responsive for large screens */
  body {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
  }

  /* Combined background wrapper responsive - maintain desktop size */
  .combined-background-wrapper {
    background-size: 1400px auto;
    background-position: center center;
  }

  /* Feature images for large screens */
  .gifting-wheel-img {
    width: 380px;
    max-width: 100%;
  }

  .calendar-img {
    width: 300px;
    max-width: 100%;
  }

  .gift-box-img {
    width: 280px;
    max-width: 100%;
  }

  .dashboard-img {
    width: 360px;
    max-width: 100%;
  }

  .marketing-img {
    width: 260px;
    max-width: 100%;
  }

  /* Brands grid for large screens */
  .brands-grid {
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  /* Header responsive for large screens */
  header {
    padding: 25px 0;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: 700px;
  }

  .feature {
    gap: 100px;
    margin-bottom: 0;
  }

  .container {
    max-width: 1400px;
  }

  .logo {
    font-size: 26px;
  }

  .logo img {
    height: 45px;
  }

  .logo::before {
    width: 26px;
    height: 26px;
  }

  nav a {
    font-size: 17px;
  }

  .get-started-btn {
    font-size: 17px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-description {
    font-size: 19px;
  }

  .try-pro-btn {
    font-size: 19px;
  }

  .feature h3 {
    font-size: 30px;
  }

  .feature p {
    font-size: 17px;
  }

  .gift-options h2 {
    font-size: 38px;
  }

  .gift-options p {
    font-size: 17px;
  }

  .get-started-final {
    font-size: 19px;
  }

  /* Decorative squares for large screens */
  .features .feature .feature-visual::before {
    width: 1300px;
    height: 1300px;
    max-width: 100%;
    max-height: 100%;
  }

  /* Large screen responsive squares - specific selectors */
  .feature-list > .feature:nth-child(odd) .feature-visual::before {
    width: 1300px !important;
    height: 1300px !important;
  }

  .feature-list > .feature:nth-child(even) .feature-visual::before {
    width: 1300px !important;
    height: 1300px !important;
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  body {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
  }

  /* Combined background wrapper responsive - maintain desktop size */
  .combined-background-wrapper {
    background-size: 1400px auto;
    background-position: center center;
  }

  /* Feature images for extra large screens */
  .gifting-wheel-img {
    width: 420px;
    max-width: 100%;
  }

  .calendar-img {
    width: 340px;
    max-width: 100%;
  }

  .gift-box-img {
    width: 320px;
    max-width: 100%;
  }

  .dashboard-img {
    width: 400px;
    max-width: 100%;
  }

  .marketing-img {
    width: 300px;
    max-width: 100%;
  }

  /* Brands grid for extra large screens */
  .brands-grid {
    gap: 100px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  /* Header responsive for extra large screens */
  header {
    padding: 30px 0;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: 800px;
  }

  .container {
    max-width: 1600px;
  }

  .logo {
    font-size: 28px;
  }

  .logo img {
    height: 50px;
  }

  .logo::before {
    width: 28px;
    height: 28px;
  }

  nav a {
    font-size: 18px;
  }

  .get-started-btn {
    font-size: 18px;
  }

  .feature h3 {
    font-size: 32px;
  }

  .feature p {
    font-size: 18px;
  }

  .gift-options h2 {
    font-size: 42px;
  }

  .gift-options p {
    font-size: 18px;
  }

  .footer h2 {
    font-size: 38px;
    max-width: 600px;
  }

  /* Decorative squares for extra large screens */
  .features .feature .feature-visual::before {
    width: 1400px;
    height: 1400px;
    max-width: 100%;
    max-height: 100%;
  }

  /* Extra large screen responsive squares - specific selectors */
  .feature-list > .feature:nth-child(odd) .feature-visual::before {
    width: 700px !important;
    height: 700px !important;
  }

  .feature-list > .feature:nth-child(even) .feature-visual::before {
    width: 700px !important;
    height: 700px !important;
  }
}

/* Hide navigation on very small screens */
@media (max-width: 480px) {
  .nav {
    display: none;
  }
}

/* Ensure images don't overflow on small screens */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

/* General responsive image rules */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all decorative images are responsive */
.hero-decoration,
.feature-decoration,
.footer-decoration {
  max-width: 100%;
  height: auto;
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 40px 0 80px;
    min-height: 300px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-description {
    font-size: 16px;
  }

  .headphones {
    width: 120px;
    height: 120px;
  }

  .mcdonalds-logo {
    width: 60px;
    height: 60px;
  }

  .sneaker {
    width: 100px;
    height: 100px;
  }

  .starbucks-logo {
    width: 70px;
    height: 70px;
  }
}

/* Disable all animations and transforms on footer */
footer,
footer * {
  animation: none !important;
  transition: none !important;
  transform: none !important;
  clip-path: none !important;
  opacity: 1 !important;
}
