/* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #C41E24;
            --red-dark: #9B1519;
            --red-light: #E8434A;
            --charcoal: #2D2D2D;
            --charcoal-light: #444444;
            --bg: #FAFAFA;
            --bg-warm: #FFF8F0;
            --gold: #D4A853;
            --gold-light: #F0D89A;
            --text: #1A1A1A;
            --text-muted: #6B7280;
            --text-light: #9CA3AF;
            --white: #FFFFFF;
            --border: rgba(0,0,0,0.06);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: clip;
        }

        /* ============================================
           LOADING SCREEN
           ============================================ */
        #loader {
            position: fixed;
            inset: 0;
            z-index: 10000;
            background: var(--charcoal);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        #loader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        #loader .loader-logo {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        #loader .loader-logo .logo-up {
            color: var(--red);
        }

        #loader .loader-logo .logo-lift {
            color: var(--white);
        }

        #loader .progress-track {
            width: 240px;
            height: 3px;
            background: rgba(255,255,255,0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        #loader .progress-fill {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--red), var(--red-light));
            border-radius: 3px;
            transition: width 0.15s ease;
        }

        #loader .progress-text {
            margin-top: 1rem;
            color: var(--text-light);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        #navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #navbar.scrolled {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 0.7rem 2rem;
            box-shadow: 0 1px 20px rgba(0,0,0,0.06);
        }

        #navbar .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            display: flex;
            align-items: baseline;
            gap: 0;
        }

        #navbar .nav-logo .logo-up {
            color: var(--red);
        }

        #navbar .nav-logo .logo-lift {
            color: var(--white);
            transition: color 0.4s ease;
        }

        #navbar.scrolled .nav-logo .logo-lift {
            color: var(--charcoal);
        }

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

        #navbar .nav-links a {
            text-decoration: none;
            color: rgba(255,255,255,0.8);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            position: relative;
        }

        #navbar.scrolled .nav-links a {
            color: var(--text-muted);
        }

        #navbar .nav-links a:hover {
            color: var(--white);
        }

        #navbar.scrolled .nav-links a:hover {
            color: var(--red);
        }

        #navbar .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.3s ease;
        }

        #navbar .nav-links a:hover::after {
            width: 100%;
        }

        .nav-donate-btn {
            background: var(--red);
            color: var(--white) !important;
            padding: 0.55rem 1.5rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(196, 30, 36, 0.3);
        }

        .nav-donate-btn:hover {
            background: var(--red-dark) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(196, 30, 36, 0.4);
        }

        .nav-donate-btn::after {
            display: none !important;
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        #navbar.scrolled .nav-toggle span {
            background: var(--charcoal);
        }

        /* ============================================
           HERO SECTION — SCROLL CANVAS
           ============================================ */
        #hero-scroll-container {
            position: relative;
            height: 600vh;
        }

        #hero-sticky {
            position: sticky;
            top: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: var(--charcoal);
        }

        /* Hero layout wrapper — drives dynamic positioning */
        .hero-layout {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 0;
            transition: none; /* JS drives these */
        }

        /* Canvas window container — morphs between full & split */
        .canvas-window {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 0;
            transition: top 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                        left 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                        width 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                        height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                        border-radius 0.7s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .canvas-window.mode-full {
            top: 0; left: 0; width: 100%; height: 100%;
            border-radius: 0;
        }

        .canvas-window.mode-split-right {
            top: 5%; left: 45%; width: 52%; height: 90%;
            border-radius: var(--radius-xl);
            box-shadow: 0 20px 80px rgba(0,0,0,0.5);
        }

        .canvas-window.mode-split-left {
            top: 5%; left: 3%; width: 52%; height: 90%;
            border-radius: var(--radius-xl);
            box-shadow: 0 20px 80px rgba(0,0,0,0.5);
        }

        #hero-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Dark overlay gradient for text readability */
        .canvas-overlay {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.7s ease;
        }

        .canvas-overlay.overlay-full {
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.3) 0%,
                rgba(0,0,0,0.1) 40%,
                rgba(0,0,0,0.1) 60%,
                rgba(0,0,0,0.45) 100%
            );
        }

        .canvas-overlay.overlay-split {
            background: none;
        }

        /* Hero text panels — two types: centered overlay & side panel */
        .hero-text-panel {
            position: absolute;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .hero-text-panel.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Full-screen centered text */
        .hero-text-panel.panel-center {
            inset: 0;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }

        /* Side panel — LEFT text */
        .hero-text-panel.panel-left {
            top: 0;
            left: 0;
            bottom: 0;
            width: 42%;
            padding: 6rem 3rem 4rem 5%;
            align-items: flex-start;
            text-align: left;
        }

        /* Side panel — RIGHT text */
        .hero-text-panel.panel-right {
            top: 0;
            right: 0;
            bottom: 0;
            width: 42%;
            padding: 6rem 5% 4rem 3rem;
            align-items: flex-start;
            text-align: left;
        }

        .hero-text-panel h1 {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 5vw, 4.2rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1rem;
            text-shadow: 0 2px 40px rgba(0,0,0,0.3);
        }

        .hero-text-panel h1 .highlight {
            color: var(--red-light);
        }

        .hero-text-panel p {
            font-size: clamp(0.95rem, 1.5vw, 1.2rem);
            color: rgba(255,255,255,0.8);
            max-width: 500px;
            font-weight: 300;
            line-height: 1.7;
        }

        .hero-text-panel .hero-stat {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 30px rgba(196,30,36,0.4);
        }

        .hero-text-panel .hero-stat .stat-accent {
            color: var(--red-light);
        }

        /* Side panel mini stats */
        .hero-mini-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .hero-mini-stat {
            display: flex;
            flex-direction: column;
        }

        .hero-mini-stat .mini-num {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--red-light);
            line-height: 1.2;
        }

        .hero-mini-stat .mini-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* CTA button in hero */
        .hero-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 2rem;
            padding: 0.85rem 2rem;
            background: var(--red);
            color: var(--white);
            text-decoration: none;
            border-radius: 100px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(196,30,36,0.35);
            pointer-events: auto;
        }

        .hero-cta-btn:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(196,30,36,0.45);
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .hero-scroll-indicator.hidden {
            opacity: 0;
        }

        .hero-scroll-indicator span {
            color: rgba(255,255,255,0.6);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 500;
        }

        .scroll-arrow {
            width: 20px;
            height: 20px;
            border-right: 2px solid rgba(255,255,255,0.5);
            border-bottom: 2px solid rgba(255,255,255,0.5);
            transform: rotate(45deg);
            animation: scrollBounce 2s ease infinite;
        }

        @keyframes scrollBounce {
            0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
            40% { transform: rotate(45deg) translateY(6px); }
            60% { transform: rotate(45deg) translateY(3px); }
        }

        /* Hero progress bar */
        .hero-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            z-index: 6;
        }

        .hero-progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--red), var(--gold));
            transition: width 0.05s linear;
        }

        /* ============================================
           SHARED SECTION STYLES
           ============================================ */
        section {
            padding: 6rem 2rem;
        }

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

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 1rem;
        }

        .section-tag::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 2px;
            background: var(--red);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            color: var(--charcoal);
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Scroll-triggered animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }
        .reveal-delay-6 { transition-delay: 0.6s; }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        #about {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        #about::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196,30,36,0.04), transparent 70%);
            pointer-events: none;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-content .about-text {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .about-value {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .about-value .value-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(196,30,36,0.08), rgba(196,30,36,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .about-value h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.2rem;
        }

        .about-value p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .about-visual {
            position: relative;
        }

        .about-card-stack {
            position: relative;
            height: 420px;
        }

        .about-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
        }

        .about-card.mission {
            top: 0;
            left: 0;
            right: 40px;
            z-index: 2;
        }

        .about-card.vision {
            bottom: 0;
            left: 40px;
            right: 0;
            z-index: 1;
        }

        .about-card .card-label {
            font-family: var(--font-display);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .about-card .card-label::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--red);
        }

        .about-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .about-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ============================================
           IMPACT STATS STRIP
           ============================================ */
        #impact-strip {
            background: var(--charcoal);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        #impact-strip::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item {
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -1rem;
            top: 20%;
            height: 60%;
            width: 1px;
            background: rgba(255,255,255,0.1);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-number .stat-suffix {
            color: var(--red-light);
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ============================================
           PROGRAMS SECTION
           ============================================ */
        #programs {
            background: var(--bg);
            position: relative;
        }

        .programs-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .programs-header .section-subtitle {
            margin: 0 auto;
        }

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

        .program-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: default;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--red), var(--gold));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .program-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

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

        .program-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(196,30,36,0.1), rgba(196,30,36,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
        }

        .program-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.6rem;
        }

        .program-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .program-stat {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--red);
            background: rgba(196,30,36,0.06);
            padding: 0.35rem 0.8rem;
            border-radius: 100px;
        }

        /* ============================================
           APPROACH SECTION
           ============================================ */
        #approach {
            background: var(--white);
            position: relative;
        }

        .approach-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .approach-header .section-subtitle {
            margin: 0 auto;
        }

        .approach-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            position: relative;
        }

        .approach-steps::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--red), var(--gold), var(--red-light), var(--red));
            z-index: 0;
        }

        .approach-step {
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 1rem;
        }

        .step-number {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--white);
            border: 3px solid var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--red);
            box-shadow: 0 4px 15px rgba(196,30,36,0.15);
        }

        .approach-step h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .approach-step p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============================================
           DIFFERENTIATORS SECTION
           ============================================ */
        #differentiators {
            background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
            position: relative;
            overflow: hidden;
        }

        #differentiators::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(196,30,36,0.1), transparent 70%);
            pointer-events: none;
        }

        .diff-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

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

        .diff-header .section-subtitle {
            color: rgba(255,255,255,0.6);
            margin: 0 auto;
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .diff-card {
            background: rgba(255,255,255,0.04);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.4s ease;
        }

        .diff-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(196,30,36,0.3);
            transform: translateY(-4px);
        }

        .diff-card .diff-icon {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .diff-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .diff-card p {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.6;
        }

        /* ============================================
           TEAM SECTION
           ============================================ */
        #team {
            background: var(--bg);
        }

        .team-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .team-header .section-subtitle {
            margin: 0 auto;
        }

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

        .team-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .team-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--white);
        }

        .team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, var(--red), var(--red-light)); }
        .team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, var(--charcoal), #555); }
        .team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, var(--gold), #c49a40); }
        .team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, #2563eb, #60a5fa); }
        .team-card:nth-child(5) .team-avatar { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
        .team-card:nth-child(6) .team-avatar { background: linear-gradient(135deg, #059669, #34d399); }

        .team-card h3 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.2rem;
        }

        .team-role {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.75rem;
        }

        .team-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============================================
           CTA / DONATE SECTION
           ============================================ */
        #donate {
            background: var(--bg-warm);
            position: relative;
            overflow: hidden;
        }

        #donate::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212,168,83,0.08), transparent 70%);
            pointer-events: none;
        }

        .donate-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .donate-content .donate-text {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .donate-ways {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .donate-way {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.25rem;
            background: var(--white);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .donate-way:hover {
            box-shadow: var(--shadow-sm);
            border-color: rgba(196,30,36,0.15);
        }

        .donate-way .way-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(196,30,36,0.1), rgba(196,30,36,0.03));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .donate-way h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 0.2rem;
        }

        .donate-way p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .bank-details {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .bank-details h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .bank-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
        }

        .bank-row:last-child {
            border-bottom: none;
        }

        .bank-row .bank-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .bank-row .bank-value {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--charcoal);
            font-family: var(--font-display);
        }

        .donate-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            padding: 0.9rem 2.5rem;
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: var(--white);
            text-decoration: none;
            border-radius: 100px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(196,30,36,0.3);
        }

        .donate-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(196,30,36,0.4);
        }

        .tax-note {
            margin-top: 1rem;
            font-size: 0.82rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

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

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand .footer-logo {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .footer-brand .footer-logo .logo-up {
            color: var(--red);
        }

        .footer-brand .footer-logo .logo-lift {
            color: var(--white);
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.5);
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            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);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--red);
            color: var(--white);
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.25rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.6rem;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s ease;
        }

        .footer-col ul li a:hover {
            color: var(--red-light);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin-bottom: 0.75rem;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-contact-item .contact-icon {
            min-width: 16px;
            color: var(--red-light);
        }

        .footer-contact-item a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-item a:hover {
            color: var(--red-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.35);
        }

        .footer-bottom .reg-info {
            font-size: 0.78rem;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .programs-grid { grid-template-columns: repeat(2, 1fr); }
            .diff-grid { grid-template-columns: repeat(2, 1fr); }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .approach-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .approach-steps::before { display: none; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            /* Mobile Hero Dynamic Layout */
            .canvas-window.mode-split-right,
            .canvas-window.mode-split-left {
                top: 3%;
                left: 3%;
                width: 94%;
                height: 38%;
                border-radius: var(--radius-lg);
            }
            
            .hero-text-panel.panel-left,
            .hero-text-panel.panel-right {
                top: 42%;
                left: 0;
                bottom: 0;
                width: 100%;
                padding: 2rem 1.5rem;
                align-items: center;
                text-align: center;
                justify-content: flex-start;
            }

            .hero-text-panel.panel-left .section-tag,
            .hero-text-panel.panel-right .section-tag {
                margin-bottom: 1rem !important;
            }

            .hero-text-panel.panel-left .hero-mini-stats,
            .hero-text-panel.panel-right .hero-mini-stats {
                justify-content: center;
                gap: 1.5rem;
                margin-top: 1.5rem;
            }

            section { padding: 4rem 1.25rem; }
            .about-grid { grid-template-columns: 1fr; gap: 2rem; }
            .about-card-stack { height: auto; position: static; }
            .about-card { position: relative; top: auto; left: auto; right: auto; bottom: auto; margin-bottom: 1rem; }
            .about-card.vision { margin-bottom: 0; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            .stat-item:nth-child(2)::after { display: none; }
            .programs-grid { grid-template-columns: 1fr; }
            .diff-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr; }
            .approach-steps { grid-template-columns: 1fr; }
            .donate-grid { grid-template-columns: 1fr; gap: 2rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

            #navbar .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 1.5rem 2rem;
                gap: 1rem;
                box-shadow: var(--shadow-lg);
            }

            #navbar .nav-links.open {
                display: flex;
            }

            #navbar .nav-links a {
                color: var(--text-muted) !important;
            }

            .nav-toggle {
                display: flex;
            }

            .about-values { grid-template-columns: 1fr; }
        }