.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.hero .bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(203, 163, 49, 0.15), transparent 45%), radial-gradient(circle at 80% 80%, rgba(47, 111, 176, 0.25), transparent 50%), linear-gradient(180deg, rgba(15, 31, 56, 0.85) 0%, rgba(15, 31, 56, 0.95) 100%);
  z-index: -1;
}
.hero .wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .eyebrow {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acc2);
  background: rgba(203, 163, 49, 0.12);
  border: 1px solid rgba(203, 163, 49, 0.35);
  border-radius: 999px;
}
.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
.hero .sub {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 36px;
}
.hero .ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero .ctas .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.hero .ctas .btn-primary {
  background: var(--acc);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(203, 163, 49, 0.3);
}
.hero .ctas .btn-primary:hover {
  background: var(--acc2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(203, 163, 49, 0.4);
}
.hero .ctas .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero .ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.hero .micro {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}
@media (max-width: 640px) {
  .hero {
    padding: 90px 20px 70px;
  }
  .hero .ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero .ctas .btn {
    width: 100%;
  }
}/*# sourceMappingURL=custom.css.map */