/* Home page hero and features styles for SaaS */

.home-hero {
  max-width: 700px;
  margin: 60px auto 40px auto;
  text-align: center;
  padding: 40px 24px 32px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.home-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: #1d3557;
  font-weight: 700;
}

.home-hero p {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 32px;
}

.home-hero .cta-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.home-hero .cta-btn:hover {
  background: #1d4ed8;
}

.home-features {
  max-width: 900px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.home-feature {
  background: #f9fafb;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  padding: 28px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 320px;
  text-align: center;
}

.home-feature h3 {
  color: #2563eb;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.home-feature p {
  color: #374151;
  font-size: 1rem;
}
