/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,26,0.85) 40%, rgba(10,15,26,0.4) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px var(--gutter);
  max-width: 640px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero__text {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero { min-height: 400px; }
  .hero__content { padding: 50px var(--gutter); }
}

/* Inner page hero (smaller) */
.hero--inner {
  min-height: 280px;
}
.hero--inner h1 {
  font-size: clamp(26px, 3.5vw, 42px);
}
