:root {
  /* Colors */
  --primary: #76a713;
  --primary-hover: #5d850f;
  --secondary: #ff7800;
  --secondary-hover: #db6700;
  --dark: #191919;
  --dark-glass: rgba(25, 25, 25, 0.85);
  --light: #f9fbfc;
  --white: #ffffff;
  --text-main: #333333;
  --text-muted: #666666;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(118, 167, 19, 0.15);
  
  /* Gradients */
  --gradient-bg: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  --gradient-hero: linear-gradient(135deg, #f6fcf4 0%, #e6f5da 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary) 0%, #9bc930 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --container-padding: 0 5%;
  --section-padding: 100px 0;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Remove default mobile tap highlight/selection flash on controls */
a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-heading);
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(118, 167, 19, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: button-shine 5s linear infinite;
}

@keyframes button-shine {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Disable shimmer on the Hero 'Explore Menu' button */
.hero-btns .btn-primary::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(118, 167, 19, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 120, 0, 0.2);
}

.btn-subtle {
  background: rgba(118, 167, 19, 0.1);
  color: var(--primary);
  border: 2px solid transparent;
}

.btn-subtle:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(118, 167, 19, 0.2);
}

/* --- Scroll Reveal Motion --- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* --- Navbar (Glassmorphism) --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: var(--transition);
  padding: 15px 0;
}

.navbar.scrolled {
  background: transparent !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

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

.navbar .logo img {
  height: 50px;
  transition: var(--transition);
}

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

.nav-links a {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-main);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* --- Hero Section --- */
.hero {
  padding: 24px 0 56px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background blob decorations */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(118, 167, 19, 0.15);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 120, 0, 0.1);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(118, 167, 19, 0.1);
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    120deg,
    var(--dark) 0%,
    var(--dark) 40%,
    #8a8a8a 50%,
    var(--dark) 60%,
    var(--dark) 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 5s linear infinite;
}

.hero h1 span {
  background: linear-gradient(
    120deg,
    var(--primary) 0%,
    var(--primary) 40%,
    #bced66 50%,
    var(--primary) 60%,
    var(--primary) 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  width: 440px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

/* --- Floating Depth Elements --- */
.floating-element {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  animation: float-parallax 15s ease-in-out infinite alternate;
}

.floating-element.blur {
  filter: blur(5px);
  opacity: 0.7;
}

.floating-element.leaf-1 {
  top: 15%;
  left: 5%;
  width: 90px;
  animation-duration: 18s;
}

.floating-element.leaf-2 {
  bottom: 10%;
  right: 8%;
  width: 130px;
  animation-duration: 22s;
}

.floating-element.leaf-3 {
  top: 30%;
  right: 48%;
  width: 60px;
  animation-duration: 15s;
}

.floating-element.leaf-4 {
  bottom: 20%;
  left: 45%;
  width: 80px;
  animation-duration: 20s;
}

@keyframes float-parallax {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  50% { transform: translateY(-40px) rotate(20deg) scale(1.05); }
  100% { transform: translateY(20px) rotate(-15deg) scale(0.95); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* --- Features Section --- */
.features {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glass-shadow);
  border-color: rgba(118, 167, 19, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(118, 167, 19, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* --- Meals Section --- */
.meals {
  padding: var(--section-padding);
  background: var(--light);
}

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

.meal-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.meal-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(118, 167, 19, 0.15);
}

.meal-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.meal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.25);
}

.meal-card:hover .meal-img-wrap img {
  transform: scale(1.35) rotate(3deg);
}

.meal-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(118,167,19,0.3);
}

.meal-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.meal-category {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.meal-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--dark);
  line-height: 1.3;
}

.meal-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.meal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(0,0,0,0.06);
  padding-top: 1.2rem;
  margin-top: auto;
}

.meal-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  font-family: var(--font-heading);
}

.meal-add {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.meal-card:hover .meal-add {
  background: var(--primary);
  color: var(--white);
  transform: rotate(90deg);
}

/* --- Additional Sections (About, How It Works, FAQ) --- */
.about-section {
  padding: var(--section-padding);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  display: block;
  background: #ffffff;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-list {
  margin-bottom: 2rem;
}

.about-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.about-list i {
  color: var(--primary);
}

.how-it-works {
  padding: var(--section-padding);
  background: var(--light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.step-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}



.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}

.faq-section {
  padding: var(--section-padding);
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--light);
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.open {
  border-color: rgba(118, 167, 19, 0.4);
  box-shadow: 0 12px 24px rgba(118, 167, 19, 0.08);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--dark);
}

.faq-toggle-icon {
  font-size: 1.7rem;
  color: var(--primary);
  line-height: 1;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
  background: #fafafa;
  border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  border-top-color: #ececec;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer p {
  padding: 0.25rem 1.5rem 1.35rem;
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 100px 0 24px;
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1250px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 750px;
  }
}

.pricing-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card .pricing-title {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 1.35rem;
  line-height: 1.3;
}

.pricing-card .btn {
  margin-top: auto !important;
}

.pricing-card.popular {
  border-color: rgba(118, 167, 19, 0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-10px);
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--dark);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pricing-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.cc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
}
.cc-price-row span {
  color: var(--text-muted);
  font-weight: 500;
}
.cc-price-row strong {
  font-size: 2.1rem;
  font-family: var(--font-heading);
  background: linear-gradient(
    120deg,
    var(--dark) 0%,
    var(--dark) 40%,
    #8a8a8a 50%,
    var(--dark) 60%,
    var(--dark) 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 5s linear infinite;
}

.cc-total-list {
  text-align: left;
  margin-bottom: 2.5rem;
}
.cc-total-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px dashed #eee;
  font-size: 1rem;
}
.cc-total-item.cc-total-item-accent .cc-total-label {
  color: var(--dark);
  font-weight: 700;
}
.cc-total-value {
  font-weight: 700;
  color: var(--dark);
}

.pricing-card .btn {
  width: 100%;
}


/* --- Enhanced CTA Section --- */
.cta-section {
  padding: 0.5rem 0 0 0;
  background: linear-gradient(135deg, #f5fbf1 0%, #e8f6df 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(118, 167, 19, 0.1);
  border-bottom: 1px solid rgba(118, 167, 19, 0.1);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.cta-content {
  flex: 1;
  padding: 2.25rem 2rem 4.25rem 0;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.2;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 450px;
  line-height: 1.7;
}

.cta-image {
  flex: 0 0 500px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.cta-image img {
  width: 100%;
  max-width: 480px;
  display: block;
  transform: translateY(15px);
  margin-right: 0;
  filter: drop-shadow(-15px 20px 30px rgba(0,0,0,0.1));
}

/* --- Stats Banner --- */
.stats-banner {
  padding: 100px 0;
  background-color: #F4F6E8;
  background-image: url('assets/bg-section3.png');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  color: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/bg-section4.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 1;
}

.stats-banner .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
}

.stat-icon {
  margin-bottom: 0;
  line-height: 1;
  flex-shrink: 0;
}

.stat-icon svg.ct-stat-icon {
  height: 52px;
  width: auto;
  color: var(--primary);
  display: block;
  margin: 0 auto;
}

.stat-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 4px;
  line-height: 1;
  color: var(--dark);
}

.stat-number.text-lg {
  font-size: 2.25rem;
  margin-top: 0;
}

.stat-number span {
  font-size: 1.25rem;
  margin-left: 4px;
}

.stat-text {
  font-size: 1rem;
  font-weight: 600;
  color: #3d3d3d;
}

/* --- Footer --- */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  filter: brightness(0) invert(1);
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #aaa;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  background: var(--dark);
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 0.9rem;
}

@media (hover: none) and (pointer: coarse) {
  a:focus,
  button:focus,
  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    box-shadow: none;
  }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    margin-bottom: 3rem;
  }
  .hero-btns {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .meals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Hero Responsive Images --- */
.hero-img-mobile {
  display: none;
}

.nav-connect-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-links, .nav-order-desktop, .floating-element {
    display: none !important;
  }
  .nav-connect-mobile {
    display: inline-flex !important;
    padding: 10px 20px;
    font-size: 0.95rem;
    background: var(--dark) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
  }
  .hero {
    padding-top: 140px;
    padding-bottom: 0;
  }
  .hero-img-desktop {
    display: none !important;
  }
  .hero-img-mobile {
    display: block !important;
    width: 100%;
    max-width: 500px;
    margin: 0 auto -3rem auto;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .meals-grid {
    grid-template-columns: 1fr;
  }
  .meal-img-wrap img {
    transform: scale(1.14);
  }
  .meal-card:hover .meal-img-wrap img {
    transform: scale(1.18) rotate(1deg);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .banner-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-section {
    padding: 48px 0 8px;
  }
  .pricing-contact-banner {
    margin-top: 1rem !important;
    padding: 1.25rem !important;
    gap: 1rem !important;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }
  .stat-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 1rem 0.5rem;
  }
  .stat-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .stat-icon svg.ct-stat-icon {
    width: 52px;
    height: 52px;
  }
  .stat-meta {
    margin: 0;
    align-items: flex-start;
  }
  .stats-grid .stat-item:nth-child(3) .stat-icon svg.ct-stat-icon,
  .stats-grid .stat-item:nth-child(4) .stat-icon svg.ct-stat-icon {
    width: 56px;
    height: 56px;
  }
  .cta-section {
    padding: 0 0 0;
  }
  .cta-box {
    flex-direction: column;
    text-align: center;
  }
  .cta-content {
    padding: 0.75rem 1rem 1.5rem 1rem;
  }
  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-image {
    flex: 1;
    width: 100%;
    justify-content: center;
  }
  .cta-image img {
    margin: 0 auto;
    transform: translateY(10px);
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --- WhatsApp Connect Overlay --- */
.wa-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0px at var(--click-x, 50%) var(--click-y, 50%));
  -webkit-clip-path: circle(0px at var(--click-x, 50%) var(--click-y, 50%));
  transition: clip-path 0.8s cubic-bezier(0.85, 0, 0.15, 1), -webkit-clip-path 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  pointer-events: none;
}

.wa-overlay.active {
  clip-path: circle(150% at var(--click-x, 50%) var(--click-y, 50%));
  -webkit-clip-path: circle(150% at var(--click-x, 50%) var(--click-y, 50%));
  pointer-events: all;
}

.wa-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(0,0,0,0.05);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--dark);
  border: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 100;
}

.wa-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: rgba(0,0,0,0.1);
  color: var(--primary);
}

.wa-content-free {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.wa-overlay.active .wa-content-free {
  opacity: 1;
  transform: translateY(0);
}

.wa-content-free h2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  letter-spacing: -1px;
}

.wa-content-free h2 span {
  color: #25D366;
}

.wa-content-free p {
  font-size: 1.4rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.wa-icon-large {
  font-size: 6rem;
  color: #25D366;
  margin-bottom: 2rem;
  filter: drop-shadow(0 20px 30px rgba(37, 211, 102, 0.3));
}

.btn-wa {
  background: #25D366;
  color: #fff;
  font-size: 1.25rem;
  padding: 20px 45px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
}

.btn-wa:hover {
  background: #1eb956;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* --- Mobile specific styling for WhatsApp overlay --- */
@media (max-width: 768px) {
  .wa-close {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
  
  .wa-content-free {
    padding: 1rem;
  }

  .wa-content-free h2 {
    font-size: 2.5rem;
  }
  
  .wa-content-free p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .wa-icon-large {
    font-size: 4.5rem;
    margin-bottom: 1rem;
  }
}

/* --- Premium Scroll Reveal Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
