/* ==========================================================================
   Logo integration
   Uses logo.png for brand marks instead of generic icons.
   ========================================================================== */
.brand-logo-img,
.feature-logo-img,
.inline-logo-img {
  display: block;
  object-fit: contain;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
}

.feature-logo-img {
  width: 2.35rem;
  height: 2.35rem;
}

.inline-logo-img {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.site-nav__logo-icon {
  position: relative;
  display: grid;
  place-items: center;
  height: 3.35rem;
  width: 4.9rem;
  aspect-ratio: 1790 / 1208;
  padding: .22rem;
  border: 1px solid rgba(0, 88, 251, .18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78)),
    rgba(0, 88, 251, .05);
  box-shadow:
    0 12px 28px rgba(0, 88, 251, .13),
    inset 0 1px 0 rgba(255,255,255,.9);
  overflow: hidden;
}

.site-nav__logo-icon::after {
  content: '';
  position: absolute;
  inset: auto 14% 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: #0058fb;
  opacity: .85;
}

.footer-brand__icon {
  display: grid;
  place-items: center;
  height: 3.4rem;
  width: 5rem;
  aspect-ratio: 1790 / 1208;
  padding: .24rem;
  border: 1px solid rgba(0, 88, 251, .16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.hero-mobile-dl-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3.5rem;
  padding: 0 1.25rem;
  border-radius: 8px;
  background: var(--primary);
  color: var(--primary-fg);
  border: 1px solid rgba(0, 88, 251, .32);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 767px) {
  .hero-mobile-dl-btn {
    display: inline-flex;
    width: 100%;
  }

  .hero-cta {
    display: none;
  }
}
