.ai-hero {
  position: relative;
  height: 731px;
  overflow: hidden;
}
.ai-hero__backdrop {
  position: absolute;
  inset: 0;
}
.ai-hero__backdrop-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-hero__backdrop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 27, 76, 0.95) 0%, rgba(15, 27, 76, 0.85) 50%, rgba(15, 27, 76, 0.7) 100%);
}
.ai-hero__main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  height: 100%;
}
.ai-hero__container {
  width: 100%;
  max-width: 1280px;
  padding: 0 32px 96px;
  display: flex;
  align-items: flex-start;
}
.ai-hero__content {
  max-width: 768px;
  display: flex;
  flex-direction: column;
}
.ai-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 16px;
  width: fit-content;
}
.ai-hero__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.ai-hero__badge-label {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4285714286;
  letter-spacing: -0.1504px;
  white-space: nowrap;
}
.ai-hero__heading {
  font-size: 60px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 0.2637px;
  margin: 0;
}
.ai-hero__description {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.556;
  letter-spacing: -0.4395px;
  margin: 0;
  padding-top: 24px;
}
.ai-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
}
.ai-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.3125px;
  padding: 12px 32px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.ai-hero__btn:hover {
  opacity: 0.9;
}
.ai-hero__btn--primary {
  background: #0ea5e9;
  color: #ffffff;
}
.ai-hero__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.ai-hero__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}