.hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1c3a5e 60%, #1A73E8 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.10;
  z-index: 0;
}
.hero__content { position: relative; z-index: 1; }

.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 24px;
  color: #fff;
}
.hero__title .highlight { color: #5bbdff; }
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 40px;
  opacity: 0.90;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero__note {
  margin-top: 14px;
  font-size: 0.88rem;
  opacity: 0.65;
}
