.passive-income-intro .content-card {
  min-height: 80vh;
}
.passive-income-intro .logo {
  width: 250px;
}
.likert-container {
  max-width: 760px;
  margin: auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.likert-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1f2d3d;
}
.likert-scale {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.likert-option {
  position: relative;
  width: 140px;
}

.btn-check + .likert-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  border-radius: 0.8rem;
  border: 2px solid #dee2e6;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  background: #ffffff;
  font-size: 0.9rem;
  color: #495057;
  text-align: center;
  height: 100%;
  user-select: none;
}

.btn-check + .likert-label svg {
  width: 30px;
  height: 30px;
  margin-bottom: 0.4rem;
  stroke: #6c757d;
  transition: stroke 0.3s ease, transform 0.2s ease;
}

.btn-check:hover + .likert-label {
  background-color: #f0f5ff;
  border-color: #adcdfc;
}

.btn-check:checked + .likert-label {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
  transform: scale(1.05);
}

.btn-check:checked + .likert-label svg {
  stroke: white;
  transform: scale(1.2);
}