.ai-hero {
  position: relative;
  min-height: clamp(560px, 86vh, 880px);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(80px, 12vh, 160px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .55) 60%, rgba(0, 0, 0, .8) 100%),
    url('../../assets/ai-cinema.png') center/cover;
}

.ai-hero__inner {
  width: min(calc(100% - 40px), 760px);
  text-align: center;
}

.ai-hero__title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .5);
}

.ai-hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.36em;
  color: #f3e5c8;
}

.ai-hero__divider::before,
.ai-hero__divider::after {
  content: "";
  width: clamp(60px, 10vw, 110px);
  height: 1px;
  background: rgba(243, 229, 200, .65);
}

.ai-hero__body {
  margin: 0 0 36px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.ai-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d6b079 0%, #a67c42 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.24em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: filter .2s ease, transform .2s ease;
}

.ai-hero__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.ai-hero__cta svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 767px) {
  .ai-hero {
    min-height: clamp(440px, 68vh, 560px);
    padding-bottom: 48px;
  }

  .ai-hero__title {
    font-size: 24px;
    letter-spacing: 0.16em;
  }

  .ai-hero__divider {
    font-size: 13px;
    letter-spacing: 0.28em;
  }

  .ai-hero__divider::before,
  .ai-hero__divider::after {
    width: 36px;
  }

  .ai-hero__body {
    font-size: 13px;
    line-height: 1.9;
  }
}
