       /* ========================================
           PHD RESEARCH - Color Palette
           Scholarly, Warm, Research-Driven
           ======================================== */
        :root {
            --pgr-deep: #0a1628;
            --pgr-navy: #12243d;
            --pgr-slate: #1e3a5c;
            --pgr-burgundy: #6b2c3f;
            --pgr-burgundy-light: #8a3d54;
            --pgr-gold: #c9a227;
            --pgr-gold-muted: #b8973f;
            --pgr-cream: #f9f7f4;
            --pgr-warm-sand: #f5f0e8;
            --pgr-text: #2d3748;
            --pgr-text-light: #718096;
            /* Typography - Matching site-wide standards */
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ========================================
           HERO SECTION - PhD Research
           ======================================== */
        .pgr-hero {
            position: relative;
            min-height: 720px;
            background: linear-gradient(165deg, var(--pgr-deep) 0%, var(--pgr-navy) 35%, var(--pgr-slate) 100%);
            padding: 140px 60px 100px;
            overflow: hidden;
        }
        .pgr-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(201, 162, 39, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(201, 162, 39, 0.025) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }
        .pgr-hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(140px);
            pointer-events: none;
        }
        .pgr-hero-glow-1 {
            width: 700px;
            height: 700px;
            top: -250px;
            right: -150px;
            background: rgba(107, 44, 63, 0.12);
        }
        .pgr-hero-glow-2 {
            width: 500px;
            height: 500px;
            bottom: -100px;
            left: -100px;
            background: rgba(201, 162, 39, 0.06);
        }
        .pgr-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
        }
        .pgr-hero-content { color: #ffffff; }
        .pgr-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: rgba(107, 44, 63, 0.2);
            border: 1px solid rgba(107, 44, 63, 0.35);
            padding: 12px 24px;
            border-radius: 6px;
            margin-bottom: 36px;
        }
        .pgr-hero-badge-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--pgr-gold-muted) 0%, var(--pgr-gold) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pgr-hero-badge-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--pgr-deep);
        }
        .pgr-hero-badge span {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.85);
        }
        .pgr-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(40px, 4.5vw, 60px);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #ffffff;
            letter-spacing: -0.5px;
        }
        .pgr-hero-title .accent {
            color: var(--pgr-gold);
            /* font-style: italic; */
        }
        .pgr-hero-subtitle {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 400;
            /* font-style: italic; */
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 32px;
            max-width: 560px;
        }
        .pgr-hero-body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            max-width: 540px;
        }
        .pgr-hero-ctas {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        .pgr-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 30px;
            border-radius: 6px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .pgr-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .pgr-btn-primary {
            background: linear-gradient(135deg, #c9a227 0%, #d4af37 100%);
            color: #0a1628;
            box-shadow: 0 4px 20px rgba(184, 151, 63, 0.35);
            border: none;
        }
        .pgr-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(184, 151, 63, 0.45);
            color: #0a1628;
        }
        .pgr-btn-primary:hover svg { transform: translateX(4px); }
        .pgr-btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
        }
        .pgr-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.4);
            color: #ffffff;
        }
        .pgr-hero-pillars {
            display: flex;
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
        }
        .pgr-pillar {
            flex: 1;
            padding: 0 24px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        .pgr-pillar:first-child { padding-left: 0; }
        .pgr-pillar:last-child { border-right: none; padding-right: 0; }
        .pgr-pillar-label {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pgr-gold-muted);
            margin-bottom: 6px;
        }
        .pgr-pillar-value {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }
        .pgr-hero-visual { position: relative; }
        .pgr-focus-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .pgr-focus-card {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 12px;
            padding: 28px 32px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            border-left: 4px solid transparent;
        }
        .pgr-focus-card:hover {
            transform: translateX(8px);
            border-left-color: var(--pgr-gold-muted);
        }
        .pgr-focus-icon {
            width: 52px;
            height: 52px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .pgr-focus-icon svg { width: 24px; height: 24px; }
        .pgr-focus-icon.burgundy {
            background: linear-gradient(135deg, rgba(18, 36, 61, 0.12), rgba(18, 36, 61, 0.06));
            color: var(--pgr-navy);
        }
        .pgr-focus-icon.gold {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.06));
            color: var(--pgr-gold);
        }
        .pgr-focus-icon.navy {
            background: linear-gradient(135deg, rgba(30, 58, 92, 0.12), rgba(30, 58, 92, 0.06));
            color: var(--pgr-slate);
        }
        .pgr-focus-content h3 {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 700;
            color: var(--pgr-navy);
            margin-bottom: 6px;
        }
        .pgr-focus-content p {
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--pgr-text-light);
            line-height: 1.5;
            margin: 0;
        }
        .pgr-floating-stat {
            position: absolute;
            bottom: -20px;
            left: -30px;
            background: linear-gradient(135deg, var(--pgr-navy) 0%, var(--pgr-slate) 100%);
            padding: 20px 28px;
            border-radius: 10px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            display: flex;
            align-items: center;
            gap: 16px;
            border: 1px solid rgba(201, 162, 39, 0.2);
        }
        .pgr-floating-stat-icon {
            width: 44px;
            height: 44px;
            background: rgba(201, 162, 39, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pgr-floating-stat-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--pgr-gold);
        }
        .pgr-floating-stat-content { color: #ffffff; }
        .pgr-floating-stat-number {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 4px;
        }
        .pgr-floating-stat-label {
            font-family: var(--font-body);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }
        @keyframes pgrSlideIn {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .pgr-focus-card:nth-child(1) { animation: pgrSlideIn 0.6s ease 0.3s both; }
        .pgr-focus-card:nth-child(2) { animation: pgrSlideIn 0.6s ease 0.45s both; }
        .pgr-focus-card:nth-child(3) { animation: pgrSlideIn 0.6s ease 0.6s both; }
        .pgr-focus-card:nth-child(4) { animation: pgrSlideIn 0.6s ease 0.75s both; }
        /* Global Network Mini Stats in Focus Card */
        .pgr-focus-mini-stats {
            display: flex;
            gap: 20px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(0,0,0,0.06);
        }
        .pgr-focus-mini-stat {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }
        .pgr-focus-mini-stat-value {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--pgr-burgundy);
        }
        .pgr-focus-mini-stat-label {
            font-size: 12px;
            color: var(--pgr-text-light);
        }
        @media (max-width: 1024px) {
            .pgr-hero { padding: 120px 40px 80px; min-height: auto; }
            .pgr-hero-container { grid-template-columns: 1fr; gap: 60px; }
            .pgr-hero-visual { order: -1; }
            .pgr-floating-stat { left: 20px; bottom: -30px; }
        }
        @media (max-width: 768px) {
            .pgr-hero { padding: 100px 24px 60px; }
            .pgr-hero-pillars { flex-wrap: wrap; gap: 20px; }
            .pgr-pillar { flex: 1 1 45%; border-right: none; padding: 0; }
            .pgr-focus-card { padding: 20px; }
        }

        /* ========================================
           RESEARCH ECOSYSTEM SECTION
           ======================================== */
        .pgr-ecosystem {
            position: relative;
            padding: 100px 60px;
            /* background: linear-gradient(180deg, var(--pgr-cream) 0%, #ffffff 50%, var(--pgr-warm-sand) 100%); */
            background: linear-gradient(180deg, #f8f7f5 0%, #ffffff 50%, #f5f4f2 100%);
            overflow: hidden;
        }
        .pgr-ecosystem-container {
            max-width: 1320px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        .pgr-ecosystem-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .pgr-ecosystem-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(201, 162, 39, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        .pgr-ecosystem-eyebrow svg {
            width: 18px;
            height: 18px;
            stroke: var(--pgr-gold);
        }
        .pgr-ecosystem-eyebrow span {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pgr-gold-muted);
        }
        .pgr-ecosystem-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: var(--pgr-navy);
            margin-bottom: 20px;
        }
        .pgr-ecosystem-title .accent {
            color: var(--pgr-gold);
            /* font-style: italic; */
        }
        .pgr-ecosystem-intro {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.7;
            color: var(--pgr-text-light);
            max-width: 800px;
            margin: 0 auto;
        }
        .pgr-ecosystem-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
        }
        .pgr-eco-card {
            position: relative;
            background: #ffffff;
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(18, 36, 61, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        .pgr-eco-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--pgr-burgundy), var(--pgr-gold-muted));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .pgr-eco-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(18, 36, 61, 0.12);
            border-color: rgba(107, 44, 63, 0.15);
        }
        .pgr-eco-card:hover::before {
            opacity: 1;
        }

        .pgr-eco-card.card-coe { grid-column: span 7; }
        .pgr-eco-card.card-themes { grid-column: span 5; }
        .pgr-eco-card.card-global { grid-column: span 12; }
        .pgr-eco-card.card-network { grid-column: span 6; }
        .pgr-eco-card.card-ethics { grid-column: span 6; }
        .pgr-eco-card-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }
        .pgr-eco-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .pgr-eco-icon svg { width: 24px; height: 24px; }
        .pgr-eco-icon.burgundy {
            background: linear-gradient(135deg, rgba(107, 44, 63, 0.12), rgba(107, 44, 63, 0.06));
            color: var(--pgr-burgundy);
        }
        .pgr-eco-icon.gold {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.08));
            color: var(--pgr-gold);
        }
        .pgr-eco-icon.navy {
            background: linear-gradient(135deg, rgba(18, 36, 61, 0.12), rgba(18, 36, 61, 0.06));
            color: var(--pgr-navy);
        }
        .pgr-eco-icon.teal {
            background: linear-gradient(135deg, rgba(74, 155, 171, 0.12), rgba(74, 155, 171, 0.06));
            color: #4a9bab;
        }
        .pgr-eco-badge {
            display: inline-block;
            background: var(--pgr-cream);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--pgr-text-light);
            margin-bottom: 8px;
        }
        .pgr-eco-card-title {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            color: var(--pgr-navy);
            margin: 0;
        }
        .pgr-eco-card-body {
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.7;
            color: var(--pgr-text-light);
            margin-bottom: 20px;
        }
        .pgr-eco-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .pgr-eco-feature {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--pgr-cream);
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--pgr-text);
        }
        .pgr-eco-feature svg {
            width: 16px;
            height: 16px;
            stroke: var(--pgr-gold);
        }
        .pgr-eco-stats {
            display: flex;
            gap: 24px;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }
        .pgr-eco-stat-value {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--pgr-navy);
        }
        .pgr-eco-stat-label {
            font-size: 13px;
            color: var(--pgr-text-light);
        }
        /* Global Network Card - Full Width Layout */
        .pgr-eco-card.card-global {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .pgr-eco-card.card-global .pgr-eco-card-header {
            margin-bottom: 16px;
        }
        .pgr-global-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .pgr-global-stat {
            text-align: center;
            padding: 24px 16px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.03));
            border-radius: 12px;
            border: 1px solid rgba(201, 162, 39, 0.1);
        }
        .pgr-global-stat-value {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--pgr-burgundy);
            line-height: 1;
            margin-bottom: 6px;
        }
        .pgr-global-stat-label {
            font-size: 13px;
            color: var(--pgr-text-light);
        }
        @media (max-width: 1024px) {
            .pgr-eco-card.card-global { grid-template-columns: 1fr; gap: 30px; }
            .pgr-global-stats { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .pgr-global-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
            .pgr-global-stat { padding: 16px 12px; }
            .pgr-global-stat-value { font-size: 1.5rem; }
        }
        .pgr-eco-callout {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.03));
            border-left: 3px solid var(--pgr-gold);
            padding: 16px 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        .pgr-eco-callout p {
            font-family: var(--font-heading);
            font-size: 15px;
            /* font-style: italic; */
            color: var(--pgr-text);
            margin: 0;
        }
        .pgr-eco-connections {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 16px;
        }
        .pgr-eco-connection {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .pgr-eco-connection-icon {
            width: 36px;
            height: 36px;
            background: var(--pgr-cream);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pgr-eco-connection-icon svg {
            width: 18px;
            height: 18px;
            stroke: var(--pgr-navy);
        }
        .pgr-eco-connection-text {
            font-size: 14px;
            font-weight: 500;
            color: var(--pgr-text);
        }
        @media (max-width: 1024px) {
            .pgr-ecosystem { padding: 80px 40px; }
            .pgr-eco-card.card-coe,
            .pgr-eco-card.card-themes,
            .pgr-eco-card.card-global,
            .pgr-eco-card.card-network,
            .pgr-eco-card.card-ethics { grid-column: span 12; }
        }
        @media (max-width: 768px) {
            .pgr-ecosystem { padding: 60px 24px; }
            .pgr-eco-stats { flex-wrap: wrap; gap: 16px; }
        }
        /* Ecosystem CTA */
        .pgr-eco-cta {
            margin-top: 60px;
            text-align: center;
            padding: 48px;
            background: linear-gradient(135deg, var(--pgr-navy) 0%, var(--pgr-slate) 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        .pgr-eco-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        .pgr-eco-cta-content {
            position: relative;
            z-index: 1;
        }
        .pgr-eco-cta-title {
            font-family: var(--font-heading);
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
        }
        .pgr-eco-cta-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }
        .pgr-eco-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .pgr-eco-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .pgr-eco-cta-btn.primary {
            background: var(--pgr-gold);
            color: var(--pgr-navy);
        }
        .pgr-eco-cta-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
        }
        .pgr-eco-cta-btn.secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        .pgr-eco-cta-btn.secondary:hover {
            border-color: var(--pgr-gold);
            color: var(--pgr-gold);
        }
        .pgr-eco-cta-btn svg {
            width: 18px;
            height: 18px;
        }
        @media (max-width: 768px) {
            .pgr-eco-cta { padding: 32px 24px; }
            .pgr-eco-cta-buttons { flex-direction: column; align-items: center; }
            .pgr-eco-cta-btn { width: 100%; max-width: 280px; justify-content: center; }
        }

        /* ========================================
           RESEARCH PATHWAYS SECTION
           ======================================== */
        .pgr-pathways {
            position: relative;
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--pgr-navy) 0%, var(--pgr-deep) 100%);
            overflow: hidden;
        }
        .pgr-pathways-container {
            max-width: 1320px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        .pgr-pathways-header {
            text-align: center;
            margin-bottom: 60px;
            color: #ffffff;
        }
        .pgr-pathways-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(201, 162, 39, 0.15);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        .pgr-pathways-eyebrow svg {
            width: 18px;
            height: 18px;
            stroke: var(--pgr-gold);
        }
        .pgr-pathways-eyebrow span {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pgr-gold);
        }
        .pgr-pathways-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }
        .pgr-pathways-title .accent {
            color: var(--pgr-gold);
            /* font-style: italic; */
        }
        .pgr-pathways-intro {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .pgr-eqf-strip {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .pgr-eqf-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            font-weight: 500;
        }
        .pgr-eqf-item svg {
            width: 18px;
            height: 18px;
            stroke: var(--pgr-gold);
        }
        .pgr-degree-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }
        .pgr-degree-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px 28px;
            position: relative;
            transition: all 0.4s ease;
        }
        .pgr-degree-card:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-8px);
            border-color: rgba(201, 162, 39, 0.3);
        }
        .pgr-degree-card.phd {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.02));
            border-color: rgba(201, 162, 39, 0.25);
        }
        .pgr-degree-featured {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--pgr-gold), #d4af37);
            color: var(--pgr-deep);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .pgr-degree-level {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        .pgr-degree-icon {
            width: 56px;
            height: 56px;
            background: rgba(201, 162, 39, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .pgr-degree-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--pgr-gold);
        }
        .pgr-degree-abbr {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }
        .pgr-degree-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--pgr-gold-muted);
            margin-bottom: 16px;
        }
        .pgr-degree-desc {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 20px;
        }
        .pgr-degree-meta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }
        .pgr-degree-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }
        .pgr-degree-meta-item svg {
            width: 16px;
            height: 16px;
            stroke: var(--pgr-gold-muted);
        }
        .pgr-degree-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--pgr-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .pgr-degree-link:hover {
            color: #d4af37;
        }
        .pgr-degree-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .pgr-degree-link:hover svg { transform: translateX(4px); }
        .pgr-pathways-note {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .pgr-pathways-note p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
        }
        .pgr-pathways-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            border: 1.5px solid var(--pgr-gold);
            color: var(--pgr-gold);
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .pgr-pathways-cta:hover {
            background: var(--pgr-gold);
            color: var(--pgr-deep);
        }
        .pgr-pathways-cta svg {
            width: 16px;
            height: 16px;
        }
        @media (max-width: 1024px) {
            .pgr-pathways { padding: 80px 40px; }
            .pgr-degree-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .pgr-pathways { padding: 60px 24px; }
            .pgr-degree-grid { grid-template-columns: 1fr; }
            .pgr-eqf-strip { gap: 20px; }
        }

        /* ========================================
           RESEARCHER JOURNEY SECTION
           ======================================== */
        .pgr-journey {
            padding: 100px 60px;
            background: linear-gradient(180deg, #ffffff 0%, var(--pgr-cream) 100%);
        }
        .pgr-journey-container {
            max-width: 1320px;
            margin: 0 auto;
        }
        .pgr-journey-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .pgr-journey-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(201, 162, 39, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        .pgr-journey-eyebrow svg {
            width: 18px;
            height: 18px;
            stroke: var(--pgr-gold);
        }
        .pgr-journey-eyebrow span {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pgr-gold-muted);
        }
        .pgr-journey-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: var(--pgr-navy);
            margin-bottom: 20px;
        }
        .pgr-journey-title .accent {
            color: var(--pgr-gold);
            /* font-style: italic; */
        }
        .pgr-journey-intro {
            font-size: 18px;
            line-height: 1.7;
            color: var(--pgr-text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        .pgr-phases-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .pgr-phase-card.phase-1 { --phase-color: #4a90a4; }
		.pgr-phase-card.phase-2 { --phase-color: var(--pgr-gold-muted); }
		.pgr-phase-card.phase-3 { --phase-color: var(--pgr-navy); }
		.pgr-phase-card.phase-4 { --phase-color: #5b7a5b; }

        .pgr-phase-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px 28px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            /* border-top: 4px solid var(--pgr-gold); */
            transition: all 0.4s ease;
        }
        .pgr-phase-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 4px;
			background: var(--phase-color, var(--pgr-navy));
			border-radius: 16px 16px 0 0;
		}
        .pgr-phase-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }
        .pgr-phase-number {
            width: 40px;
            height: 40px;
            /* background: linear-gradient(135deg, var(--pgr-gold), #d4af37); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 700;
            background: var(--phase-color, var(--pgr-navy));
            margin-bottom: 16px;
            color: #fff;
        }
      

        .pgr-phase-name {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--phase-color, var(--pgr-navy));
            margin-bottom: 8px;
        }
        .pgr-phase-title {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 600;
            color: var(--pgr-navy);
            margin-bottom: 20px;
        }
        .pgr-phase-steps {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .pgr-phase-steps li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--pgr-text-light);
            margin-bottom: 12px;
        }
        .pgr-phase-steps li svg {
            width: 16px;
            height: 16px;
            stroke: var(--pgr-gold);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .pgr-journey-cta {
            text-align: center;
            margin-top: 50px;
        }
        .pgr-journey-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--pgr-navy), var(--pgr-slate));
            color: #ffffff;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .pgr-journey-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(18, 36, 61, 0.3);
            color: #ffffff;
        }
        .pgr-journey-cta-btn svg {
            width: 18px;
            height: 18px;
        }
        @media (max-width: 1024px) {
            .pgr-journey { padding: 80px 40px; }
            .pgr-phases-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .pgr-journey { padding: 60px 24px; }
            .pgr-phases-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           RESEARCH GRANTS SECTION
           ======================================== */
        .pgr-grants {
            position: relative;
            padding: 100px 60px;
            background: linear-gradient(165deg, var(--pgr-burgundy) 0%, var(--pgr-burgundy-light) 50%, var(--pgr-navy) 100%);
            overflow: hidden;
        }
        .pgr-grants::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        .pgr-grants-container {
            max-width: 1320px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        .pgr-grants-header {
            text-align: center;
            margin-bottom: 60px;
            color: #ffffff;
        }
        .pgr-grants-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(201, 162, 39, 0.2);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        .pgr-grants-eyebrow svg {
            width: 18px;
            height: 18px;
            stroke: var(--pgr-gold);
        }
        .pgr-grants-eyebrow span {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pgr-gold);
        }
        .pgr-grants-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }
        .pgr-grants-title .accent {
            color: var(--pgr-gold);
            /* font-style: italic; */
        }
        .pgr-grants-intro {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.75);
            max-width: 800px;
            margin: 0 auto;
        }
        .pgr-grants-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-bottom: 50px;
        }
        .pgr-grant-card {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 16px;
            padding: 36px 32px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }
        .pgr-grant-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        .pgr-grant-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.06));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .pgr-grant-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--pgr-gold);
        }
        .pgr-grant-title {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 600;
            color: var(--pgr-navy);
            margin-bottom: 12px;
        }
        .pgr-grant-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--pgr-text-light);
            margin-bottom: 20px;
        }
        .pgr-grant-amount {
            display: inline-block;
            background: linear-gradient(135deg, var(--pgr-gold), #d4af37);
            color: var(--pgr-deep);
            padding: 8px 20px;
            border-radius: 30px;
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
        }
        .pgr-grants-cta {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .pgr-grants-cta p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        .pgr-grants-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--pgr-gold), #d4af37);
            color: var(--pgr-deep);
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .pgr-grants-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
            color: var(--pgr-deep);
        }
        .pgr-grants-cta-btn svg {
            width: 18px;
            height: 18px;
        }
        @media (max-width: 1024px) {
            .pgr-grants { padding: 80px 40px; }
            .pgr-grants-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .pgr-grants { padding: 60px 24px; }
            .pgr-grants-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SUPPORT & SUPERVISION SECTION
           ======================================== */
        .pgr-support {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--pgr-cream) 0%, #ffffff 100%);
        }
        .pgr-support-container {
            max-width: 1320px;
            margin: 0 auto;
        }
        .pgr-support-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .pgr-support-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(201, 162, 39, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        .pgr-support-eyebrow svg {
            width: 18px;
            height: 18px;
            stroke: var(--pgr-gold);
        }
        .pgr-support-eyebrow span {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pgr-gold-muted);
        }
        .pgr-support-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: var(--pgr-navy);
            margin-bottom: 20px;
        }
        .pgr-support-title .accent {
            color: var(--pgr-gold);
            /* font-style: italic; */
        }
        .pgr-support-intro {
            font-size: 18px;
            line-height: 1.7;
            color: var(--pgr-text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        .pgr-support-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .pgr-support-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px 28px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.4s ease;
        }
        .pgr-support-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }
        .pgr-support-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(201, 162, 39, 0.06));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .pgr-support-icon svg {
            width: 26px;
            height: 26px;
            stroke: var(--pgr-gold);
        }
        .pgr-support-card-title {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 600;
            color: var(--pgr-navy);
            margin-bottom: 12px;
        }
        .pgr-support-card-desc {
            font-size: 14px;
            line-height: 1.7;
            color: var(--pgr-text-light);
        }
        /* Support Stats Strip */
        .pgr-support-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
            padding: 40px;
            background: linear-gradient(135deg, var(--pgr-navy) 0%, var(--pgr-slate) 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        .pgr-support-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }
        .pgr-support-stat {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .pgr-support-stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(255, 255, 255, 0.15);
        }
        .pgr-support-stat-value {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--pgr-gold);
            line-height: 1;
            margin-bottom: 8px;
        }
        .pgr-support-stat-label {
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 0.5px;
        }
        @media (max-width: 1024px) {
            .pgr-support { padding: 80px 40px; }
            .pgr-support-grid { grid-template-columns: repeat(2, 1fr); }
            .pgr-support-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
            .pgr-support-stat:nth-child(2)::after { display: none; }
        }
        @media (max-width: 768px) {
            .pgr-support { padding: 60px 24px; }
            .pgr-support-grid { grid-template-columns: 1fr; }
            .pgr-support-stats { grid-template-columns: 1fr; padding: 32px 24px; }
            .pgr-support-stat::after { display: none; }
            .pgr-support-stat { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .pgr-support-stat:last-child { border-bottom: none; }
        }
        /* Support CTA */
        .pgr-support-cta {
            margin-top: 60px;
            text-align: center;
            padding: 48px;
            background: linear-gradient(135deg, rgba(107, 44, 63, 0.04), rgba(201, 162, 39, 0.04));
            border-radius: 20px;
            border: 1px solid rgba(107, 44, 63, 0.08);
        }
        .pgr-support-cta-title {
            font-family: var(--font-heading);
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 600;
            color: var(--pgr-navy);
            margin-bottom: 12px;
        }
        .pgr-support-cta-desc {
            font-size: 16px;
            color: var(--pgr-text-light);
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.7;
        }
        .pgr-support-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .pgr-support-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 50px;
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .pgr-support-cta-btn.primary {
            background: linear-gradient(135deg, var(--pgr-burgundy), var(--pgr-navy));
            color: #ffffff;
        }
        .pgr-support-cta-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(107, 44, 63, 0.3);
        }
        .pgr-support-cta-btn.secondary {
            background: #ffffff;
            color: var(--pgr-navy);
            border: 2px solid rgba(18, 36, 61, 0.15);
        }
        .pgr-support-cta-btn.secondary:hover {
            border-color: var(--pgr-gold);
            color: var(--pgr-burgundy);
        }
        .pgr-support-cta-btn svg {
            width: 18px;
            height: 18px;
        }
        @media (max-width: 768px) {
            .pgr-support-cta { padding: 32px 24px; }
            .pgr-support-cta-buttons { flex-direction: column; align-items: center; }
            .pgr-support-cta-btn { width: 100%; max-width: 280px; justify-content: center; }
        }