.inner-hero {
  background:
    linear-gradient(90deg, rgba(10,45,94,0.88), rgba(15,74,168,0.68), rgba(15,74,168,0.12)),
    var(--hero-image) center/cover no-repeat;
}

.yellow-sweep {
  background: linear-gradient(90deg, #ffd119 0%, #ffd119 68%, #ed1c24 68%, #ed1c24 78%, #0f4aa8 78%, #0f4aa8 100%);
}

.brand-card {
  border: 1px solid rgba(15, 74, 168, 0.1);
  box-shadow: 0 18px 45px rgba(10, 45, 94, 0.08);
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.nav-link {
  font-weight: 700;
  color: #111827;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0f4aa8;
}

.nav-link.pricing {
  color: #ed1c24;
}

.nav-link.pricing:hover,
.nav-link.pricing.active {
  color: #b91c1c;
}

.promo-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  border: 0;
  padding: 0;
  background: #0a2d5e;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 45px rgba(10, 45, 94, 0.12);
}

.promo-thumb img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.promo-thumb:hover img {
  transform: scale(1.05);
}

.promo-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,45,94,0.05), rgba(10,45,94,0.82));
}

.promo-caption {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  z-index: 1;
  color: white;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 45, 94, 0.86);
}

.promo-modal.is-open {
  display: flex;
}

.promo-modal-panel {
  width: min(980px, 100%);
  overflow: hidden;
  border-radius: 1.25rem;
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.promo-modal-image {
  max-height: 64vh;
  width: 100%;
  object-fit: cover;
}
