
.invest-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.invest-text {
  background-color: #ffffff;
  color: #000;
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 0.4s ease;
  transform: translateX(0);
}

.invest-icon {
  background-color: #fbc225;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-left: 12px;
  transition: all 0.4s ease;
}

.invest-icon svg {
  width: 20px;
  height: 20px;
  stroke: #0A0F15;
  transform: rotate(0deg) translate(0, 0);
  transition: transform 0.4s ease;
}

.invest-button:hover .invest-text {
  background-color: #ffffff;
  border-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transform: translateX(8px);
}

.invest-button:hover .invest-icon {
  border-radius: 0;
  margin-left: 0;
  transform: scale(1.05);
}

.invest-button:hover .invest-icon svg {
  transform: rotate(45deg) translate(2px, -2px);
}

.invest-button:active .invest-text,
.invest-button:active .invest-icon {
  transform: scale(0.96);
  transition: transform 0.1s ease;
}
