/* ============================================================
   YOUNGBUILDS GLOBAL FELLOWSHIP
   Clean, Modern, Professional
   ============================================================ */

:root {
  --blue:        #1A56DB;
  --blue-dark:   #1341B0;
  --teal:        #0DAF7B;
  --gradient:    linear-gradient(135deg, #1A56DB 0%, #0F8FCB 50%, #0DAF7B 100%);
  --dark:        #0F172A;
  --dark-mid:    #1E293B;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --border:      #E2E8F0;
  --text:        #1E293B;
  --text-mid:    #475569;
  --text-light:  #94A3B8;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.12);
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --transition:  all 0.25s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.75rem;
}

.label-white {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section-dark { background: var(--dark); }
.section-gray { background: var(--off-white); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-brand span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-link:hover { color: var(--blue); }
.nav-link.active { color: var(--blue); border-bottom-color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,86,219,0.3);
}

.mob-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mob-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-drawer a:last-child { border: none; }
.nav-drawer a:hover { color: var(--blue); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: -0.01em;
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.3);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.arrow { display: inline-block; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HOME HERO
   ============================================================ */

.home-hero {
  background: var(--gradient);
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  animation: fadeUp 0.8s 0.1s ease both;
}

.home-hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.home-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}

/* ============================================================
   HOME MISSION
   ============================================================ */

.home-mission {
  padding: 6rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-header h2 { color: var(--text); margin: 0.5rem 0 1rem; }
.section-header p { font-size: 1.0625rem; }

.mission-statement {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem;
  font-size: 1.175rem;
  line-height: 1.8;
  color: var(--text-mid);
  padding: 2.5rem;
  background: var(--off-white);
  border-left: 4px solid var(--blue);
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.belief-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
  transition: var(--transition);
}

.belief-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.belief-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.belief-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.belief-body {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   HOME CTA
   ============================================================ */

.home-cta {
  background: var(--gradient);
  padding: 6rem 0;
  text-align: center;
}

.home-cta h2 { color: var(--white); margin: 0.5rem 0 1rem; }
.home-cta p { color: rgba(255,255,255,0.8); font-size: 1.0625rem; max-width: 520px; margin: 0 auto 2.5rem; }

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO
   ============================================================ */

.page-hero {
  background: var(--gradient);
  padding: 10rem 0 5rem;
  text-align: center;
}

.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 { color: var(--white); margin: 0.75rem 0 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.125rem; max-width: 560px; margin: 0 auto; }
.page-hero .btn { margin-top: 2.25rem; }

/* ============================================================
   FOR SCHOOLS
   ============================================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col-rev > *:first-child { order: 2; }
.two-col-rev > *:last-child { order: 1; }

.content-block h2 { color: var(--text); margin: 0.5rem 0 1.25rem; }
.content-block p { margin-bottom: 1rem; }
.content-block p:last-child { margin-bottom: 0; }

.accent-panel {
  background: var(--dark);
  padding: 2.5rem;
  border-radius: 12px;
}

.accent-panel p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* TRACKS */
.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.track-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.track-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.track-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.track-card:hover::before { transform: scaleX(1); }

.track-subject {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.track-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.track-grade {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.track-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.track-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.track-link:hover { gap: 0.6rem; }

/* RECEIVE */
.receive-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}

.receive-item {
  background: var(--dark-mid);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}

.receive-item:hover { background: rgba(26,86,219,0.15); }

.receive-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.receive-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.receive-body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ZERO DISRUPTION */
.zero-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.zero-box h2 { color: var(--text); margin: 0.5rem 0 1rem; }

/* ============================================================
   FELLOWSHIP PAGE
   ============================================================ */

.track-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.track-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.track-detail-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.track-top {
  background: var(--gradient);
  padding: 2rem;
}

.track-top-subject {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.6rem;
}

.track-top-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 0.25rem;
}

.track-top-grade {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.track-body { padding: 2rem; }

.track-body-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.curr-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.curr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.curr-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.curr-list li:last-child { border: none; }

.curr-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* HIGHLIGHTS */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}

.highlight-item {
  background: var(--dark-mid);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}

.highlight-item:hover { background: rgba(26,86,219,0.15); }

.highlight-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.highlight-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.highlight-body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.demo-day-statement {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  margin: 1rem 0 3rem;
  font-style: italic;
}

/* COMPETE */
.compete-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
}

.compete-box h2 { color: var(--text); margin: 0.5rem 0 1rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.contact-value:hover { color: var(--blue); }

.next-box {
  background: var(--dark);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.next-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.next-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.875rem;
}

.next-step:last-child { margin-bottom: 0; }

.next-step-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.next-step-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success.show { display: block; }

.success-icon {
  width: 52px; height: 52px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
}

.form-success h3 { color: var(--text); margin-bottom: 0.4rem; }
.form-success p { color: var(--text-mid); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--dark);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.footer-brand span { color: var(--teal); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: block;
  margin-bottom: 0.2rem;
}

.footer-contact-val {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.footer-contact-val:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .mob-btn { display: flex; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .two-col-rev > *:first-child { order: unset; }
  .two-col-rev > *:last-child { order: unset; }
  .track-grid, .track-detail-grid { grid-template-columns: 1fr; }
  .receive-grid, .highlights-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .receive-grid, .highlights-grid { grid-template-columns: 1fr; }
  .cta-actions, .hero-actions { flex-direction: column; align-items: center; }
  .form-box { padding: 1.75rem 1.25rem; }
}

/* Utility */
.text-center { text-align: center; }
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   UPDATED BELIEFS SECTION - LakshAI style
   ============================================================ */

.home-mission {
  padding: 6rem 0;
  background: #F0F4F8;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.belief-card {
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.belief-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border: none;
}

.belief-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.belief-icon-1 { background: #DCFCE7; }
.belief-icon-2 { background: #DBEAFE; }
.belief-icon-3 { background: #EDE9FE; }
.belief-icon-4 { background: #FEF3C7; }

.belief-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.belief-body {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.belief-num { display: none; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1rem;
}

.section-header h2 { color: var(--text); margin: 0.5rem 0 1rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-header p { font-size: 1.0625rem; }

.mission-statement {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  padding: 0;
  background: transparent;
  border: none;
}



.fellowship-hero-sub {
  font-size: 0.95rem !important;
  max-width: 100% !important;
}
