@keyframes hero-scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-chat-rise {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-message-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes call-connected-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes voice-bar-wave {
  0%,
  100% {
    height: 30%;
  }

  50% {
    height: 100%;
  }
}

.hero-scale-in {
  animation: hero-scale-in 1s ease-out 0.2s both;
}

.hero-chat-rise {
  animation: hero-chat-rise 0.8s ease-out 0.6s both;
}

.hero-message-in {
  opacity: 0;
  animation: hero-message-in 0.5s ease-out forwards;
}

.hero-message-in-1 {
  animation-delay: 1s;
}

.hero-message-in-2 {
  animation-delay: 1.5s;
}

.call-connected-float {
  animation: call-connected-float 4s ease-in-out infinite;
}

.voice-bar-wave {
  height: 30%;
  animation-name: voice-bar-wave;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.icon-4 svg {
  width: 1rem;
  height: 1rem;
}

.icon-5 svg {
  width: 1.25rem;
  height: 1.25rem;
}
