/* =====================
   HERO
   ===================== */
.page-hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.page-hero-inner {
  position: relative;
  max-width: 900px;
  padding: 3rem 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero h1 span {
  font-weight: 400;
  opacity: 0.85;
}

.page-hero-sub {
  max-width: 600px;
  opacity: 0.9;
}

.belief-header {
  position: relative;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* =====================================================
   PROGRAMS GRID — DESKTOP LOCK (2 ROWS × 3 COLUMNS)
   ===================================================== */

/* Desktop and large screens */
@media (min-width: 1024px) {
  .belief-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pmad-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pmad-form input,
.pmad-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25);
  color: #fff;
}

.pmad-form input::placeholder,
.pmad-form textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

.form-divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 1rem 0;
}

.belief-card.static {
  transform: none !important;
}

