body {
  font-family: 'Inter', sans-serif;
}

.bg-gradient-primary {
  background: linear-gradient(90deg, #ff6b6b, #ff9d81);
}

.text-gradient {
  background: linear-gradient(90deg, #ff6b6b, #ff9d81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.button-gradient {
  background: linear-gradient(90deg, #ff6b6b, #ff9d81);
  transition: all 0.3s ease;
}

.button-gradient:hover {
  box-shadow: 0 10px 15px -3px rgba(255, 107, 107, 0.2),
    0 4px 6px -2px rgba(255, 107, 107, 0.1);
  transform: translateY(-1px);
}

.header-logo-name {
  font-size: 36px;
  font-weight: bold;
}

.header-request-demo-btn {
  display: inline-block;
}

.clara-workflow-image-container {
  display: block;
}

@media only screen and (max-width: 600px) {
  .header-logo-name {
    font-size: 24px;
  }

  .header-request-demo-btn {
    display: none;
  }

  .clara-workflow-image-container {
    display: none;
  }
}
