/* ---- Home Page ---- */
.home-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f8f9fd;
}

.home-header {
  text-align: center;
  margin-bottom: 48px;
}

.home-header h1 {
  font-size: 32px;
  color: #1e1e2f;
  margin: 0 0 8px;
}

.home-subtitle {
  font-size: 15px;
  color: #999;
  margin: 0;
}

/* ---- Cards ---- */
.home-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  width: 100%;
}

.home-card {
  flex: 1 1 240px;
  max-width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 16px 40px rgba(79, 110, 247, 0.12);
}

.home-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.home-card h2 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #1e1e2f;
}

.home-card p {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  margin: 0;
}

/* ---- Footer ---- */
.home-footer {
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.home-footer a {
  color: #4f6ef7;
  text-decoration: none;
  margin-left: 12px;
}
