.home-page {
  min-height: calc(100vh - 80px); /* adjust if header exists */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}

.greeting {
  font-size: 2.2rem;
  font-weight: 500;
  color: #7da2ff;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  color: #3b4a6b;
  margin-bottom: 50px;
}

.keys-grid {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  gap: 24px;
  justify-content: center;
}

.key-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 60, 255, 0.08);
  text-decoration: none;
  transition: all 0.2s ease;
}

.key-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.key-product-type {
  font-size: 0.8rem;
  color: #8fa3c8;
  font-weight: 400;
}

.key-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 60, 255, 0.15);
  border: 1px solid #b7ccff;
}

.key-text {
  font-size: 1.2rem;
  color: #5a6ea8;
  font-weight: 500;
}

.arrow {
  font-size: 1.5rem;
  color: #3b6cff;
  background: #eef3ff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


