body {
  background: #f8faf8;
}

.navbar-brand {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.badge.fs-6 {
  min-width: 64px;
  font-size: 0.95rem !important;
}

.card {
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}

.table > :not(caption) > * > * {
  padding: 0.6rem 0.75rem;
}

/* ── Landing page hero ─────────────────────────────────────────────────── */
.pg-hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.pg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* ── Feature cards ─────────────────────────────────────────────────────── */
.pg-feature-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border-width: 2px !important;
}

.pg-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.pg-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
