.section--hero {
  text-align: center;
  padding-bottom: 0px !important;
  background-color: var(--brand);
  background-size: cover;
  background-position: center 100%;
  background-repeat: no-repeat;
  height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-xl) var(--spacing-md);
  transition: all 0.6s ease-in-out;
}

.hero__company {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: white;
  margin-bottom: var(--spacing-lg);
  opacity: 0.8;
  transition: all 0.6s ease-in-out;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  transition: all 0.6s ease-in-out;
  font-size: 64pt;
  font-family: "Brazie", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero__title-left {
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #ffc9d5;
  
  text-shadow: 0 0 5px #ab6a94, 0 0 10px #ab6a94, 0 0 20px #ab6a94;
  transition: all 0.6s ease-in-out;
  animation: slideInLeft 1s ease-out forwards;
  transform: rotate(-5deg);
}

.hero__title-right {
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #aeb1ff;
  text-shadow: 0 0 5px #0007b7, 0 0 10px #0007b7, 0 0 20px #0007b7;
  transition: all 0.6s ease-in-out;
  animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%) rotate(-5deg);
    opacity: 0;
  }
  to {
    transform: translateX(0) rotate(-5deg);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  line-height: 1.4;
  color: white;
  opacity: 0.9;
  transition: all 0.6s ease-in-out;
}

.hero__ctas {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
  width: 100%;
  transition: all 0.6s ease-in-out;
}

.hero__ctas--buttons {
  margin-bottom: var(--spacing-md);
  transition: all 0.6s ease-in-out;
}

.hero-bg-img {
  width: 80%;
  max-width: 1024px;
  object-fit: contain;
  object-position: bottom center;
}