/* ============================================================================
   Pet in Chat — promo photo slots (token-only; NO hardcoded colors)
   Görsel yoksa .promo-photo'nun sıcak marka gradienti placeholder olur;
   dosya /assets/img/promo/ altına gelince <img> otomatik biner.
   ============================================================================ */
.promo-photo {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--grad-brand);
  aspect-ratio: 16 / 9;
}
.promo-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-photo.hero-photo { aspect-ratio: 16 / 10; }

/* Section-level (centered) photo band */
.section-photo { margin: 0 auto 34px; max-width: 940px; }

/* Hero small Biscuit accent (sibling of .promo-photo, not inside it) */
.hero-visual { position: relative; }
.hero-biscuit {
  position: absolute;
  right: -6px;
  bottom: -14px;
  width: 96px;
  height: 96px;
  pointer-events: none;
}

/* "Meet the pack" mascot line — small, single link */
.meet-pack { margin-top: 24px; text-align: center; }
.meet-pack a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
  color: var(--primary);
}

.biz-cta { margin-top: 18px; }
