nav-link {
    @apply transition duration-300 hover:text-green-400;
  }
  .nav-link:hover {
    filter: drop-shadow(0 0 6px rgba(34,197,94,0.8));
  }
  
.glow-button {
    @apply bg-green-600 px-6 py-3 rounded-lg font-semibold transition duration-300;
  }

  .glow-button:hover {
    background-color: #22c55e;
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(34,197,94,0.9));
  }
  
  .btn-outline-glow {
  border: 1px solid #16a34a;
  color: #16a34a;
  background: transparent;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-glow:hover {
  background: #16a34a;
  color: white;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
  transform: translateY(-2px);
}

.nav-link {
  position: relative;
  color: #374151;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #166534;
}

/* ACTIVE STATE */
.nav-link.active {
  color: #166534;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #166534;
  transition: width 0.3s ease;
}

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

/* ACTIVE UNDERLINE */
.nav-link.active::after {
  width: 100%;
}

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

.animate-slide {
  display: flex;
  width: max-content;
  animation: slide 30s linear infinite;
}

    .nav-link {
      position: relative;
      color: #374151;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #166534;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: #166534;
      transition: width 0.3s ease;
    }

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

    .btn-glow {
      transition: all 0.3s ease;
    }

    .btn-glow:hover {
      box-shadow: 0 0 18px rgba(22, 101, 52, 0.35);
      transform: translateY(-1px);
    }

    .field-focus {
      transition: all 0.25s ease;
    }

    .field-focus:focus {
      outline: none;
      border-color: #16a34a;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
    }

    .choice-card {
      transition: all 0.25s ease;
      cursor: pointer;
      user-select: none;
    }

    .choice-card:hover {
      transform: translateY(-2px);
      border-color: #16a34a;
      box-shadow: 0 10px 24px rgba(22, 101, 52, 0.08);
    }

    .choice-card.active {
      border-color: #16a34a;
      background: #f0fdf4;
      box-shadow: 0 10px 24px rgba(22, 101, 52, 0.12);
    }

    .hero-overlay {
      background: linear-gradient(to right, rgba(6, 46, 16, 0.86), rgba(6, 46, 16, 0.58));
    }

.nav-link {
      position: relative;
      color: #374151;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #166534;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: #166534;
      transition: width 0.3s ease;
    }

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

    .btn-glow {
      transition: all 0.3s ease;
    }

    .btn-glow:hover {
      box-shadow: 0 0 18px rgba(22, 101, 52, 0.35);
      transform: translateY(-2px);
    }

    .glass-card {
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.92);
    }

    .hero-overlay {
      background: linear-gradient(to right, rgba(6, 46, 16, 0.9), rgba(6, 46, 16, 0.55));
    }

    .step-card,
    .feature-card,
    .faq-card {
      transition: all 0.3s ease;
    }

    .step-card:hover,
    .feature-card:hover,
    .faq-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    }

    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: 800;
      background: #166534;
      color: white;
      box-shadow: 0 10px 25px rgba(22, 101, 52, 0.25);
    }

    .timeline-line {
      position: absolute;
      left: 27px;
      top: 70px;
      bottom: -30px;
      width: 2px;
      background: linear-gradient(to bottom, #22c55e, rgba(34, 197, 94, 0.1));
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .faq-item.active .faq-content {
      max-height: 300px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

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

    .compare-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.85rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 600;
    }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #16a34a;
  color: white;
}

.btn-primary:hover {
  background: #22c55e;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.75), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-light {
  background: white;
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.btn-light:hover {
  background: #f0fdf4;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.5), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-sm {
  padding: 0.6rem 1rem;
}

.btn-md {
  padding: 0.75rem 1.5rem;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
}

.btn-full {
  width: 100%;
}

.filter-btn.active {
  background: #16a34a;
  color: white;
  border-color: #16a34a;
  box-shadow: 0 0 15px rgba(34,197,94,0.6);
}

.filter-btn.active {
  transform: scale(1.05);
}

.choice-card {
  transition: all 0.25s ease;
  cursor: pointer;
}

.choice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22, 101, 52, 0.08);
}

.choice-card.selected {
  border-color: #15803d;
  background: #f0fdf4;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

