/* ============================================
   AYIODE — Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Brand Colors */
    --color-primary: #7B2D3B;
    --color-primary-dark: #5A1A28;
    --color-accent: #FCC200;
    --color-accent-light: #FFD60A;
    --color-accent-dark: #D4A300;
    --color-dark: #1E293B;
    --color-white: #FFFFFF;
    --color-gray-light: #F1F5F9;
    --color-gray: #64748B;
    --color-text: #334155;
    --color-light: #F8FAFC;
    --color-light-warm: #FFFBEB;
    --color-secondary: #2E3B8E;
    --color-navy: #2E3B8E;
    --color-navy-dark: #232D70;
    --color-navy-deep: #1A2258;

    /* Typography — single geometric sans across the platform (Montserrat) */
    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

    /* Spacing & Layout */
    --section-padding: 80px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* ---------- AOS Fallback ---------- */
.no-aos [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.75;
    font-weight: 400;
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.0625rem;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.005em;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Skip to Content ---------- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: top 0.2s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* ---------- Utility Classes ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 240%);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: var(--color-secondary);
    margin-bottom: 20px;
    max-width: 700px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray);
    max-width: 640px;
    line-height: 1.75;
}

/* ---------- Form Validation ---------- */
.field-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white);
}

.text-accent {
    color: var(--color-accent);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    min-height: 44px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(123, 45, 59, 0.25);
}

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

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(123, 45, 59, 0.3);
}

.btn-secondary {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 194, 0, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(252, 194, 0, 0.3);
}

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

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 194, 0, 0.3);
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(123, 45, 59, 0.3);
}

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

.btn-outline-light:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 194, 0, 0.3);
}

.btn-outline-light:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

.btn-white:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 194, 0, 0.3);
}

.btn-white:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
    min-height: 40px;
}

.btn-lg {
    padding: 15px 34px;
    font-size: 0.95rem;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero-specific compact button group */
.hero-btn-group {
    gap: 12px;
}

.hero-btn-group .btn {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* ---- VMV Value Chips (compact, for homepage) ---- */
.vmv-values-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.vmv-value-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border: 1px solid rgba(123, 45, 59, 0.1);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    transition: all 0.3s ease;
}

.vmv-value-chip:hover {
    border-color: var(--color-primary);
    background: rgba(123, 45, 59, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.vmv-chip-num {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.6;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: var(--color-navy);
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: var(--color-secondary);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .nav-logo-img {
    height: 38px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 2px;
}

/* On desktop the mobile-panel wrapper is invisible; children flow in nav-container */
.nav-mobile-panel {
    display: contents;
}

/* Hide mobile-only actions row on desktop */
.nav-mobile-actions {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Desktop dropdown */
.nav-dropdown {
    position: relative;
}

/* Hover bridge between trigger and submenu */
.nav-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-dropdown-toggle::after {
    content: '▾';
    margin-left: 6px;
    font-size: 0.72rem;
    opacity: 0.75;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 180px;
    background: var(--color-navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 1002;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link {
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
    background: var(--color-primary);
}

.nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.78rem;
    min-height: 36px;
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.78rem;
    min-height: 36px;
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-donate:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 194, 0, 0.3);
}

.btn-donate svg {
    flex-shrink: 0;
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION — Split Layout
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--color-white);
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    position: relative;
}

/* Curved divider between hero sections */
.hero-split::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), transparent);
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
    z-index: 3;
}

/* Left: Text */
.hero-text {
    padding: 140px 60px 80px 80px;
    position: relative;
    z-index: 2;
}

/* Hero with background image */
.hero-image-bg {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: url("/static/images/4.65266143ecd6.webp");
    transition: background-image 1s ease-in-out;
}

.hero-slideshow-left {
    display: none !important;
    width: 0;
    height: 0;
    overflow: hidden;
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 34, 45, 0.82) 0%, rgba(46, 59, 142, 0.85) 100%);
    z-index: 1;
}

.hero-text-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 194, 0, 0.25);
    border: 1px solid rgba(252, 194, 0, 0.5);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgb(252, 194, 0);  /* Keep bright gold for dark backgrounds only */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0.5px;
    color: var(--color-white);
    margin-bottom: 28px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--color-accent);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--color-white);
    margin-bottom: 36px;
    max-width: 560px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.hero-description strong {
    color: var(--color-accent-light);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Rotating text in hero */
.text-rotate-wrapper {
    display: inline-block;
    position: relative;
    height: 1.25em;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.25;
}

.text-rotate {
    display: block;
    animation: textRotate 10s ease-in-out infinite;
    color: var(--color-accent-light);
}

@keyframes textRotate {
    0%, 16% { transform: translateY(0); }
    20%, 36% { transform: translateY(-1.25em); }
    40%, 56% { transform: translateY(-2.5em); }
    60%, 76% { transform: translateY(-3.75em); }
    80%, 96% { transform: translateY(-5em); }
    100% { transform: translateY(0); }
}

/* Right: Hero Image */
.hero-image {
    position: relative;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, var(--color-white), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(35, 45, 112, 0.5), transparent);
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--color-primary);
    padding: 0;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.stats-bar-item {
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-bar-item:last-child {
    border-right: none;
}

.stats-bar-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-bar-label {
    font-size: clamp(0.65rem, 0.7vw, 0.8rem);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

/* ============================================
   SECTIONS — Generic Patterns
   ============================================ */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.section-dark .section-label {
    color: var(--color-accent);
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-dark .body-text {
    color: rgba(255, 255, 255, 0.85);
}

.section-dark .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.section-dark .btn-primary:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.section-dark .btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.section-dark .btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.section-light {
    background: var(--color-light);
}

.section-warm {
    background: var(--color-light-warm);
}

.section-green {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.section-green .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* Section Header */
.section-header {
    margin-bottom: 48px;
}

.section-header.text-center .section-title,
.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.text-center .section-title,
.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   WHY AYIODE SECTION
   ============================================ */
.why-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.why-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.3;
}

.why-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-content .lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.why-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 14px;
}

.why-content .emphasis {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: italic;
    padding: 20px 24px;
    border-left: 4px solid var(--color-accent);
    background: rgba(252, 194, 0, 0.05);
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
    line-height: 1.55;
}

/* ============================================
   VISION / MISSION CARDS
   ============================================ */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.vm-card {
    padding: 32px 28px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.vm-card-vision {
    background: var(--color-primary);
    color: var(--color-white);
}

.vm-card-vision::before {
    background: var(--color-accent);
}

.vm-card-mission {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.vm-card-mission::before {
    background: var(--color-accent);
}

.vm-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.vm-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(255, 174, 0);
}

.vm-card-vision h3 {
    color: rgb(255, 174, 0);
}

.vm-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    font-weight: 600;
}

/* ---- VMV Divider ---- */
.vmv-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 48px 0 24px;
}

.vmv-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(123, 45, 59, 0.15);
}

.vmv-divider-label {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

/* ---- VMV Values Grid ---- */
.vmv-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.vmv-value-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    border: 1px solid rgba(123, 45, 59, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.vmv-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.vmv-value-num {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 12px;
}

.vmv-value-card:hover .vmv-value-num {
    opacity: 0.7;
}

.vmv-value-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.vmv-value-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.75;
}

@media (max-width: 900px) {
    .vmv-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .vmv-values-grid {
        grid-template-columns: 1fr;
    }
    .vmv-divider {
        margin: 36px 0 16px;
    }
}

/* ============================================
   IMPACT STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 44px 24px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    opacity: 0;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 194, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.stat-card:hover::before {
    opacity: 1;
    width: 100%;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
}

/* Light variant */
.stats-grid-light .stat-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stats-grid-light .stat-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stats-grid-light .stat-label {
    color: var(--color-gray);
}

/* ============================================
   PROGRAM CARDS
   ============================================ */
.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.program-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--color-gray-light);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
    border-color: transparent;
}

.program-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.05);
}

.program-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.program-academy {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.program-scholars {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #232D70 100%);
}

.program-university {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1A2258 100%);
}

.program-card-body {
    padding: 32px;
}

.program-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.badge-active {
    background: rgba(123, 45, 59, 0.1);
    color: var(--color-primary);
}

.badge-upcoming {
    background: rgba(252, 194, 0, 0.1);
    color: var(--color-accent-dark);
}

.badge-future {
    background: rgba(107, 114, 128, 0.1);
    color: var(--color-gray);
}

.program-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.program-card-body p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.program-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.program-feature svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

/* ============================================
   ABOUT PAGE — Story Section
   ============================================ */
.story-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 14px;
}

.story-quote {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    font-style: italic;
    padding: 24px;
    border-left: 4px solid var(--color-accent);
    background: rgba(252, 194, 0, 0.05);
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    line-height: 1.55;
}

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

.pillar-item {
    padding: 28px 24px;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--color-gray-light);
    text-align: center;
    transition: var(--transition);
}

.pillar-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(123, 45, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-primary);
}

.pillar-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 1px solid var(--color-gray-light);
    background: var(--color-gray-light);
}

.pillar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.pillar-item:hover .pillar-photo img {
    transform: scale(1.04);
}

.pillar-photo-wide {
    aspect-ratio: 2.4 / 1;
    max-height: 168px;
}

.pillar-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

/* ============================================
   WHO WE LOOK FOR
   ============================================ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.audience-card {
    padding: 44px 28px 40px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audience-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(252, 194, 0, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 194, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(252, 194, 0, 0.08);
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-card:hover::after {
    opacity: 1;
}

.audience-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(252, 194, 0, 0.2) 0%, rgba(123, 45, 59, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--color-primary);
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(252, 194, 0, 0.2);
}

.audience-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 auto 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.audience-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.audience-card:hover .audience-photo {
    border-color: rgba(252, 194, 0, 0.35);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45), 0 0 48px rgba(252, 194, 0, 0.1);
}

.audience-card:hover .audience-photo img {
    transform: scale(1.06);
}

.audience-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 3px solid rgba(252, 194, 0, 0.4);
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.audience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.audience-card:hover .audience-img {
    transform: scale(1.08);
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(252, 194, 0, 0.25);
}

.audience-card:hover .audience-img img {
    transform: scale(1.1);
}

.audience-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}

.audience-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

/* ============================================
   STUDENT STORY CARDS (ALA-inspired)
   ============================================ */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.story-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-gray-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
    border-color: transparent;
}

.story-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

.story-card-country {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.story-card-body {
    padding: 28px;
}

.story-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.story-card-tagline {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
}

.story-card-link:hover {
    color: var(--color-accent-dark);
    gap: 12px;
}

.story-card-link svg {
    transition: transform 0.3s ease;
}

.story-card-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   PARTNER LOGO STRIP
   ============================================ */
.partners-logo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    border-radius: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    transition: var(--transition);
    min-height: 100px;
}

.partner-logo-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.partner-logo-item img {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-light);
}

.partner-logo-placeholder svg {
    opacity: 0.4;
}

.partner-logo-placeholder span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-light);
    letter-spacing: 0.5px;
}

/* ============================================
   NEWSLETTER SECTION (standalone)
   ============================================ */
.newsletter-section {
    background: var(--color-primary);
    padding: 0;
}

.newsletter-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 64px 0;
}

.newsletter-block-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.2px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.newsletter-block-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
    line-height: 1.65;
}

.newsletter-block-form {
    flex-shrink: 0;
}

.newsletter-block-input {
    display: flex;
    gap: 12px;
}

.newsletter-block-input input {
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    min-width: 280px;
}

.newsletter-block-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-block-input input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-block-input .btn {
    white-space: nowrap;
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.newsletter-block-input .btn:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(252, 194, 0, 0.1);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 240%;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.cta-banner .btn-primary:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.cta-banner .btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.cta-banner .btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

/* ============================================
   PARTNER / SUPPORT
   ============================================ */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.partner-card {
    padding: 36px 32px;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.partner-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(123, 45, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Support / Investment cards */
.invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.invest-card {
    text-align: center;
    padding: 44px 24px 40px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.invest-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 194, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(252, 194, 0, 0.08);
}

.invest-card:hover::before {
    opacity: 1;
}

.invest-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(252, 194, 0, 0.2) 0%, rgba(123, 45, 59, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--color-primary);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.invest-card:hover .invest-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(252, 194, 0, 0.2);
}

.invest-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    padding: 180px 0 80px;
    background: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
}

.page-hero1 {
    padding: 180px 0 80px;
    background: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
}

.page-hero1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(93, 34, 45, 0.82) 0%,
        rgba(123, 45, 59, 0.75) 50%,
        rgba(93, 34, 45, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.arch-design-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 2;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(93, 34, 45, 0.82) 0%,
        rgba(123, 45, 59, 0.75) 50%,
        rgba(93, 34, 45, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.page-hero-content .section-label {
    color: var(--color-accent);
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.3px;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ============================================
   WHY AFRICA SECTION
   ============================================ */
.africa-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.africa-stat-card {
    padding: 40px 32px;
    border-radius: 20px;
    background: var(--color-white);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-gray-light);
    transition: var(--transition);
}

.africa-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.africa-stat-card .stat-number {
    color: var(--color-primary);
}

.africa-stat-card .stat-label {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-top: 8px;
}

/* ============================================
   CAMPUS BADGES
   ============================================ */
.campus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 32px 0;
}

.campus-card {
    padding: 24px;
    border-radius: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.campus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-primary));
    opacity: 1;
}

.campus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(252, 194, 0, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Country flag badge */
.campus-flag-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-light);
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.campus-flag-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.campus-card:hover .campus-flag-badge {
    transform: scale(1.08);
    transition: transform 0.4s ease;
}

.campus-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text);
}

.campus-info p {
    font-size: 0.88rem;
    color: var(--color-gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-navy-dark);
    color: var(--color-white);
}

.footer-top {
    padding: 32px 0 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1.2fr;
    gap: 28px;
}

.footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.footer-logo-wrap {
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

.footer-links-group h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 14px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-group a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrap .section-title {
    margin-bottom: 12px;
}

/* Messages / Alerts */
.messages-container {
    margin-bottom: 32px;
}

.alert {
    padding: 16px 48px 16px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    margin-bottom: 12px;
}

.alert-success {
    background: rgba(44, 95, 74, 0.1);
    color: #2C5F4A;
    border: 1px solid rgba(44, 95, 74, 0.2);
}

.alert-error {
    background: rgba(123, 45, 59, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(123, 45, 59, 0.2);
}

.alert-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    transition: var(--transition);
}

.alert-close:hover {
    opacity: 1;
}

/* Form Elements */
.contact-form {
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-gray-light);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.12);
    outline: none;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

/* Contact Info Sidebar */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(123, 45, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 4px;
}

.contact-info-card a {
    color: var(--color-primary);
    font-weight: 500;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--color-accent-dark);
}

.contact-info-sub {
    font-size: 0.82rem !important;
    color: var(--color-accent-dark) !important;
    font-weight: 500;
    margin-top: 8px;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.office-card {
    padding: 36px 28px;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    text-align: center;
    transition: var(--transition);
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.office-flag {
    font-size: 3rem;
    margin-bottom: 16px;
}

.office-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.office-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.office-badge-active {
    background: rgba(44, 95, 74, 0.1);
    color: #2C5F4A;
}

.office-badge-upcoming {
    background: rgba(252, 194, 0, 0.1);
    color: var(--color-accent-dark);
}

.office-badge-growing {
    background: rgba(27, 42, 91, 0.1);
    color: var(--color-secondary);
}

.office-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* ============================================
   NEWSLETTER (Footer)
   ============================================ */
.footer-newsletter {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-wrap {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input-wrap input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrap input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-input-wrap .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-feedback {
    margin-top: 12px;
    font-size: 0.85rem;
    min-height: 20px;
}

.newsletter-feedback.success {
    color: #4ade80;
}

.newsletter-feedback.error {
    color: #f87171;
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-grid-featured {
    grid-template-columns: repeat(3, 1fr);
}

.team-grid-advisors {
    grid-template-columns: repeat(3, 1fr);
}

/* Team card */
.team-card {
    position: relative;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
    border-color: transparent;
}

/* Team card image */
.team-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

/* Image overlay with social links */
.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 42, 91, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
}

.team-social-link:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: scale(1.1);
}

/* Team card info */
.team-card-info {
    padding: 20px 24px 16px;
    text-align: center;
}

.team-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

/* ---- Hover popup bio card ---- */
.team-card-bio {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: calc(100% + 24px);
    max-width: 340px;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 50;
    pointer-events: none;
}

.team-card-bio::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--color-dark);
}

.team-card-bio p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* Show bio on hover */
.team-card:hover .team-card-bio {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(calc(100% + 12px));
    pointer-events: auto;
}

/* Featured card styling */
.team-card-featured {
    border: 2px solid rgba(252, 194, 0, 0.2);
}

.team-card-featured .team-card-role {
    color: var(--color-accent-dark);
    font-weight: 600;
}

/* Advisor card styling */
.team-card-advisor {
    border: 1px solid rgba(27, 42, 91, 0.15);
}

.team-card-advisor .team-card-role {
    color: var(--color-secondary);
}

/* Team page intro */
.team-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.team-intro .body-text {
    text-align: left;
}

.team-intro .body-text:last-child {
    margin-bottom: 0;
}

.founder-divider {
    max-width: 120px;
    height: 3px;
    margin: 48px auto;
    border: none;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.founder-vision-quote {
    margin: 28px 0 0;
    padding: 20px 24px 20px 22px;
    border-left: 4px solid var(--color-accent);
    background: rgba(252, 194, 0, 0.08);
    border-radius: 0 12px 12px 0;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.55;
    color: var(--color-secondary);
}

.leadership-leaders {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* Founder Spotlight */
.founder-spotlight {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
}

.founder-spotlight--reverse {
    grid-template-columns: 1fr 400px;
}

.founder-spotlight--reverse .founder-info {
    order: 1;
}

.founder-spotlight--reverse .founder-image-wrap {
    order: 2;
}

.founder-image-wrap {
    position: relative;
}

.founder-image-wrap .team-card-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.founder-image-wrap .team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.founder-info .team-card-role {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    margin-bottom: 20px;
}

.founder-info p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 16px;
}

.founder-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.founder-social .team-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.founder-social .team-social-link:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

/* ---------- Team page: mobile leadership cards (two-up, no horizontal scroll) ---------- */
.team-leadership-mobile {
    display: none;
}

.team-leadership-desktop {
    display: block;
}

.team-mobile-scroll {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    padding: 8px 0 24px;
    margin: 0;
    overflow: visible;
}

.team-mobile-card {
    display: block;
    min-width: 0;
    width: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--color-white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--color-gray-light);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.team-mobile-card:hover,
.team-mobile-card:focus-visible {
    border-color: rgba(123, 45, 59, 0.25);
    box-shadow: 0 12px 36px rgba(123, 45, 59, 0.12);
    transform: translateY(-2px);
    outline: none;
}

.team-mobile-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(252, 194, 0, 0.45), 0 12px 36px rgba(123, 45, 59, 0.1);
}

.team-mobile-card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-gray-light);
}

.team-mobile-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-mobile-card-text {
    padding: 10px 8px 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-mobile-card-name {
    font-family: var(--font-heading);
    font-size: clamp(0.82rem, 3.4vw, 0.95rem);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    transition: color 0.2s ease;
    word-break: break-word;
}

.team-mobile-card:hover .team-mobile-card-name,
.team-mobile-card:focus-visible .team-mobile-card-name {
    color: var(--color-primary);
}

.team-mobile-card-title {
    font-size: clamp(0.65rem, 2.8vw, 0.78rem);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.35;
    word-break: break-word;
}

.team-mobile-card-meta {
    font-size: clamp(0.62rem, 2.5vw, 0.72rem);
    color: var(--color-gray);
    line-height: 1.3;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Team member detail pages ---------- */
.team-detail-top {
    padding-top: 40px;
    padding-bottom: 16px;
}

.team-detail-breadcrumb {
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.team-detail-back {
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.team-detail-back:hover,
.team-detail-back:focus-visible {
    color: var(--color-accent-dark);
    text-decoration: underline;
    outline: none;
}

.team-detail-breadcrumb-sep {
    color: var(--color-gray);
}

.team-detail-breadcrumb-current {
    color: var(--color-gray);
    font-weight: 500;
}

.team-detail-layout {
    display: grid;
    grid-template-columns: min(380px, 42%) 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

.team-detail-photo-inner {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team-detail-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.team-detail-name {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 6px;
    line-height: 1.15;
}

.team-detail-role {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    margin-bottom: 24px;
}

.team-detail-body .body-text {
    text-align: left;
}

.team-detail-back-bottom {
    margin-top: 32px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .team-leadership-mobile {
        display: block;
    }

    .team-leadership-desktop {
        display: none !important;
    }

    .team-detail-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .team-detail-photo {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Join section cards */
.join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.join-card {
    text-align: center;
    padding: 48px 32px 44px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.join-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(252, 194, 0, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.join-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 194, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(252, 194, 0, 0.08);
}

.join-card:hover::before {
    opacity: 1;
}

.join-card:hover::after {
    opacity: 1;
}

.join-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(252, 194, 0, 0.2) 0%, rgba(123, 45, 59, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.join-card:hover .join-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(252, 194, 0, 0.2);
}

.join-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.join-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ============================================
   REUSABLE RESPONSIVE GRID CLASSES
   (replacing inline styles for mobile support)
   ============================================ */

/* Two-column content layout */
.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.content-two-col > *:first-child {
    /* image column */
}

.content-two-col > *:last-child {
    /* text column */
}

/* Two-column grid with smaller gap */
.content-two-col-narrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-two-col-narrow > *:first-child {
    /* image column */
}

.content-two-col-narrow > *:last-child {
    /* text column */
}

/* Three-column action cards grid */
.action-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Inline stats row */
.inline-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.inline-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--color-primary);
}

.inline-stat-label {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Action card styling */
.action-card {
    text-align: center;
    padding: 48px 32px 44px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.action-card:hover {
    transform: translateY(-8px);
    border-color: rgba(252, 194, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(252, 194, 0, 0.08);
}

.action-card:hover::before {
    opacity: 1;
}

.action-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(252, 194, 0, 0.2) 0%, rgba(123, 45, 59, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.action-card:hover .action-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(252, 194, 0, 0.2);
}

.action-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
}

.action-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Campus grid stacked variant */
.campus-grid-stacked {
    grid-template-columns: 1fr;
}

/* Opening badge */
.opening-badge {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(252, 194, 0, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(252, 194, 0, 0.2);
}

.opening-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent-dark);
}

/* Stats grid 3-column override */
.stats-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

/* Africa stats stacked variant */
.africa-stats-stacked {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
}

/* Body text styling (replacing inline p styles) */
.body-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.75;
    color: var(--color-gray);
    margin-bottom: 16px;
}

.body-text-lg {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.75;
    color: var(--color-gray);
    margin-bottom: 20px;
}

/* Emphasis quote block */
.quote-block {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--color-primary);
    font-style: italic;
    padding: 20px 24px;
    border-left: 4px solid var(--color-accent);
    background: rgba(252, 194, 0, 0.05);
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
}

/* Responsive stat number (for inline use) */
.stat-number-responsive {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

/* CTA centered block with quote */
.centered-cta-block {
    text-align: center;
    margin-top: 48px;
}

/* Block children with max-width (e.g. .section-subtitle) must be centered, not only their text */
.centered-cta-block > .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.centered-cta-block > .quote-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
    text-align: center;
}

.centered-cta-block .quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 28px;
}

/* Sub-heading in content blocks */
.content-subheading {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 20px;
}

/* ============================================
   CROSS-BROWSER COMPATIBILITY
   ============================================ */

/* Webkit scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gray-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gray);
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        padding: 14px 28px;
    }

    .btn-sm {
        min-height: 44px;
        padding: 12px 24px;
    }

    .nav-link {
        padding: 12px 16px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Safari flexbox gap fallback */
@supports not (gap: 1px) {
    .hero-buttons > * + *,
    .cta-buttons > * + *,
    .btn-group > * + * {
        margin-left: 16px;
    }

    .footer-social > * + * {
        margin-left: 12px;
    }
}

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

/* ---------- Large Tablets & Small Desktops ---------- */
@media (max-width: 1024px) {
    .hero-text {
        padding: 120px 40px 60px 40px;
    }

    .why-section .content-grid,
    .story-section .content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .content-two-col {
        grid-template-columns: 1fr;
    }

    .content-two-col-narrow {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-links-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stories-grid .story-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .partners-logo-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-block {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .newsletter-block-content p {
        max-width: 100%;
    }

    .africa-stats {
        grid-template-columns: 1fr;
    }

    .action-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact layout */
    .contact-layout {
        gap: 40px;
    }

    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Team grid */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid-featured,
    .team-grid-advisors {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-spotlight {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .founder-spotlight--reverse {
        grid-template-columns: 1fr 300px;
    }

    .join-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero {
        padding: 140px 0 60px;
    }

    .cta-banner {
        padding: 80px 0;
    }
}

/* ---------- Tablets & Large Phones ---------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 56px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Mobile nav */
    .nav-toggle {
        display: block;
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }

    .nav-toggle:active {
        opacity: 1;
    }

    /* Hide desktop nav-actions and nav-menu on mobile */
    .nav-actions-desktop {
        display: none !important;
    }

    /* Show the mobile panel */
    .nav-mobile-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-navy-dark);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
        padding: 16px 20px 20px;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-mobile-panel.active {
        display: block;
        animation: slideDown 0.25s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-mobile-panel .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-mobile-panel .nav-link {
        display: block;
        font-size: 1rem;
        padding: 12px 14px;
        width: 100%;
        border-radius: 8px;
    }

    .nav-mobile-panel .nav-dropdown {
        width: 100%;
    }

    .nav-mobile-panel .nav-dropdown-toggle::after {
        float: right;
        margin-top: 3px;
    }

    .nav-mobile-panel .nav-dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: 0;
        background: transparent;
        padding: 0 0 0 16px;
        margin-top: 0;
        min-width: 0;
    }

    .nav-mobile-panel .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-mobile-panel .nav-dropdown.open .nav-dropdown-toggle::after {
        content: '▴';
    }

    .nav-mobile-panel .nav-dropdown-link {
        display: block;
        width: 100%;
        font-size: 0.92rem;
        padding: 10px 14px;
        color: rgba(255, 255, 255, 0.7);
        border-radius: 8px;
    }

    .nav-mobile-panel .nav-dropdown-link:hover,
    .nav-mobile-panel .nav-dropdown-link.active {
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.08);
    }

    /* Mobile action buttons */
    .nav-mobile-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-mobile-actions .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    .nav-mobile-actions .lang-toggle {
        flex-shrink: 0;
    }

    .nav-logo-img {
        height: 44px;
    }

    /* Mobile hero — stacked layout */
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        padding: 120px 20px 48px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero-description {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .hero-label {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        min-height: 50vh;
        height: 50vh;
    }

    .hero-slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-image::before {
        width: 100%;
        height: 80px;
        background: linear-gradient(to bottom, var(--color-white), transparent);
    }

    /* Stats bar mobile */
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar-item {
        padding: 24px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stats-bar-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stats-bar-item:nth-child(even) {
        border-right: none;
    }

    .stats-bar-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stats-bar-number {
        font-size: 2rem;
    }

    /* Two-column grids stack */
    .content-two-col,
    .content-two-col-narrow {
        grid-template-columns: 1fr;
    }

    /* Mobile grids */
    .vm-grid,
    .programs-grid,
    .campus-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stats-grid-3col {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card {
        padding: 28px 16px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-description {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        max-width: 100%;
    }

    .footer-tagline {
        margin-bottom: 12px;
    }

    .footer-links-group {
        text-align: center;
    }

    .footer-links-group h4,
    .footer-contact h4 {
        margin-bottom: 12px;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .footer-links-group ul {
        gap: 8px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .footer-links-group a {
        font-size: 0.9rem;
    }

    .footer-contact {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-top {
        padding: 40px 0 24px;
    }

    .footer-logo-img {
        height: 52px;
    }

    .hero-buttons,
    .cta-buttons,
    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid .story-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .story-card-image {
        height: 180px;
    }

    .partners-logo-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .partner-logo-item {
        padding: 16px 12px;
        min-height: 80px;
    }

    .newsletter-block {
        padding: 48px 0;
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .newsletter-block-input {
        flex-direction: column;
    }

    .newsletter-block-input input {
        min-width: 0;
        width: 100%;
    }

    .newsletter-block-input .btn {
        width: 100%;
        text-align: center;
    }

    .audience-card {
        padding: 28px 18px 24px;
    }

    .audience-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .audience-photo {
        margin-bottom: 18px;
        border-radius: 12px;
    }

    /* Action cards */
    .action-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .action-card {
        padding: 32px 24px 28px;
    }

    .action-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    /* Contact layout */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .offices-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .office-card {
        padding: 28px 20px;
    }

    .newsletter-input-wrap {
        flex-direction: column;
    }

    .newsletter-input-wrap .btn {
        width: 100%;
        text-align: center;
    }

    .footer-newsletter {
        margin: 0 auto 20px;
        padding-bottom: 20px;
    }

    .footer-newsletter p {
        margin-bottom: 14px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    /* Team grid */
    .team-grid,
    .team-grid-featured,
    .team-grid-advisors {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .founder-spotlight {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .founder-spotlight--reverse .founder-image-wrap {
        order: -1;
    }

    .founder-spotlight--reverse .founder-info {
        order: 0;
    }

    .founder-image-wrap .team-card-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .founder-social {
        justify-content: center;
    }

    .founder-info h3 {
        font-size: 1.75rem;
    }

    .team-card-bio {
        width: calc(100% + 16px);
        max-width: 280px;
        padding: 18px;
    }

    .team-card-bio p {
        font-size: 0.88rem;
    }

    .join-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .join-card {
        width: 100%;
        padding: 32px 24px 28px;
    }

    .join-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    /* Inline stats responsive */
    .inline-stats {
        gap: 24px;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    /* Quote block */
    .quote-block {
        padding: 16px 20px;
        font-size: 1.05rem;
    }

    /* Page hero */
    .page-hero {
        padding: 120px 0 48px;
    }

    .page-hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .page-hero-content p {
        font-size: 1.05rem;
    }

    /* CTA banner */
    .cta-banner {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .cta-content p {
        font-size: 1.05rem;
    }

    /* Program cards */
    .program-card-image {
        height: 180px;
    }

    .program-card-body {
        padding: 24px;
    }

    /* Partner cards */
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        padding: 28px 24px;
    }

    /* Investment grid */
    .invest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why section image */
    .why-image {
        aspect-ratio: 16/10;
    }

    /* VM cards */
    .vm-card {
        padding: 32px 24px;
    }

    .vm-card h3 {
        font-size: 1.3rem;
    }

    .vm-card p {
        font-size: 0.95rem;
    }

    /* Pillar items */
    .pillars-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .pillar-item {
        padding: 20px 16px;
    }

    .pillar-item h4 {
        font-size: 0.9rem;
    }

    /* Africa stats */
    .africa-stat-card {
        padding: 28px 20px;
    }

    /* Body text mobile */
    .body-text,
    .body-text-lg {
        font-size: 1.0625rem;
    }

    /* Campus cards */
    .campus-card {
        padding: 20px 16px;
    }
}

/* ---------- Small Phones ---------- */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px 0;
    }

    .container {
        padding: 0 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Contact compact */
    .contact-info-card {
        padding: 20px 18px;
    }

    .office-card {
        padding: 24px 16px;
    }

    .office-flag {
        font-size: 2.4rem;
    }

    /* Team grid single column on phones */
    .team-grid,
    .team-grid-featured,
    .team-grid-advisors {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .founder-image-wrap .team-card-image {
        max-width: 280px;
    }

    .team-card-info {
        padding: 16px 20px 12px;
    }

    .team-card-bio {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0 0 20px 20px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        padding: 0 20px 20px;
        background: var(--color-white);
        color: var(--color-gray);
    }

    .team-card-bio::before {
        display: none;
    }

    .team-card:hover .team-card-bio {
        transform: none;
    }

    .hero-text {
        padding: 100px 16px 36px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .hero-image {
        min-height: 40vh;
        height: 40vh;
    }

    .stats-bar-number {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .partners-logo-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .invest-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .invest-card {
        padding: 28px 16px 24px;
    }

    .invest-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .invest-icon {
        font-size: 2rem;
    }

    .invest-card h4 {
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .btn-lg {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    /* Why image full width */
    .why-image {
        aspect-ratio: 16/10;
    }

    /* VM cards compact */
    .vm-card {
        padding: 24px 20px;
    }

    .vm-card h3 {
        font-size: 1.2rem;
    }

    .vm-card-icon {
        width: 44px;
        height: 44px;
    }

    /* Program cards */
    .program-card-image {
        height: 160px;
    }

    .program-card-body {
        padding: 20px 16px;
    }

    .program-card-body h3 {
        font-size: 1.25rem;
    }

    /* Pillar items single column on tiny screens */
    .pillars-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Page hero compact */
    .page-hero {
        padding: 100px 0 40px;
    }

    /* Footer compact */
    .footer-top {
        padding: 32px 0 20px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links-group {
        text-align: center;
    }

    .footer-logo-img {
        height: 44px;
    }

    .footer-links-group h4,
    .footer-contact h4 {
        font-size: 0.75rem;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .footer-links-group a {
        font-size: 0.85rem;
    }

    .footer-links-group ul {
        gap: 6px;
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-newsletter h4 {
        font-size: 1rem;
    }

    .footer-newsletter p {
        font-size: 0.9rem;
    }

    /* CTA compact */
    .cta-banner {
        padding: 48px 0;
    }

    .cta-banner::before {
        width: 300px;
        height: 300px;
    }

    /* Inline stats wrap */
    .inline-stats {
        gap: 20px;
    }

    .inline-stat-number {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }

    /* Quote blocks */
    .quote-block {
        padding: 14px 16px;
        font-size: 1rem;
    }
}

/* ---------- Very Small Screens (320px) ---------- */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .btn-sm {
        padding: 10px 18px;
        font-size: 0.82rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .invest-grid {
        grid-template-columns: 1fr;
    }

    .nav-logo-img {
        height: 38px;
    }
}

/* Neutralize horizontal AOS animations on mobile to prevent overflow */
@media (max-width: 768px) {
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: none !important;
    }
    [data-aos="fade-left"].aos-animate,
    [data-aos="fade-right"].aos-animate {
        transform: none !important;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    z-index: 998;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #128C7E;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.lang-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 5px 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: var(--transition);
    font-family: var(--font-body);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-active {
    color: white;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
}

.lang-other {
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   APPLY PAGE
   ============================================ */
.apply-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.apply-steps {
    margin-bottom: 36px;
}

.apply-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

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

.apply-step-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    min-width: 40px;
    padding-top: 2px;
}

.apply-step h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.apply-step p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
    line-height: 1.65;
}

.apply-eligibility {
    background: rgba(123, 45, 59, 0.05);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin-top: 36px;
}

.apply-eligibility h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.apply-form-wrap {
    position: sticky;
    top: 100px;
}

.apply-form-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.apply-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.apply-form-note {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 28px;
}

.apply-form-note-small {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: -16px;
}

.apply-form .form-group {
    margin-bottom: 20px;
}

.apply-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 7px;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.apply-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
    background: white;
}

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

.apply-submit-btn {
    width: 100%;
    margin-top: 8px;
}

.apply-privacy-note {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 16px;
    text-align: center;
}

.form-help {
    display: block;
    margin-top: 6px;
    color: var(--color-gray);
    font-size: 0.8rem;
}

/* ============================================
   ADDITIONAL UTILITIES
   ============================================ */
.why-image-square {
    aspect-ratio: 1/1;
}

.pillar-item-full {
    grid-column: 1 / -1;
}

.btn-group-center {
    justify-content: center;
    margin-top: 32px;
}

.cta-banner-navy {
    background-color: var(--color-navy-deep);
}

.campus-card-minimal {
    border: none;
    padding: 0;
    box-shadow: none;
    margin-bottom: 15px;
}

.campus-card-minimal h4 {
    margin: 0;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding: 8px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 76px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), rgba(252, 194, 0, 0.15));
}

.timeline-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 36px;
    margin-bottom: 32px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 6px;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    right: -44px;
    top: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 2px solid var(--color-dark);
    z-index: 2;
}

.timeline-item.timeline-featured .timeline-marker::after {
    width: 18px;
    height: 18px;
    right: -47px;
    top: 9px;
    box-shadow: 0 0 0 5px rgba(252, 194, 0, 0.2);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: right;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 28px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(252, 194, 0, 0.25);
}

.timeline-item.timeline-featured .timeline-content {
    background: rgba(252, 194, 0, 0.07);
    border-color: rgba(252, 194, 0, 0.2);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    margin: 0;
}

/* Timeline responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 52px;
    }
    .timeline-item {
        grid-template-columns: 52px 1fr;
        gap: 24px;
    }
    .timeline-marker::after {
        right: -30px;
    }
    .timeline-item.timeline-featured .timeline-marker::after {
        right: -33px;
    }
    .timeline-year {
        font-size: 0.82rem;
    }
    .timeline-content {
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .timeline::before {
        display: none;
    }
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 16px;
    }
    .timeline-marker {
        justify-content: flex-start;
    }
    .timeline-marker::after {
        display: none;
    }
    .timeline-year {
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* Apply page responsive */
@media (max-width: 1024px) {
    .apply-layout {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .apply-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .apply-form-wrap {
        position: static;
    }
    .apply-form-card {
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .apply-form-card {
        padding: 24px 18px;
    }
    .apply-eligibility {
        padding: 20px 20px;
    }
}


/* ============================================
   VALUES PAGE
   ============================================ */
.values-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.values-why-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.values-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

.values-why-icon {
    width: 56px;
    height: 56px;
    background: rgba(123, 45, 59, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-primary);
}

.values-why-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.values-why-card p {
    font-size: 0.92rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.value-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
    border-top-color: var(--color-primary);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

.values-action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.values-action-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.values-action-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.values-action-icon {
    width: 52px;
    height: 52px;
    background: rgba(252, 194, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--color-primary);
}

.values-action-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.values-action-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin: 0;
}

.ayiode-way-traits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.trait-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.trait-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-why-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .values-action-grid {
        grid-template-columns: 1fr;
    }
    .ayiode-way-traits {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   CHECK LIST (shared component)
   ============================================ */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 0.92rem;
    color: var(--color-dark);
    line-height: 1.6;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

.check-list-light li {
    color: rgba(255, 255, 255, 0.85);
}

.check-list-light li::before {
    background: var(--color-accent);
}


/* ============================================
   PRIORITIES PAGE
   ============================================ */

/* --- Sticky Sub-Navigation --- */
.priorities-subnav {
    background: var(--color-primary);
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    z-index: 990;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.priorities-subnav + * {
    margin-top: 48px;
}

.subnav-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.4) transparent;
    gap: 0;
}

.subnav-scroll::-webkit-scrollbar {
    height: 4px;
}

.subnav-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.subnav-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.subnav-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
}

.subnav-link {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 16px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
}

.subnav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.subnav-link.active {
    color: var(--color-primary);
    background: #fff;
    border-bottom-color: var(--color-accent);
}

/* --- Priorities Hero --- */
.pri-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
}

.pri-hero-bg {
    position: absolute;
    inset: 0;
}

.pri-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.pri-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-end;
    padding-bottom: 60px;
    padding-top: 100px;
}

.pri-hero-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.pri-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.pri-hero-text {
    align-self: flex-end;
    padding-bottom: 8px;
}

.pri-hero-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* --- Overview Cards Grid --- */
.pri-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 32px;
}

.pri-overview-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.pri-overview-card {
    text-decoration: none;
    color: var(--color-dark);
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pri-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pri-overview-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.pri-overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pri-overview-card:hover .pri-overview-img img {
    transform: scale(1.05);
}

.pri-overview-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    padding: 20px 20px 8px;
}

.pri-overview-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-gray);
    padding: 0 20px;
    margin: 0;
}

.pri-read-more {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    padding: 8px 20px;
    margin: 16px 20px 20px;
    transition: all 0.3s ease;
}

.pri-overview-card:hover .pri-read-more {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* --- Banner Sections (full-bleed image + overlay) --- */
.pri-banner-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.pri-banner-bg {
    position: absolute;
    inset: 0;
}

.pri-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pri-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.pri-banner-section .container {
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
    padding-top: 48px;
}

.pri-banner-overlay {
    background: var(--color-primary);
    padding: 32px 40px;
    max-width: 520px;
    border-radius: 0;
}

.pri-banner-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.pri-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

/* --- Investment Tier Cards --- */
.pri-invest-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pri-invest-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-dark);
    margin-bottom: 24px;
    text-align: center;
}

.pri-invest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pri-invest-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.pri-invest-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

.pri-invest-card {
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.pri-invest-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.12);
}

.pri-invest-card-featured {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.pri-invest-card-featured:hover {
    box-shadow: 0 4px 24px rgba(123, 45, 59, 0.3);
}

.pri-invest-amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.pri-invest-card-featured .pri-invest-amount {
    color: #fff;
}

.pri-invest-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-gray);
    line-height: 1.4;
}

.pri-invest-card-featured .pri-invest-label {
    color: rgba(255, 255, 255, 0.85);
}

/* --- Impact + Vision Row --- */
.pri-impact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pri-impact-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.pri-vision-col {
    background: rgba(123, 45, 59, 0.04);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
}

.pri-vision-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 8px;
}

/* --- Final Master CTA Grid --- */
.pri-final-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.pri-final-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.pri-final-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.pri-final-card svg {
    color: var(--color-accent);
    margin-bottom: 12px;
}

.pri-final-card span {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

/* --- Keep legacy check-list (used by priorities + other pages) --- */
.priority-benefits {
    background: rgba(123, 45, 59, 0.04);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 16px 16px 0;
    padding: 28px 32px;
}

.priority-benefits h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

/* --- Priorities Responsive --- */
@media (max-width: 1024px) {
    .pri-hero .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pri-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pri-overview-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pri-invest-grid,
    .pri-invest-grid-5,
    .pri-invest-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .pri-final-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .subnav-link {
        font-size: 0.65rem;
        padding: 14px 14px;
    }
}

@media (max-width: 768px) {
    .pri-hero {
        min-height: 400px;
    }

    .pri-hero-title {
        font-size: 2rem;
    }

    .pri-overview-grid,
    .pri-overview-grid-4 {
        grid-template-columns: 1fr;
    }

    .pri-banner-section {
        min-height: 280px;
    }

    .pri-banner-overlay {
        padding: 24px 28px;
    }

    .pri-invest-grid,
    .pri-invest-grid-5,
    .pri-invest-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pri-impact-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pri-final-grid {
        grid-template-columns: 1fr 1fr;
    }

    .subnav-link {
        font-size: 0.6rem;
        padding: 12px 10px;
    }

    .priorities-subnav {
        top: 60px;
    }
}

@media (max-width: 480px) {
    .pri-invest-grid,
    .pri-invest-grid-5,
    .pri-invest-grid-6 {
        grid-template-columns: 1fr;
    }

    .pri-final-grid {
        grid-template-columns: 1fr;
    }
}

.content-two-col-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    direction: rtl;
}

.content-two-col-reverse > * {
    direction: ltr;
}

.content-two-col-reverse > *:first-child {
    order: 2;
}

.content-two-col-reverse > *:last-child {
    order: 1;
}

.detail-row {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.92rem;
    color: var(--color-dark);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .network-grid {
        grid-template-columns: 1fr;
    }
    .content-two-col-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .content-two-col-reverse > *:first-child {
        order: unset;
    }
    .content-two-col-reverse > *:last-child {
        order: unset;
    }
    .investment-tiers {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   FELLOWSHIP PAGE
   ============================================ */
.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.quote-block {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-primary);
    padding: 24px 32px;
    background: rgba(123, 45, 59, 0.05);
    border-left: 5px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    line-height: 1.5;
}

.section-dark .quote-block {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}

.why-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fellowship-phases {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
    flex-wrap: wrap;
}

.phase-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    transition: var(--transition);
}

.phase-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.phase-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 12px;
    line-height: 1;
}

.phase-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.phase-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.55;
}

.phase-connector {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phase-connector::after {
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15), var(--color-accent), rgba(255, 255, 255, 0.15));
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.who-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

.who-icon {
    width: 56px;
    height: 56px;
    background: rgba(123, 45, 59, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--color-primary);
}

.who-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.who-card p {
    font-size: 0.88rem;
    color: var(--color-gray);
    margin: 0;
    line-height: 1.6;
}

.eligible-box {
    background: rgba(252, 194, 0, 0.06);
    border: 1px solid rgba(252, 194, 0, 0.2);
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 40px;
    text-align: center;
}

.eligible-box h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.eligible-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.eligible-tag {
    background: rgba(252, 194, 0, 0.12);
    color: var(--color-dark);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 24px;
}

.fellows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.fellow-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.fellow-card:hover {
    border-top-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}

.fellow-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(252, 194, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.fellow-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.fellow-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

.vision-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.vision-stat {
    text-align: center;
}

.vision-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.vision-stat .stat-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 4px;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.tier-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.tier-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.tier-card-featured {
    border-color: var(--color-accent);
    background: rgba(252, 194, 0, 0.08);
}

.tier-card-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.tier-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 6px;
}

.tier-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fellowship-phases {
        flex-direction: column;
        align-items: center;
    }
    .phase-card {
        max-width: 100%;
        width: 100%;
    }
    .phase-connector {
        width: auto;
        height: 30px;
    }
    .phase-connector::after {
        width: 2px;
        height: 100%;
    }
    .who-grid {
        grid-template-columns: 1fr;
    }
    .hero-cta-row {
        flex-direction: column;
    }
    .hero-cta-row .btn {
        text-align: center;
    }
    .vision-stats {
        flex-direction: column;
        gap: 20px;
    }
    .tiers-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   FELLOWSHIP APPLICATION FORM
   ============================================ */
.form-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

.form-section-desc {
    font-size: 0.88rem;
    color: var(--color-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fellowship-details-box {
    background: rgba(252, 194, 0, 0.06);
    border: 1px solid rgba(252, 194, 0, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
}

.fellowship-details-box h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   SHARED UTILITIES (NEW)
   ============================================ */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

.body-text-sm {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--color-gray);
}

.text-white {
    color: var(--color-white) !important;
}

/* ============================================
   PIPELINE FLOW (Programs & Homepage)
   ============================================ */
.pipeline-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.pipeline-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 20px 16px;
    border-radius: 16px;
    background: var(--color-white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    min-width: 120px;
    cursor: pointer;
}

.pipeline-stage:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(123, 45, 59, 0.12);
}

.pipeline-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(123, 45, 59, 0.08), rgba(252, 194, 0, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--color-primary);
    transition: all 0.35s ease;
}

.pipeline-stage:hover .pipeline-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
}

.pipeline-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.pipeline-sublabel {
    font-size: 0.75rem;
    color: var(--color-gray);
    font-weight: 500;
}

.pipeline-arrow {
    color: var(--color-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Pipeline badges */
.pipeline-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pipeline-badge-discover {
    background: rgba(252, 194, 0, 0.12);
    color: var(--color-accent-dark);
}

.pipeline-badge-educate {
    background: rgba(123, 45, 59, 0.08);
    color: var(--color-primary);
}

.pipeline-badge-activate {
    background: rgba(252, 194, 0, 0.15);
    color: var(--color-primary);
}

.pipeline-badge-build {
    background: rgba(27, 42, 91, 0.08);
    color: var(--color-secondary);
}

.pipeline-badge-connect {
    background: rgba(37, 99, 35, 0.08);
    color: #196118;
}

/* ============================================
   ACTIVATE GRID (Venture Fellowship features)
   ============================================ */
.activate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.activate-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 0;
}

.activate-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.activate-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.activate-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(252, 194, 0, 0.2), rgba(123, 45, 59, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--color-primary);
}

.activate-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.activate-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   DIFFERENTIATOR GRID (Why AYIODE)
   ============================================ */
.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.differentiator-card {
    padding: 32px 24px;
    border-radius: 16px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.differentiator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.differentiator-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 16px;
}

.differentiator-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.differentiator-card p {
    font-size: 0.88rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   INVEST GRID (Homepage Get Involved)
   ============================================ */
.invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.invest-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 40px 28px 36px;
    border-radius: 20px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.invest-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 16px 40px rgba(123, 45, 59, 0.1);
}

.invest-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(123, 45, 59, 0.08), rgba(252, 194, 0, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary);
    transition: all 0.35s ease;
}

.invest-card:hover .invest-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
}

.invest-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.invest-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   MOVEMENT SECTION (Homepage emotional close)
   ============================================ */
.movement-section {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-navy-deep));
    overflow: hidden;
    position: relative;
}

.movement-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 194, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.movement-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.movement-title {
    font-family: var(--font-heading);
    font-size: 240%;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 28px;
}

.movement-text {
    font-size: 1.125rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 20px;
    font-weight: 600;
}

.movement-text:last-child {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0;
}

/* ============================================
   CENTERED CTA BLOCK
   ============================================ */
.centered-cta-block {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   HERO CTA ROW
   ============================================ */
.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   PHASE 2 RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .differentiator-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pipeline-flow {
        gap: 6px;
    }
    .pipeline-stage {
        min-width: 100px;
        padding: 16px 12px;
    }
}

@media (max-width: 768px) {
    .pipeline-flow {
        flex-direction: column;
        gap: 12px;
    }
    .pipeline-arrow {
        transform: rotate(90deg);
    }
    .pipeline-stage {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        text-align: left;
    }
    .pipeline-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .activate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .activate-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    .differentiator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .invest-grid {
        grid-template-columns: 1fr;
    }
    .movement-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .movement-text {
        font-size: 1rem;
    }
    .hero-cta-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pipeline-stage {
        max-width: none;
        padding: 14px 16px;
    }
    .activate-grid {
        grid-template-columns: 1fr;
    }
    .activate-grid-compact {
        grid-template-columns: 1fr;
    }
    .differentiator-grid {
        grid-template-columns: 1fr;
    }
    .differentiator-card {
        padding: 24px 20px;
    }
    .invest-card {
        padding: 28px 20px 24px;
    }
}


/* ============================================
   PHASE 3: ABOUT — PHILOSOPHY GRID
   ============================================ */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.philosophy-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}
.philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.philosophy-icon {
    width: 52px;
    height: 52px;
    background: rgba(123, 45, 59,0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--color-primary);
}
.philosophy-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}
.philosophy-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .philosophy-card {
        padding: 24px 20px;
    }
}


/* ============================================
   PHASE 3: PARTNER — WHO WE PARTNER WITH
   ============================================ */
.who-partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.who-partner-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.who-partner-card:hover {
    background: rgba(255,255,255,0.10);
    transform: translateY(-3px);
}
.who-partner-card svg {
    color: var(--color-accent);
    margin-bottom: 14px;
}
.who-partner-card h4 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .who-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .who-partner-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   PHASE 3: PARTNER — OPPORTUNITY LIST
   ============================================ */
.opportunity-list {
    max-width: 720px;
    margin: 40px auto 0;
}
.opportunity-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.opportunity-item:last-child {
    border-bottom: none;
}
.opportunity-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 194, 0,0.08);
    border-radius: 8px;
    flex-shrink: 0;
}
.opportunity-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}
.opportunity-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}


/* ============================================
   PHASE 3: SUPPORT — INVESTMENT TIER CARDS
   ============================================ */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.tier-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}
.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    border-color: var(--color-accent);
}
.tier-card-featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(123, 45, 59,0.02), rgba(252, 194, 0,0.04));
}
.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
}
.tier-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.tier-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.tier-card p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.tier-card .btn-outline {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}
.tier-card .btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

@media (max-width: 900px) {
    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .tier-grid {
        grid-template-columns: 1fr;
    }
    .tier-card {
        padding: 28px 20px;
    }
    .tier-amount {
        font-size: 1.6rem;
    }
}

/* Fellowship tier cards (dark background context) */
.section-dark .tier-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}
.section-dark .tier-card:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.25);
}
.section-dark .tier-card-featured {
    border-color: var(--color-accent);
    background: rgba(252, 194, 0, 0.08);
}
.section-dark .tier-card-amount {
    color: var(--color-accent);
}
.section-dark .tier-card h4 {
    color: var(--color-white);
}
.section-dark .tier-card p {
    color: rgba(255, 255, 255, 0.65);
}


/* ============================================
   PHASE 3: IMPACT — STATS GRID LIGHT
   ============================================ */
.stats-grid-light {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.stats-grid-light .stat-card {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .stats-grid-light {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .stats-grid-light {
        grid-template-columns: 1fr;
    }
}
