.hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.tool-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 2px solid transparent;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  text-decoration: none;
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.tool-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.tool-card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.tool-badge {
  display: inline-block;
  background: var(--gradient-bg);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1rem;
}
.content-section {
  background: white;
  padding: 4rem 1rem;
  margin: 2rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #334155;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.25rem;
}

.content-section ul,
.content-section ol {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.8;
  color: #475569;
}

.content-section li {
  margin-bottom: 0.75rem;
}

.content-section strong {
  color: #1e293b;
  font-weight: 600;
}

.features-list {
  background: #f8fafc;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.features-list h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.features-list ul {
  margin: 0;
  padding-left: 1.5rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 2rem;
}