﻿:root {
    --navy: #1B2F6E;
    --navy-dark: #0f1d47;
    --navy-light: #243d8a;
    --red: #C8102E;
    --red-dark: #a00d25;
    --white: #FFFFFF;
    --light-bg: #F7F9FC;
    --text-dark: #1E293B;
    --text-mid: #475569;
    --text-light: #94a3b8;
    --success: #2E8B57;
    --gold: #E6A817;
    --border: #e2e8f0;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
  }

  body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
  }

  h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.15;
  }

  /* --- NAVBAR --- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(27, 47, 110, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--red);
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }

  .nav-logo-text {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
  }

  .nav-logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
  }

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

  .nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }

  .nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }

  .nav-cta {
    background: var(--red) !important;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 6px !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--red-dark) !important; }

  /* --- HERO --- */
  .hero {
    min-height: 100vh;
    background: 
      linear-gradient(135deg, rgba(27,47,110,0.92) 0%, rgba(27,47,110,0.75) 60%, rgba(200,16,46,0.4) 100%),
      url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 100px 2rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--white));
  }

  .hero-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    color: white;
    animation: fadeUp 0.9s ease both;
  }

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

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s ease 0.1s both;
  }

  .hero-badge::before { content: '🩺'; }

  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.9s ease 0.2s both;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.9s ease 0.3s both;
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s ease 0.4s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    border: 2px solid var(--red);
  }

  .btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,16,46,0.4);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.2s;
  }

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

  .hero-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    animation: fadeUp 0.9s ease 0.5s both;
  }

  .hero-link a { color: white; font-weight: 600; text-decoration: underline; }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    animation: fadeUp 0.9s ease 0.6s both;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  }

  .trust-item::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
  }

  /* --- SECTIONS --- */
  section { padding: 5rem 2rem; }

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

  .section-tag {
    display: inline-block;
    background: rgba(200,16,46,0.1);
    color: var(--red);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .section-tag.navy {
    background: rgba(27,47,110,0.1);
    color: var(--navy);
  }

  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--navy);
    margin-bottom: 1rem;
  }

  .section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 600px;
    line-height: 1.7;
  }

  .text-center { text-align: center; }
  .text-center .section-sub { margin: 0 auto; }

  /* --- PROBLEM SECTION --- */
  .problem-section { background: var(--white); }

  .stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .stat-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--red);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(27,47,110,0.12);
  }

  .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.5;
  }

  .stat-label strong {
    display: block;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  /* --- WHY BONO --- */
  .why-bono { background: var(--navy); color: white; }

  .why-bono .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
  .why-bono .section-title { color: white; }
  .why-bono .section-sub { color: rgba(255,255,255,0.75); }

  .bono-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
  }

  .bono-fact {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 1.5rem;
    transition: background 0.2s;
  }

  .bono-fact:hover { background: rgba(255,255,255,0.12); }

  .bono-fact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }

  .bono-fact-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
  }

  .bono-closing {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(200,16,46,0.2);
    border-left: 4px solid var(--red);
    border-radius: 0 10px 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    font-style: italic;
    color: white;
  }

  /* --- TRUST SECTION --- */
  .trust-section { background: var(--light-bg); }

  /* CMR Core Philosophy */
  .cmr-philosophy {
    background: var(--navy);
    border-radius: 14px;
    padding: 2.5rem 3rem;
    margin: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
  }

  .cmr-philosophy::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--red);
    border-radius: 14px 0 0 14px;
  }

  .cmr-philosophy-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 1.1rem;
  }

  .cmr-philosophy-statement {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.5;
    margin-bottom: 1.1rem;
    max-width: 820px;
  }

  .cmr-philosophy-body {
    font-size: 0.975rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    max-width: 820px;
    margin-bottom: 1.5rem;
  }

  .cmr-philosophy-divider {
    width: 50px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }

  .cmr-philosophy-core {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    line-height: 1.65;
    max-width: 820px;
    font-style: italic;
  }

  @media (max-width: 600px) {
    .cmr-philosophy { padding: 2rem 1.5rem; }
  }

  .trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .trust-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(27,47,110,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 3px solid var(--navy);
  }

  .trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(27,47,110,0.15);
  }

  .trust-icon {
    width: 48px; height: 48px;
    background: rgba(27,47,110,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .trust-card h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .trust-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  /* --- HOW IT WORKS --- */
  .how-section { background: white; }

  .two-tier {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-top: 3rem;
  }

  .tier-card {
    background: var(--light-bg);
    border-radius: 14px;
    padding: 2.5rem;
    border: 2px solid transparent;
    transition: all 0.3s;
  }

  .tier-card.tier1 { border-color: var(--navy); }
  .tier-card.tier2 { border-color: var(--red); }

  .tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(27,47,110,0.12);
  }

  .tier-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .tier1 .tier-label { background: var(--navy); color: white; }
  .tier2 .tier-label { background: var(--red); color: white; }

  .tier-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }

  .tier-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .tier-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
  }

  .tier-list li::before {
    content: '→';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .tier-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-size: 0.72rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .tier-arrow svg { color: var(--red); }

  .how-closing {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--navy);
    border-radius: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
  }

  /* --- SERVICES --- */
  .services-section { background: var(--light-bg); }

  .pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .pillar {
    background: white;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.25s;
    box-shadow: 0 2px 10px rgba(27,47,110,0.06);
  }

  .pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27,47,110,0.14);
  }

  .pillar-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .pillar h3 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
  }

  .pillar p {
    font-size: 0.825rem;
    color: var(--text-mid);
    line-height: 1.5;
  }

  /* --- REGISTRY --- */
  .registry-section { background: var(--navy); color: white; }
  .registry-section .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
  .registry-section .section-title { color: white; }
  .registry-section .section-sub { color: rgba(255,255,255,0.75); max-width: 680px; }

  .registry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .registry-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    transition: background 0.2s;
  }

  .registry-card:hover { background: rgba(255,255,255,0.12); }

  .registry-card-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }

  .registry-card h3 {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .registry-card p {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
  }

  .registry-chain {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    text-align: center;
  }

  .registry-chain-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }

  .chain-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .chain-step {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
  }

  .chain-arrow {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 900;
  }

  /* --- IMPACT --- */
  .impact-section { background: white; }

  .impact-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .impact-number {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 12px;
    background: var(--light-bg);
    border-bottom: 3px solid var(--navy);
    transition: transform 0.2s;
  }

  .impact-number:hover { transform: translateY(-4px); }

  .impact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .impact-label {
    font-size: 0.825rem;
    color: var(--text-mid);
    font-weight: 600;
  }

  .impact-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
  }

  /* --- PARTNERSHIP --- */
  .partnership-section { background: var(--light-bg); }

  .tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .tier-invest {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27,47,110,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    background: white;
  }

  .tier-invest:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27,47,110,0.18);
  }

  .tier-invest-header {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }

  .tier-invest-header.bronze { background: #7D7D7D; }
  .tier-invest-header.silver { background: #4A90D9; }
  .tier-invest-header.gold { background: #E6A817; }
  .tier-invest-header.platinum { background: var(--red); }
  .tier-invest-header.corporate { background: var(--navy); }

  .tier-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.4rem;
  }

  .tier-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.2rem;
  }

  .tier-usd {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
  }

  .tier-invest-body {
    padding: 1.25rem;
  }

  .tier-suited {
    font-size: 0.78rem;
    color: var(--text-mid);
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .tier-suited strong {
    display: block;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
  }

  .tier-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .tier-benefits li {
    font-size: 0.78rem;
    color: var(--text-mid);
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
    line-height: 1.4;
  }

  .tier-benefits li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .partner-cta-block {
    margin-top: 3rem;
    text-align: center;
  }

  .partner-cta-block p {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  /* --- CLOSING CTA --- */
  .closing-section {
    background: 
      linear-gradient(135deg, rgba(27,47,110,0.95) 0%, rgba(27,47,110,0.88) 100%),
      url('https://images.unsplash.com/photo-1559757175-5700dde675bc?w=1600&q=80') center/cover;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
  }

  .closing-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.2;
  }

  .closing-section h2 em {
    font-style: normal;
    color: var(--gold);
  }

  .closing-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  .closing-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.2s;
  }

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

  /* --- FOOTER --- */
  footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 2rem 2rem;
  }

  .footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }


  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .footer-logo-icon {
    width: 38px; height: 38px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .footer-logo-text {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .footer-logo-text span {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
  }

  .footer-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.6);
  }

  .footer-contact a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.35rem;
    transition: color 0.2s;
  }

  .footer-contact a:hover { color: white; }

  .footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.1rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
  }

  .footer-social a:hover {
    background: var(--red);
    transform: translateY(-2px);
  }

  .footer-social svg {
    width: 17px;
    height: 17px;
    fill: rgba(255,255,255,0.85);
  }

  .footer-social a:hover svg { fill: white; }

  .footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1rem;
  }

  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: white; }

  .footer-newsletter input {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
  .footer-newsletter input:focus { border-color: rgba(255,255,255,0.5); }

  .footer-newsletter button {
    width: 100%;
    padding: 0.65rem 1rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .footer-newsletter button:hover { background: var(--red-dark); }

  .footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
  }

  .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-bottom a:hover { color: white; }

  /* --- WHATSAPP FLOAT --- */
  .whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse 2s infinite;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    animation: none;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
  }

  .whatsapp-float svg { width: 28px; height: 28px; fill: white; }

  /* --- SCROLL INDICATOR --- */
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* --- DIVIDER --- */
  .section-divider {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 1.25rem 0;
    border-radius: 2px;
  }

  .text-center .section-divider { margin: 1.25rem auto; }

  /* --- RESPONSIVE --- */
  @media (max-width: 900px) {
    .two-tier {
      grid-template-columns: 1fr;
    }
    .tier-arrow {
      transform: rotate(90deg);
      margin: 0.5rem auto;
    }
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-trust { gap: 0.75rem; }
    section { padding: 3.5rem 1.25rem; }
  }

  /* --- SCROLL REVEAL --- */
  .reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* --- FOUNDER SECTION --- */
  .founder-section { background: var(--white); }

  .founder-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 1rem;
  }

  .founder-photo-wrap { position: sticky; top: 90px; }

  .founder-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--light-bg) 0%, #dde6f0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border);
    margin-bottom: 1.25rem;
    overflow: hidden;
    position: relative;
  }

  .founder-photo-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(27,47,110,0.15), transparent);
  }

  .founder-photo-inner {
    text-align: center;
  }

  .founder-initials {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--navy);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .founder-photo-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .founder-nameplate {
    background: var(--navy);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
  }

  .founder-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
  }

  .founder-title {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.2rem;
  }

  .founder-institution {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
  }

  .founder-body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.1rem;
  }

  .founder-quote {
    border-left: 4px solid var(--red);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    font-style: italic;
    color: var(--navy);
    background: var(--light-bg);
    border-radius: 0 10px 10px 0;
  }

  .founder-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.25rem;
    color: var(--red);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
  }

  .founder-link:hover { border-color: var(--red); }

  @media (max-width: 900px) {
    .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .founder-photo-placeholder { aspect-ratio: 4/3; max-width: 380px; }
    .founder-photo-wrap { position: static; }
  }

  /* --- ROADMAP --- */
  .roadmap-section { background: var(--navy); color: white; }
  .roadmap-section .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
  .roadmap-section .section-title { color: white; }
  .roadmap-section .section-sub { color: rgba(255,255,255,0.75); margin: 0 auto; }

  .roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
  }

  .roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, rgba(255,255,255,0.15), var(--gold), rgba(255,255,255,0.15));
    z-index: 0;
  }

  .roadmap-item {
    position: relative;
    z-index: 1;
  }

  .roadmap-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 3px solid rgba(255,255,255,0.25);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1.25rem;
    transition: background 0.2s, border-color 0.2s;
  }

  .roadmap-item--vision .roadmap-year {
    background: var(--red);
    border-color: var(--red);
    color: white;
  }

  .roadmap-item:hover .roadmap-year {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
  }

  .roadmap-content h3 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.6rem;
    font-weight: 800;
  }

  .roadmap-content p {
    font-size: 0.865rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
  }

  .roadmap-item--vision .roadmap-content h3 { color: var(--gold); }
  .roadmap-item--vision .roadmap-content p { color: rgba(255,255,255,0.85); }

  @media (max-width: 800px) {
    .roadmap-timeline { grid-template-columns: 1fr 1fr; }
    .roadmap-timeline::before { display: none; }
  }
  @media (max-width: 500px) {
    .roadmap-timeline { grid-template-columns: 1fr; }
  }

  /* --- FROM THE FIELD --- */
  .field-section { background: var(--light-bg); }

  .field-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .field-placeholder {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 2px dashed var(--border);
    transition: border-color 0.2s, background 0.2s;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .field-placeholder:hover {
    border-color: var(--navy);
    background: var(--light-bg);
  }

  .field-placeholder--wide {
    grid-column: span 2;
  }

  .field-placeholder-icon {
    font-size: 2.2rem;
    opacity: 0.4;
  }

  .field-placeholder-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .field-coming-soon {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
  }

  @media (max-width: 700px) {
    .field-grid { grid-template-columns: 1fr 1fr; }
    .field-placeholder--wide { grid-column: span 2; }
  }

  /* --- YOUR SUPPORT IN ACTION --- */
  .support-section { background: white; }

  .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .support-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    border-top: 3px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(27,47,110,0.1);
  }

  .support-card--highlight {
    background: var(--navy);
    border-top-color: var(--gold);
  }

  .support-card--highlight .support-amount { color: var(--gold); }
  .support-card--highlight .support-desc { color: rgba(255,255,255,0.8); }

  .support-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1;
  }

  .support-desc {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .support-cta {
    text-align: center;
    margin-top: 2.5rem;
  }

  .cmr-section { background: var(--navy); color: white; }
  .cmr-section .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
  .cmr-section .section-title { color: white; }

  .cmr-continuum {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
    margin-top: 3rem;
    border-radius: 14px;
    overflow: hidden;
  }

  .cmr-node {
    padding: 1.75rem 1.25rem;
    text-align: center;
    position: relative;
    transition: background 0.2s;
  }

  .cmr-node:nth-child(1) { background: rgba(200,16,46,0.25); }
  .cmr-node:nth-child(2) { background: rgba(200,16,46,0.35); }
  .cmr-node:nth-child(3) { background: rgba(200,16,46,0.45); }
  .cmr-node:nth-child(4) { background: rgba(200,16,46,0.55); }
  .cmr-node:nth-child(5) { background: rgba(200,16,46,0.65); }
  .cmr-node:nth-child(6) { background: rgba(200,16,46,0.78); }
  .cmr-node:nth-child(7) { background: rgba(200,16,46,0.92); }

  .cmr-node:hover { filter: brightness(1.15); }

  .cmr-node-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
  .cmr-node-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
  }
  .cmr-node-arrow {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    z-index: 2;
    display: none;
  }

  .cmr-tagline {
    margin-top: 2.5rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .cmr-three-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .cmr-pillar {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    transition: background 0.2s;
  }

  .cmr-pillar:hover { background: rgba(255,255,255,0.12); }

  .cmr-pillar-letter {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .cmr-pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .cmr-pillar-items {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
  }

  @media (max-width: 700px) {
    .cmr-three-pillars { grid-template-columns: 1fr; }
  }

  /* --- OVERWORKED AC --- */
  .ac-section { background: var(--light-bg); }

  .ac-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(27,47,110,0.1);
    margin-top: 3rem;
    border-top: 4px solid var(--gold);
  }

  .ac-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(230,168,23,0.12);
    color: #8a6200;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }

  .ac-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .ac-body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 780px;
  }

  .ac-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .ac-stage {
    border-radius: 10px;
    padding: 1.25rem;
    border-left: 3px solid var(--gold);
    background: var(--light-bg);
  }

  .ac-stage-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.3rem;
  }

  .ac-stage-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.3rem;
  }

  .ac-stage-desc {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.5;
  }

  .ac-cta-line {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .ac-cta-line a {
    color: var(--red);
    text-decoration: underline;
    font-weight: 700;
  }


  /* --- NAVBAR (identical to main site) --- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(27,47,110,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--red);
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
  }
  .nav-logo-icon {
    width: 42px; height: 42px;
    background: var(--red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }
  .nav-logo-text {
    color: white; font-family: 'Montserrat', sans-serif;
    font-weight: 800; font-size: 1rem; line-height: 1.2;
  }
  .nav-logo-text span {
    display: block; font-size: 0.65rem; font-weight: 400;
    color: rgba(255,255,255,0.7); letter-spacing: 0.05em;
  }
  .nav-links {
    display: flex; align-items: center; gap: 0.25rem; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
    font-weight: 600; padding: 0.4rem 0.6rem; border-radius: 4px;
    transition: all 0.2s; letter-spacing: 0.02em;
  }
  .nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
  .nav-links a.active { color: var(--gold); }
  .nav-cta {
    background: var(--red) !important; color: white !important;
    padding: 0.5rem 1.2rem !important; border-radius: 6px !important;
  }
  .nav-cta:hover { background: var(--red-dark) !important; }

  /* --- PAGE HERO --- */
  .edu-hero {
    min-height: 50vh;
    background:
      linear-gradient(135deg, rgba(27,47,110,0.95) 0%, rgba(27,47,110,0.80) 60%, rgba(200,16,46,0.45) 100%),
      url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 110px 2rem 4rem;
    position: relative;
  }
  .edu-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--light-bg));
  }
  .edu-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    animation: fadeUp 0.9s ease both;
  }
  .edu-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-family: 'Montserrat', sans-serif;
    font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1.5rem;
  }
  .edu-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900; color: white; margin-bottom: 1.25rem;
  }
  .edu-hero h1 em { font-style: normal; color: var(--gold); }
  .edu-hero p {
    font-size: 1.1rem; color: rgba(255,255,255,0.85);
    max-width: 580px; margin: 0 auto; line-height: 1.7;
  }

  /* --- CMR OVERVIEW STRIP --- */
  .cmr-overview { background: var(--navy); color: white; }

  .cmr-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .cmr-three-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.2s;
  }
  .cmr-three-card:hover { background: rgba(255,255,255,0.12); }
  .cmr-letter {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem; font-weight: 900;
    color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
  }
  .cmr-three-card h3 {
    font-size: 1rem; color: white; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
  }
  .cmr-three-card p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

  .cmr-link-statement {
    margin-top: 2.5rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem; font-weight: 700; font-style: italic;
    color: rgba(255,255,255,0.88);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  /* --- PATHWAY SECTION --- */
  .pathway-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    position: relative;
  }
  .pathway-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--navy), var(--red));
    z-index: 0;
  }

  .pathway-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    position: relative;
  }
  .pathway-step:last-child { padding-bottom: 0; }

  .step-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 1;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .step-circle:hover { transform: scale(1.05); }

  .step-circle.s1 { background: #f0f4ff; border: 3px solid #c7d2f8; }
  .step-circle.s2 { background: #fff7e6; border: 3px solid var(--gold); }
  .step-circle.s3 { background: #fff0f0; border: 3px solid #f9a8a8; }
  .step-circle.s4 { background: #fde8ec; border: 3px solid #f48a9a; }
  .step-circle.s5 { background: #fcdce2; border: 3px solid #e97088; }
  .step-circle.s6 { background: #f8c8d0; border: 3px solid #d94060; }
  .step-circle.s7 { background: var(--red); border: 3px solid var(--red-dark); }

  .step-icon { font-size: 1.7rem; line-height: 1; }
  .step-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--text-light); margin-top: 0.2rem;
  }
  .step-circle.s7 .step-num { color: rgba(255,255,255,0.7); }

  .step-content {
    background: white;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    box-shadow: 0 2px 12px rgba(27,47,110,0.07);
    transition: box-shadow 0.2s;
  }
  .step-content:hover { box-shadow: 0 8px 28px rgba(27,47,110,0.12); }

  .step-content h3 {
    font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem;
  }
  .step-content p {
    font-size: 0.925rem; color: var(--text-mid); line-height: 1.7;
    margin-bottom: 0.75rem;
  }
  .step-content p:last-child { margin-bottom: 0; }

  .step-tags {
    display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem;
  }
  .step-tag {
    background: var(--light-bg);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    padding: 0.2rem 0.6rem; border-radius: 50px;
    border: 1px solid var(--border);
  }
  .step-tag.danger { background: rgba(200,16,46,0.08); color: var(--red); border-color: rgba(200,16,46,0.2); }
  .step-tag.warning { background: rgba(230,168,23,0.12); color: #7a5c00; border-color: rgba(230,168,23,0.3); }
  .step-tag.safe { background: rgba(46,139,87,0.1); color: var(--success); border-color: rgba(46,139,87,0.2); }

  .step-bhi-note {
    display: flex; align-items: flex-start; gap: 0.6rem;
    background: rgba(27,47,110,0.05);
    border-left: 3px solid var(--navy);
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
    font-size: 0.85rem; color: var(--navy); font-weight: 600;
  }
  .step-bhi-note::before { content: '🩺'; flex-shrink: 0; }

  /* --- OVERWORKED AC --- */
  .ac-hero-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 18px;
    padding: 3rem;
    color: white;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
  }
  .ac-hero-card::after {
    content: '';
    position: absolute;
    right: 2rem; top: 2rem;
    font-size: 5rem;
    opacity: 0.12;
  }
  .ac-hero-card h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: white; margin-bottom: 1rem; max-width: 600px;
  }
  .ac-hero-card h3 em { font-style: normal; color: var(--gold); }
  .ac-hero-card p {
    font-size: 1rem; color: rgba(255,255,255,0.85);
    line-height: 1.8; max-width: 680px;
  }

  .ac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
  .ac-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .ac-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(27,47,110,0.1); }
  .ac-card-stage {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.35rem;
  }
  .ac-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.4rem; }
  .ac-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }

  .ac-punchline {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--navy);
    border-radius: 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: white; letter-spacing: 0.01em;
  }
  .ac-punchline em { color: var(--gold); font-style: normal; }

  /* --- FAQ --- */
  .faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
  .faq-item {
    background: white; border-radius: 10px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 8px rgba(27,47,110,0.06);
    border-left: 3px solid var(--red);
  }
  .faq-q {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; font-weight: 800; color: var(--navy);
    margin-bottom: 0.6rem;
  }
  .faq-a { font-size: 0.925rem; color: var(--text-mid); line-height: 1.7; }

  /* --- CTA --- */
  .edu-cta {
    background:
      linear-gradient(135deg, rgba(27,47,110,0.95) 0%, rgba(27,47,110,0.88) 100%),
      url('https://images.unsplash.com/photo-1559757175-5700dde675bc?w=1600&q=80') center/cover;
    color: white; text-align: center; padding: 5rem 2rem;
  }
  .edu-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; margin-bottom: 1rem; }
  .edu-cta h2 em { font-style: normal; color: var(--gold); }
  .edu-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
  
  
  .btn-outline-white {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: white;
    padding: 0.875rem 2rem; border-radius: 8px;
    text-decoration: none; font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }
  .cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

  /* --- FOOTER (same as main) --- */
  
  
  .footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
  .footer-bottom a:hover { color: white; }

  /* --- WHATSAPP FLOAT --- */
  .whatsapp-float {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
    width: 56px; height: 56px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none; transition: transform 0.2s;
    animation: pulse 2s infinite;
  }
  .whatsapp-float:hover { transform: scale(1.1); animation: none; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
  }
  .whatsapp-float svg { width: 28px; height: 28px; fill: white; }

  /* --- RESPONSIVE --- */
  @media (max-width: 700px) {
    .cmr-three { grid-template-columns: 1fr; }
    .pathway-steps::before { left: 35px; }
    .pathway-step { grid-template-columns: 70px 1fr; gap: 1rem; }
    .step-circle { width: 70px; height: 70px; }
    .ac-hero-card { padding: 2rem 1.5rem; }
    .nav-links { display: none; }
    
  }

  :root {
    --navy: #1B2F6E;
    --navy-dark: #0f1d47;
    --navy-light: #243d8a;
    --red: #C8102E;
    --red-dark: #a00d25;
    --white: #FFFFFF;
    --light-bg: #F7F9FC;
    --text-dark: #1E293B;
    --text-mid: #475569;
    --text-light: #94a3b8;
    --success: #2E8B57;
    --gold: #E6A817;
    --border: #e2e8f0;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Source Sans 3', sans-serif; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
  h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.15; }

  /* NAVBAR */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(27,47,110,0.97); backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--red);
    padding: 0 2rem; height: 70px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
  .nav-logo-icon { width: 42px; height: 42px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .nav-logo-text { color: white; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; line-height: 1.2; }
  .nav-logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; }
  .nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; padding: 0.4rem 0.6rem; border-radius: 4px; transition: all 0.2s; letter-spacing: 0.02em; }
  .nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
  .nav-links a.active { color: var(--gold); }
  .nav-cta { background: var(--red) !important; color: white !important; padding: 0.5rem 1.2rem !important; border-radius: 6px !important; }

  /* HERO */
  .founder-hero {
    min-height: 55vh;
    background:
      linear-gradient(135deg, rgba(27,47,110,0.96) 0%, rgba(27,47,110,0.82) 55%, rgba(200,16,46,0.4) 100%),
      url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80') center/cover no-repeat;
    display: flex; align-items: center;
    padding: 110px 2rem 4rem;
    position: relative;
  }
  .founder-hero::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 80px; background: linear-gradient(to bottom, transparent, var(--light-bg));
  }
  .founder-hero-content { max-width: 820px; margin: 0 auto; color: white; animation: fadeUp 0.9s ease both; }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    padding: 0.4rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-family: 'Montserrat', sans-serif;
    font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1.5rem;
  }
  .founder-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: white; margin-bottom: 0.5rem; }
  .founder-hero h1 em { font-style: normal; color: var(--gold); }
  .founder-hero-title { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; letter-spacing: 0.03em; }
  .founder-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 620px; line-height: 1.75; }

  /* PROFILE SECTION */
  .profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: flex-start;
  }

  .profile-photo-wrap { position: sticky; top: 90px; }

  .profile-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #dde6f5 0%, #c8d8ec 100%);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    border: 2px dashed var(--border);
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
  }

  .profile-photo-inner { text-align: center; }
  .profile-initials { font-family: 'Montserrat', sans-serif; font-size: 4rem; font-weight: 900; color: var(--navy); opacity: 0.2; line-height: 1; }
  .profile-photo-note { font-size: 0.72rem; color: var(--text-light); font-family: 'Montserrat', sans-serif; font-weight: 600; margin-top: 0.5rem; letter-spacing: 0.04em; }
  .profile-portrait { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 14px; display: block; }

  .profile-card {
    background: var(--navy);
    border-radius: 12px;
    padding: 1.5rem;
  }
  .profile-card-name { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 900; color: white; margin-bottom: 0.4rem; line-height: 1.3; }
  .profile-card-role { font-size: 0.82rem; color: var(--gold); font-weight: 600; margin-bottom: 0.3rem; }
  .profile-card-inst { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
  .profile-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .profile-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.25rem 0.65rem; border-radius: 50px; }

  /* CONTENT */
  .story-body { font-size: 1.02rem; color: var(--text-mid); line-height: 1.82; margin-bottom: 1.25rem; }
  .story-body strong { color: var(--navy); }
  .story-body--personal {
    color: var(--text-dark);
    background: var(--light-bg);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    font-style: italic;
  }
  .story-quote {
    border-left: 4px solid var(--red);
    padding: 1rem 1.75rem;
    margin: 2rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem; font-weight: 800; font-style: italic;
    color: var(--navy);
    background: var(--white);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 12px rgba(27,47,110,0.06);
  }

  .story-h3 { font-size: 1.15rem; color: var(--navy); margin: 2rem 0 0.6rem; }

  /* PCHF evidence photo */
  .pchf-photo-block {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .pchf-photo-block img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center 30%;
    max-height: 320px;
    transition: transform 0.4s ease;
  }

  .pchf-photo-block:hover img { transform: scale(1.015); }

  .pchf-photo-caption {
    background: var(--light-bg);
    border-top: 1px solid var(--border);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .pchf-caption-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
    color: var(--navy);
    opacity: 0.5;
  }

  .pchf-caption-text {
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.55;
    font-style: italic;
  }

  .pchf-caption-text strong {
    font-style: normal;
    color: var(--navy);
    font-weight: 600;
  }

  @media (max-width: 800px) {
    .profile-grid { grid-template-columns: 1fr; gap: 2rem; }
    .profile-photo { aspect-ratio: 4/3; max-width: 320px; }
    .profile-photo-wrap { position: static; }
  }

  /* JOURNEY SECTION */
  .journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .journey-step {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    border-top: 3px solid var(--navy);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .journey-step:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(27,47,110,0.1); }

  .journey-step-period {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.5rem;
  }

  .journey-step h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
  .journey-step p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }

  /* VISION SECTION */
  .vision-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: white; }
  .vision-section .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
  .vision-section .section-title { color: white; }
  .vision-section .section-sub { color: rgba(255,255,255,0.75); }
  .vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .vision-point {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1.75rem;
    transition: background 0.2s;
  }
  .vision-point:hover { background: rgba(255,255,255,0.12); }
  .vision-point-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
  .vision-point h3 { font-size: 0.9rem; color: white; margin-bottom: 0.5rem; font-weight: 700; }
  .vision-point p { font-size: 0.855rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

  .vision-closing {
    margin-top: 3rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem; font-weight: 700; font-style: italic;
    color: rgba(255,255,255,0.9);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  /* CTA */
  .founder-cta { background: var(--light-bg); text-align: center; padding: 4rem 2rem; }
  .founder-cta h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--navy); margin-bottom: 1rem; }
  .founder-cta h2 em { font-style: normal; color: var(--red); }
  .founder-cta p { font-size: 1rem; color: var(--text-mid); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }
  .cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

  .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--red); color: white; padding: 0.875rem 2rem; border-radius: 8px; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; border: 2px solid var(--red); transition: all 0.2s; }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
  .btn-secondary-outline { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: var(--navy); padding: 0.875rem 2rem; border-radius: 8px; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; border: 2px solid var(--navy); transition: all 0.2s; }
  .btn-secondary-outline:hover { background: var(--navy); color: white; transform: translateY(-2px); }

  
  /* --- PAGE SWITCHER --- */
  .page { display: none; }
  .page.active { display: block; }
  
  .nav-page-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 3px;
  }
  .nav-page-tab {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    transition: all 0.2s;
    letter-spacing: 0.03em;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .nav-page-tab:hover { color: white; background: rgba(255,255,255,0.12); }
  .nav-page-tab.active { background: var(--red); color: white; }

/* ============================================================
   VOLUNTEER / REFER / STRATEGIC PLAN PAGES
   ============================================================ */
.sub-hero{background:linear-gradient(135deg,var(--navy) 0%,#0f1d47 100%);padding:9rem 2rem 5rem;text-align:center}
.sub-hero .section-tag{background:rgba(230,168,23,.15);color:var(--gold)}
.sub-hero.red-tag .section-tag{background:rgba(200,16,46,.15);color:#ff8fa3}
.sub-hero h1{font-family:'Montserrat',sans-serif;font-weight:900;font-size:clamp(2rem,5vw,3.2rem);color:#fff;margin:1rem 0}
.sub-hero p{color:rgba(255,255,255,.8);max-width:640px;margin:0 auto;line-height:1.7;font-size:1.05rem}

/* Volunteer roles */
.role-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem;margin-top:3rem}
.role-card{background:#fff;border-radius:14px;padding:1.75rem;border:1.5px solid var(--border);transition:transform .2s,box-shadow .2s}
.role-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(27,47,110,.1)}
.role-card .ico{font-size:1.8rem;margin-bottom:.75rem}
.role-card h3{font-family:'Montserrat',sans-serif;font-size:1.05rem;font-weight:800;color:var(--navy);margin-bottom:.5rem}
.role-card p{font-size:.9rem;color:var(--text-mid);line-height:1.6}

/* Shared small-form styling (volunteer + refer) */
.bhi-small-form-wrap{max-width:680px;margin:0 auto;background:#fff;border-radius:16px;padding:2.5rem;box-shadow:0 10px 40px rgba(27,47,110,.08)}
.bhi-small-form-wrap .form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.bhi-small-form-wrap .fg{margin-bottom:1.25rem}
.bhi-small-form-wrap label{display:block;font-family:'Montserrat',sans-serif;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text-mid);margin-bottom:.4rem}
.bhi-small-form-wrap input,.bhi-small-form-wrap select,.bhi-small-form-wrap textarea{
  width:100%;padding:.75rem .9rem;border:1.5px solid var(--border);border-radius:8px;font-size:.92rem;
  font-family:'Source Sans 3',sans-serif;outline:none;transition:border-color .2s
}
.bhi-small-form-wrap input:focus,.bhi-small-form-wrap select:focus,.bhi-small-form-wrap textarea:focus{border-color:var(--navy)}
.bhi-small-form-wrap textarea{resize:vertical;min-height:100px}
.bhi-small-form-wrap .divider-label{font-family:'Montserrat',sans-serif;font-size:.72rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.08em;color:var(--navy);margin:1.75rem 0 1rem;padding-top:1.25rem;border-top:1px solid var(--border)}
.bhi-small-submit{width:100%;background:var(--red);color:#fff;border:none;padding:.9rem;border-radius:8px;
  font-family:'Montserrat',sans-serif;font-weight:700;font-size:.95rem;cursor:pointer;transition:background .2s}
.bhi-small-submit:hover{background:var(--red-dark)}
@media(max-width:600px){.bhi-small-form-wrap .form-row{grid-template-columns:1fr}}

/* Referral page */
.urgent-banner{background:#fef2f2;border-left:4px solid var(--red);border-radius:0 10px 10px 0;
  padding:1.1rem 1.5rem;max-width:900px;margin:0 auto 3rem;display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.urgent-banner strong{color:var(--red);font-family:'Montserrat',sans-serif}
.urgent-banner a{color:var(--red);font-weight:700;text-decoration:none}
.flag-strip{display:flex;flex-wrap:wrap;justify-content:center;gap:.75rem;margin:2.5rem 0}
.flag-chip{display:flex;align-items:center;gap:.5rem;background:#fff;border:1.5px solid var(--border);
  border-radius:50px;padding:.55rem 1.1rem;font-size:.85rem;font-weight:600;color:var(--text-dark)}
.flag-chip .ico{font-size:1.1rem}

/* Strategic plan timeline */
.plan-timeline{max-width:900px;margin:3rem auto 0;position:relative}
.plan-year{display:flex;gap:2rem;margin-bottom:2.5rem;position:relative}
.plan-year:not(:last-child)::before{content:'';position:absolute;left:29px;top:64px;bottom:-2.5rem;width:2px;background:var(--border)}
.plan-year-badge{flex-shrink:0;width:60px;height:60px;border-radius:50%;background:var(--navy);color:#fff;
  display:flex;align-items:center;justify-content:center;font-family:'Montserrat',sans-serif;font-weight:900;font-size:1.05rem}
.plan-year-body h3{font-family:'Montserrat',sans-serif;font-size:1.15rem;font-weight:800;color:var(--navy);margin-bottom:.75rem}
.plan-year-body ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.6rem}
.plan-year-body li{font-size:.92rem;color:var(--text-mid);line-height:1.6;padding-left:1.4rem;position:relative}
.plan-year-body li::before{content:'✓';position:absolute;left:0;color:var(--success);font-weight:700}
.pillar-recap{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1.25rem;margin-top:2.5rem}
.pillar-recap-item{text-align:center;padding:1.5rem 1rem;background:#fff;border-radius:12px;border:1.5px solid var(--border)}
.pillar-recap-item .ico{font-size:1.6rem;margin-bottom:.5rem}
.pillar-recap-item span{display:block;font-family:'Montserrat',sans-serif;font-size:.82rem;font-weight:700;color:var(--navy)}
.prospectus-cta{background:var(--navy);border-radius:16px;padding:2.5rem;text-align:center;max-width:760px;margin:0 auto}

/* ============================================================
   MOBILE NAVIGATION (hamburger) — overrides all earlier
   .nav-links breakpoints above by appearing last in cascade
   ============================================================ */
.nav-toggle {
  display: none;
  background: none; border: none; color: #fff;
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  padding: .25rem .5rem; flex-shrink: 0;
}

@media (max-width: 900px) {
  nav { padding: 0 1.25rem; }
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    background: var(--navy-dark);
    padding: 1rem 1.5rem 1.5rem;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-shadow: 0 12px 28px rgba(0,0,0,.3);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { display: block; padding: .9rem 1rem; font-size: .95rem; }

  .nav-page-tabs { flex-direction: column; width: 100%; gap: .4rem; background: transparent; padding: .5rem 0; }
  .nav-page-tab { width: 100%; text-align: center; padding: .7rem; font-size: .8rem; }

  .nav-cta { display: block; text-align: center; margin-top: .5rem; }
}

@media (max-width: 420px) {
  .nav-logo-text { font-size: .85rem; }
  .nav-logo-text span { font-size: .58rem; }
}
.prospectus-cta h3{font-family:'Montserrat',sans-serif;color:#fff;font-size:1.3rem;font-weight:800;margin-bottom:.75rem}
.prospectus-cta p{color:rgba(255,255,255,.75);margin-bottom:1.5rem;line-height:1.6}