@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/* Add these font imports at the top of your style.css file */
@import url('https://fonts.googleapis.com/css2?family=Agbalumo&display=swap');

:root {
  --primary-50: #fff9e6;
  --primary-100: #fff3cc;
  --primary-200: #ffe090; /* Primary button color */
  --primary-300: #ffcd66;
  --primary-400: #ffba3d;
  --primary-500: #ffa714;
  --primary-600: #ff940a;
  --primary-700: #ff8100;
  --primary-800: #cc6700;
  --primary-900: #994d00;
  --button-text: #d76700; /* Button text color */
  --text-primary: #0c0c0c; /* General text color */
  --text-secondary: #3b3b3b; /* Subtitle text color */
  --accent-green: #334C00;
  --accent-blue: #425E71;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-400);
  border-radius: 2px;
}

/* Define a new class for the Agbalumo font */
.agbalumo-regular {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* Apply the font to specific headings */
header .hero-text h1,
.how-it-works h2,
.smart-features h2,
.testimonials h2 {
  font-family: "Agbalumo", system-ui;
}

/* Adjust font size and spacing for better readability with this font */
header .hero-text h1 {
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.how-it-works h2,
.smart-features h2,
.testimonials h2 {
  letter-spacing: 0.01em;
}

/* Optional: Enhance the text-gradient effect for better display with this font */
.text-gradient {
  padding-bottom: 5px;
}

.process-timeline {
  position: relative;
  margin: 4rem 0;
}

.timeline-line {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 200px);
  height: 4px;
  background: var(--primary-200);
  z-index: 0;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

.feature, .feature-card {
  text-align: center;
  position: relative;
}

.feature-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.icon-wrapper {
  width: 5rem;
  height: 5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.feature:hover .icon-wrapper {
  transform: translateY(-5px);
}

.icon-wrapper i {
  font-size: 2rem;
  color: var(--accent-green);
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature p {
  color: var(--text-secondary);
  max-width: 250px;
  margin: 0 auto;
}

/* App Screens Showcase */
.app-screens-container {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0 4rem 0; /* Doubled bottom padding from 2rem to 4rem */
  position: relative;
}

.app-screens {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 100%;
  animation: scroll-x 30s linear infinite alternate;
}

.app-screen {
  position: relative;
  width: 250px;
  border-radius: 36px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: all 0.4s ease;
  transform: perspective(1000px) rotateY(-5deg) scale(0.9);
}

.app-screen:hover {
  transform: perspective(1000px) rotateY(0deg) scale(0.95);
  z-index: 10;
}

.featured-screen {
  width: 280px;
  z-index: 5;
  transform: perspective(1000px) scale(1);
  box-shadow: var(--shadow-2xl);
}

.featured-screen:hover {
  transform: perspective(1000px) scale(1.05);
}

.screen-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.screen-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  transition: all 0.3s ease;
  transform: translateY(100%);
  backdrop-filter: blur(5px);
}

.app-screen:hover .screen-overlay {
  transform: translateY(0);
}

.screen-overlay h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.screen-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

@keyframes scroll-x {
  0% {
    transform: translateX(10%);
  }
  50% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(10%);
  }
}

/* Smart Features */
.smart-features {
  background: #F5F5F5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 1.0);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.meal-config-card {
  background: linear-gradient(rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.9)), url('resources/mealConfiguration.png');
  background-size: cover;
  background-position: center;
}

.nutrition-card {
  background: linear-gradient(rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.9)), url('resources/nutritionInfo.png');
  background-size: cover;
  background-position: center;
}

.time-saver-card {
  background: linear-gradient(rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.9)), url('resources/timeSaver.png');
  background-size: cover;
  background-position: center;
}

.food-waste-card {
  background: linear-gradient(rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.9)), url('resources/foodWaste.png');
  background-size: cover;
  background-position: center;
}

.inspiration-card {
  background: linear-gradient(rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.9)), url('resources/getInspiration.png');
  background-size: cover;
  background-position: center;
}

.library-card {
  background: linear-gradient(rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.9)), url('resources/libraryScreen.png');
  background-size: cover;
  background-position: center;
}

.meal-config-card h3, .meal-config-card p,
.nutrition-card h3, .nutrition-card p,
.time-saver-card h3, .time-saver-card p,
.food-waste-card h3, .food-waste-card p,
.inspiration-card h3, .inspiration-card p,
.library-card h3, .library-card p {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.meal-config-card .icon-wrapper,
.nutrition-card .icon-wrapper,
.time-saver-card .icon-wrapper,
.food-waste-card .icon-wrapper,
.inspiration-card .icon-wrapper,
.library-card .icon-wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% {
    transform: rotate(30deg) translateX(-100%);
  }
  100% {
    transform: rotate(30deg) translateX(100%);
  }
}

.feature-details {
  margin-top: 4rem;
}

.detail-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(249, 255, 237, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  font-weight: 600;
  color: #334C00;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.tab-btn:hover {
  box-shadow: var(--shadow-md);
}

.tab-btn.active {
  background: #F9FFED;
  color: #334C00;
  box-shadow: var(--shadow-md);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tab-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.tab-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tab-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tab-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Testimonials */
.testimonials {
  background: #F5F5F5;
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2rem 1rem;
  margin: -2rem -1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(100% - 2rem);
  scroll-snap-align: center;
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 2.5rem;
  color: var(--primary-200);
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-200);
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-primary);
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: white;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--primary-100);
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-400);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-600);
  transform: scale(1.2);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-300) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,64L60,96C120,128,240,192,360,202.7C480,213,600,171,720,138.7C840,107,960,85,1080,80C1200,75,1320,85,1380,90.7L1440,96L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta h2::after {
  background: white;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-secondary {
  background-color: white;
  color: var(--primary-700);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.launch-counter {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.counter-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem;
  min-width: 80px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.counter-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #F9FFED;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--accent-green);
  padding: 4rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.logo i {
  color: var(--primary-200);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--accent-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-600);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.social-link:hover {
  background: var(--primary-100);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  color: var(--accent-green);
  opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .hero-text h1 {
    font-size: 4rem;
  }

  .hero-text p {
    margin-left: 0;
  }
  
  .feature-pill-container {
    justify-content: flex-start;
  }
  
  .hero-btns {
    justify-content: flex-start;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo {
    margin-right: auto;
  }

  .tab-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .timeline-line {
    display: none;
  }

  .feature-number {
    display: none;
  }

  .tab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .launch-counter {
    flex-wrap: wrap;
  }

  .counter-item {
    flex: 1 0 calc(50% - 1.5rem);
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

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

.fade-in-left {
  animation: fadeInLeft 1s ease-in-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-right {
  animation: fadeInRight 1s ease-in-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.zoom-in {
  animation: zoomIn 1s ease-in-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* Removed smooth scroll behavior as we're using custom JS implementation */
  scroll-behavior: auto;
}


body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.bg-gradient {
  background: #F5F5F5;
  background-size: contain;
  background-position: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/* Food Icon Background Animation */
.food-icons-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.food-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 10s ease-in-out infinite;
  filter: blur(1px);
}

.food-icon:nth-child(even) {
  animation-duration: 18s;
}

.food-icon:nth-child(3n) {
  animation-duration: 14s;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotateZ(-1deg);
  }
  50% {
    transform: translateY(-10px) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(-1deg);
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.download-link {
  margin-right: 1rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.logo i {
  color: var(--primary-600);
  margin-right: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-600);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* Hero Section */
header {
  padding: 12rem 0 6rem;
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text {
  text-align: center;
  flex: 1;
  max-width: 550px;
}

.app-icon-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.app-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 224, 144, 0.3);
  animation: subtle-float 4s ease-in-out infinite;
  object-fit: cover;
}

@keyframes subtle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.badge {
  display: inline-block;
  background-color: var(--primary-100);
  color: var(--primary-800);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  background-clip: text;
  -webkit-background-clip: text;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary-600), var(--primary-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.text-gradient::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-600), var(--primary-800));
  border-radius: 2px;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.6;
}

.feature-pill-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  background: #F9FFED;
  border: 1px solid #334C00;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334C00;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.feature-pill:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-pill i {
  font-size: 1rem;
  color: #334C00 !important;
}

.hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.btn-primary {
  background-color: var(--primary-200);
  color: var(--button-text);
  padding: 0.875rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl), 0 0 0 0 rgba(255, 224, 144, 0.7);
  text-align: center;
  display: block;
  margin: 0 auto;
  min-width: 200px;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background-color: var(--primary-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 224, 144, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 224, 144, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 224, 144, 0);
  }
}

.btn-text {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: var(--primary-700);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-text:hover .btn-icon {
  transform: translateX(4px);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image-container {
  position: relative;
  z-index: 1;
  perspective: 1000px;
  padding: 2rem;
  transition: transform 0.6s ease;
}

/* Removed floating animation */

.parallax-img {
  width: 50%;
  max-width: 300px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease-in-out;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  margin: 1.5rem auto; /* Increased from 0 auto to 1.5rem auto */
  display: block;
  cursor: move; /* Shows users they can interact with it */
}

.floating-card {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float-card 4s ease-in-out infinite;
  z-index: 2;
  transform: scale(0.8);
}

.floating-card-secondary {
  bottom: auto;
  right: auto;
  top: 10px;
  left: 10px;
  animation: float-card 4s ease-in-out 2s infinite;
  z-index: 1;
  transform: scale(0.8);
}

@keyframes float-card {
  0%, 100% {
    transform: translateY(0) scale(0.8);
  }
  50% {
    transform: translateY(-10px) scale(0.8);
  }
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  color: var(--accent-blue);
}

.card-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.card-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-secondary);
  border-radius: 15px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--text-secondary);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s ease infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.scroll-indicator span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* How It Works */
.how-it-works, .smart-features, .testimonials {
  padding: 6rem 0;
  position: relative;
}

.how-it-works {
  background: #F5F5F5;
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  padding-top: 7rem;
}

.section-blob {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-50) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

/* Add these styles to your style.css file */

/* Updated Steps Container Layout */
.steps-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1000px; /* Increased from 900px to accommodate larger boxes */
}

.step-item {
  position: relative;
  padding: 1.5rem;
  background: white;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 240px; /* Increased from 180px */
  flex-shrink: 0;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 30px;
  height: 30px;
  background: var(--primary-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Updated step image to maintain 3:4 aspect ratio */
.step-image {
  width: 100%;
  height: 180px; /* Increased from 120px to maintain 3:4 ratio with width of 240px */
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  
  .step-item {
    width: 100%;
    max-width: 320px; /* Increased from 280px */
  }
  
  .step-image {
    height: 240px; /* Adjusted to maintain 3:4 ratio with max-width of 320px */
  }
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.step-item:hover .step-image img {
  transform: scale(1.05);
}

.step-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.step-item:hover .step-icon-wrapper {
  transform: translateY(-5px);
}

.step-icon-wrapper i {
  font-size: 1.5rem;
  color: var(--accent-green) !important;
}

.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.9rem;
}

/* Updated Features Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Logo in Footer */
.footer-logo {
  height: 50px;
  width: 50px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 224, 144, 0.3);
  transition: all 0.3s ease;
  object-fit: cover;
  display: block;
}

.footer-logo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255, 224, 144, 0.5);
}

/* Change testimonial carousel animation speed */
.testimonial-track {
  transition: all 1.3s ease;
}

/* Dot indicators update */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-400);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #425E71;
  transform: scale(1.2);
}

/* Styles for the standalone pages */
.standalone-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem 2rem;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  min-height: calc(100vh - 250px); /* Ensure content takes up space before footer */
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.standalone-page h1 {
  font-size: 2.5rem;
  color: #425E71;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.standalone-page h2 {
  font-size: 1.8rem;
  color: #425E71;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.standalone-page p {
  margin-bottom: 1.5rem;
}

.standalone-page a {
  color: var(--primary-600);
  text-decoration: none;
}

.standalone-page a:hover {
  text-decoration: underline;
}

.standalone-page .logo {
  display: block;
  margin: 0 auto 3rem;
  text-align: center;
}

.standalone-page .back-link {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  color: #425E71;
  font-weight: 600;
  width: fit-content;
}

.standalone-page .back-link i {
  margin-right: 0.5rem;
  position: relative;
  top: 1px;
}

.app-store-badge {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

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

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.standalone-page .back-link i {
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  
  .step-item {
    width: 100%;
    max-width: 280px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .app-screens {
    flex-direction: column;
    gap: 3rem;
  }
  
  .app-screen, .featured-screen {
    width: 280px;
    transform: none;
  }
  
  .app-screen:hover, .featured-screen:hover {
    transform: scale(1.05);
  }
}