
:root { --brand: #0d6efd; }
body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.navbar-brand img { height: 36px; }
.hero {
  position: relative; min-height: 70vh; display: grid; place-items: center; text-align: center; color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1742975710558-1caf75cdbda2?auto=format&fit=crop&w=1920') center/cover no-repeat;
  filter: brightness(.45);
}
.hero .content { position: relative; z-index: 2; }
.kicker { display:inline-flex; gap:.5rem; align-items:center; background: rgba(13,110,253,.2); border:1px solid rgba(255,255,255,.25); padding:.25rem .6rem; border-radius: 999px; font-weight: 600; }
.card-img-top {
  width: 100%; height: 220px; object-fit: cover; border-top-left-radius: .75rem; border-top-right-radius: .75rem;
}
.badge-soft {
  background: #f1f5ff; color: #274bdb; border: 1px solid #dbe6ff;
}
.list-unstyled .bi { color: var(--brand); margin-right: .5rem; }
.footer { color:#6c757d; }
.reveal{opacity:0; transform: translateY(8px); transition: opacity .6s ease, transform .6s ease;}
.reveal.show{opacity:1; transform:none;}
