.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 90px;
  color: #fff;
  background-color: var(--color-primary-dark);
  background-image: linear-gradient(180deg, rgba(8, 20, 43, .45) 0%, rgba(8, 20, 43, .82) 100%), url('../img/hero/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.hero-logo-wrap { width: 124px; height: 124px; display: grid; place-items: center; margin: 0 auto 24px; padding: 14px; border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-lg); background: rgba(255,255,255,.92); box-shadow: var(--shadow-glow); backdrop-filter: blur(6px); }
.hero-logo { width: 100%; height: 100%; object-fit: contain; }
.hero-kicker { margin: 0 0 10px; color: #bcd4ff; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-title { margin: 0; color: #ffffff; font-size: clamp(2.7rem, 8vw, 5rem); font-weight: 800; letter-spacing: -.04em; text-shadow: 0 6px 26px rgba(0,0,0,.28); }
.hero-title .text-primary-custom { color: #7fb1ff; }
.hero-subtitle { margin: 10px 0 0; color: #d6e6ff; font-size: clamp(1rem, 2.5vw, 1.35rem); font-weight: 600; }
.hero-desc { max-width: 620px; margin: 16px auto 0; color: rgba(255,255,255,.85); line-height: 1.8; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
