/* HERO SPLIT (matches Join / Impact logic) */
/* =====================
   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);
  }
}

.page-hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.page-hero-visual img {
  max-width: 260px;
  width: 100%;
  height: auto;
}

/* CONTACT SECTION */
.contact-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(53,232,217,0.06),
    rgba(53,232,217,0.01)
  );
}

.contact-container {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero-visual {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .page-hero-text {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    align-items: flex-start;
  }
}

/* CONTACT */
.contact-section {
  padding: clamp(3rem, 6vw, 6rem) 1.5rem;
}

.contact-container {
  max-width: 720px;
  margin: 0 auto;
}

.contact-card h2 {
  margin-bottom: 0.5rem;
}

.contact-card .muted {
  margin-bottom: 1.5rem;
}

.contact-card form {
  display: grid;
  gap: 1.25rem;
}

.contact-card label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
}

.contact-card input,
.contact-card textarea {
  margin-top: 0.4rem;
}

.req {
  color: #e34d4d;
  font-weight: 600;
}



