/* Landing Page Specific Styles */
.tool-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.tool-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.tool-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tool-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333d4b;
  margin-bottom: 4px;
}

.tool-info p {
  font-size: 14px;
  color: #8b95a1;
  margin: 0;
}

.tool-icon {
  font-size: 24px;
  margin-right: 16px;
}

.arrow-icon {
  color: #b0b8c1;
  font-size: 20px;
  font-weight: bold;
}

.header-section {
  padding: 40px 0 20px 0;
}

.header-section h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.header-section p {
  font-size: 16px;
  color: #6b7684;
}

.feature-badges {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background-color: rgba(0, 112, 255, 0.1);
  color: #0070ff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.badge-icon {
  margin-right: 4px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-section {
  animation: fadeInUp 0.6s ease-out forwards;
}

.tool-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0; /* Start hidden for animation */
}

.tool-item:nth-child(1) {
  animation-delay: 0.1s;
}

.tool-item:nth-child(2) {
  animation-delay: 0.2s;
}
