        /* ========================================
           PRE-UNIVERSITY PAGE VARIABLES
           ======================================== */
        :root {
            --pu-primary: #1e3a5f;
            --pu-primary-light: #2c5282;
            --pu-accent: #c9a227;
            --pu-accent-light: #d4b545;
            --pu-gradient: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            --pu-gradient-gold: linear-gradient(135deg, #c9a227 0%, #d4b545 100%);
            --pu-glass: rgba(255, 255, 255, 0.1);
            --pu-glass-border: rgba(255, 255, 255, 0.2);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* ========================================
           HERO SECTION
           ======================================== */
        .pu-hero {
            position: relative;
            min-height: 550px;
            display: flex;
            align-items: center;
            padding: 140px 40px 80px;
            overflow: hidden;
            background: var(--pu-gradient);
        }

        .pu-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .pu-hero-content { color: #ffffff; }

        .pu-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pu-glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--pu-glass-border);
            padding: 12px 24px;
            border-radius: 30px;
            margin-bottom: 25px;
            animation: fadeInUp 0.6s ease;
        }

        .pu-hero-badge .badge-icon {
            width: 24px;
            height: 24px;
            background: var(--pu-gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pu-hero-badge span {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--pu-accent-light);
        }

        .pu-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(42px, 5vw, 72px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: fadeInUp 0.6s ease 0.1s both;
            color: #ffffff;
        }

        .pu-hero-title span {
            background: var(--pu-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pu-hero-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            max-width: 580px;
            animation: fadeInUp 0.6s ease 0.2s both;
        }

        .pu-hero-tagline {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 600;
            font-style: italic;
            color: var(--pu-accent-light);
            margin-bottom: 35px;
            animation: fadeInUp 0.6s ease 0.25s both;
        }

        .pu-hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease 0.3s both;
        }

        .pu-btn-primary {
            font-family: var(--font-body);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pu-gradient-gold);
            color: #1a1a2e;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
        }

        .pu-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
            color: #1a1a2e;
        }

        .pu-btn-secondary {
            font-family: var(--font-body);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #ffffff;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .pu-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            color: #ffffff;
        }

        /* Hero Image Section */
        .pu-hero-image {
            position: relative;
            animation: fadeInRight 0.8s ease 0.4s both;
        }

        .pu-hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }

        .pu-hero-image-wrapper img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .pu-hero-floating-card {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: #ffffff;
            padding: 25px 30px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            animation: float 3s ease-in-out infinite;
        }

        .pu-hero-floating-card .stat-number {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 800;
            color: var(--pu-primary);
            line-height: 1;
            margin-bottom: 5px;
        }

        .pu-hero-floating-card .stat-label {
            font-family: var(--font-body);
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Hero Responsive */
        @media (max-width: 992px) {
            .pu-hero-container { grid-template-columns: 1fr; gap: 40px; }
            .pu-hero-image { order: -1; }
        }

        @media (max-width: 768px) {
            .pu-hero { padding: 120px 25px 60px; min-height: auto; }
            .pu-hero-buttons { flex-direction: column; }
            .pu-hero-floating-card { bottom: -20px; left: 20px; padding: 18px 22px; }
        }

        /* ========================================
           STATS BAR
           ======================================== */
        .pu-stats-bar {
            background: #e8eced;
            padding: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .pu-stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
        }

        .pu-stat-item {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 35px 30px;
            border-right: 1px solid #ddd;
            transition: all 0.3s ease;
        }

        .pu-stat-item:last-child { border-right: none; }

        .pu-stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(44, 82, 130, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pu-primary);
        }

        .pu-stat-icon svg { width: 24px; height: 24px; }

        .pu-stat-content { text-align: left; }

        .pu-stat-number {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 800;
            color: var(--pu-primary);
            line-height: 1;
            margin-bottom: 5px;
        }

        .pu-stat-label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }

        @media (max-width: 992px) {
            .pu-stats-container { flex-wrap: wrap; }
            .pu-stat-item { flex: 1 1 50%; border-bottom: 1px solid #ddd; }
            .pu-stat-item:nth-child(2) { border-right: none; }
        }

        @media (max-width: 576px) {
            .pu-stat-item { flex: 1 1 100%; border-right: none; }
        }

        /* ========================================
           PROMISE SECTION
           ======================================== */
        .pu-promise-section {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        .pu-promise-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(30, 58, 95, 0.03) 0%, transparent 70%);
            border-radius: 50%;
        }

        .pu-promise-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .pu-promise-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pu-promise-tag {
            display: inline-block;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(44, 82, 130, 0.1));
            color: var(--pu-primary);
            padding: 10px 24px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .pu-promise-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            color: var(--pu-primary);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .pu-promise-title span {
            background: var(--pu-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pu-promise-intro {
            max-width: 800px;
            margin: 0 auto 20px;
            font-size: 18px;
            line-height: 1.8;
            color: #555;
        }

        .pu-promise-intro strong {
            color: var(--pu-primary);
            font-weight: 600;
        }

        .pu-promise-highlight {
            max-width: 700px;
            margin: 0 auto;
            font-size: 20px;
            font-weight: 600;
            color: var(--pu-primary);
            font-style: italic;
            padding: 20px 30px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(212, 181, 69, 0.05));
            border-left: 4px solid var(--pu-accent);
            border-radius: 0 12px 12px 0;
        }

        /* Promise Cards Grid */
        .pu-promise-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .pu-promise-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 35px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .pu-promise-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--pu-gradient);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .pu-promise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        }

        .pu-promise-card:hover::before { transform: scaleX(1); }

        .pu-promise-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(44, 82, 130, 0.12));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .pu-promise-icon svg {
            width: 36px;
            height: 36px;
            color: var(--pu-primary);
            transition: all 0.4s ease;
        }

        .pu-promise-card:hover .pu-promise-icon {
            background: var(--pu-gradient);
            transform: scale(1.1) rotate(5deg);
        }

        .pu-promise-card:hover .pu-promise-icon svg { color: #ffffff; }

        .pu-promise-card-title {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--pu-primary);
            margin-bottom: 15px;
        }

        .pu-promise-card-desc {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
        }

        .pu-promise-card-highlight {
            display: inline-block;
            margin-top: 20px;
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(212, 181, 69, 0.1));
            color: var(--pu-accent);
            font-size: 13px;
            font-weight: 600;
            border-radius: 20px;
        }

        @media (max-width: 992px) {
            .pu-promise-grid { grid-template-columns: repeat(2, 1fr); }
            .pu-promise-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
        }

        @media (max-width: 768px) {
            .pu-promise-section { padding: 70px 25px; }
            .pu-promise-grid { grid-template-columns: 1fr; gap: 25px; }
            .pu-promise-card:last-child { grid-column: span 1; max-width: none; }
        }

        /* ========================================
           PATHWAY SECTION
           ======================================== */
        .pu-pathway-section {
            background: #ffffff;
            padding: 100px 40px;
            position: relative;
        }

        .pu-pathway-container { max-width: 1300px; margin: 0 auto; }

        .pu-pathway-header { text-align: center; margin-bottom: 60px; }

        .pu-pathway-tag {
            display: inline-block;
            background: var(--pu-gradient);
            color: #ffffff;
            padding: 10px 24px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .pu-pathway-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            color: var(--pu-primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .pu-pathway-intro {
            max-width: 750px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.7;
            color: #555;
        }

        /* Tab Navigation */
        .pu-pathway-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .pu-pathway-tab {
            padding: 16px 32px;
            background: #f5f7fa;
            border: 2px solid transparent;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pu-pathway-tab:hover { background: #eef1f5; color: var(--pu-primary); }

        .pu-pathway-tab.active {
            background: var(--pu-gradient);
            color: #ffffff;
            border-color: var(--pu-primary);
        }

        .pu-pathway-tab svg { width: 20px; height: 20px; }

        /* Tab Content */
        .pu-pathway-content { display: none; animation: fadeInUp 0.5s ease; }
        .pu-pathway-content.active { display: block; }

        /* Foundations Section (8-10) */
        .pu-foundations-wrapper {
            background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
            border-radius: 24px;
            padding: 50px;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .pu-foundations-header { text-align: center; margin-bottom: 40px; }

        .pu-foundations-subtitle {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--pu-primary);
            margin-bottom: 10px;
        }

        .pu-foundations-tagline { font-size: 16px; color: #666; }

        .pu-foundations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .pu-foundation-item {
            background: #ffffff;
            padding: 28px 25px;
            border-radius: 16px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.04);
            min-height: 100px;
        }

        .pu-foundation-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.08);
        }

        .pu-foundation-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(44, 82, 130, 0.15));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pu-primary);
        }

        .pu-foundation-icon svg { width: 24px; height: 24px; }

        .pu-foundation-text {
            font-size: 15px;
            line-height: 1.6;
            color: #444;
            font-weight: 500;
        }

        /* Pathways Section (11-12) */
        .pu-specialization-wrapper {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            border-radius: 24px;
            padding: 50px;
        }

        .pu-specialization-header { text-align: center; margin-bottom: 20px; }

        .pu-specialization-subtitle {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .pu-specialization-intro {
            font-size: 17px;
            color: rgba(255,255,255,0.85);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .pu-pathway-cards {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .pu-pathway-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 20px;
            padding: 30px 22px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .pu-pathway-card:hover {
            background: rgba(255,255,255,0.18);
            transform: translateY(-8px);
            border-color: var(--pu-accent);
        }

        .pu-pathway-card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--pu-accent), var(--pu-accent-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.4s ease;
        }

        .pu-pathway-card:hover .pu-pathway-card-icon { transform: scale(1.1) rotate(5deg); }

        .pu-pathway-card-icon svg { width: 32px; height: 32px; color: #1e3a5f; }

        .pu-pathway-card-title {
            font-family: var(--font-heading);
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .pu-pathway-card-features { list-style: none; padding: 0; margin: 0; }

        .pu-pathway-card-features li {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .pu-pathway-card-features li svg { width: 14px; height: 14px; color: var(--pu-accent); }

        /* Closing Line */
        .pu-pathway-closing {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            background: rgba(255,255,255,0.08);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .pu-pathway-closing p {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            font-style: italic;
            line-height: 1.6;
            margin: 0;
        }

        .pu-pathway-closing span { color: var(--pu-accent-light); }

        @media (max-width: 1200px) { .pu-pathway-cards { grid-template-columns: repeat(3, 1fr); } }

        @media (max-width: 992px) {
            .pu-pathway-cards { grid-template-columns: repeat(2, 1fr); }
            .pu-foundations-wrapper, .pu-specialization-wrapper { padding: 35px 25px; }
            .pu-foundations-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .pu-pathway-section { padding: 70px 25px; }
            .pu-pathway-cards { grid-template-columns: 1fr; gap: 15px; }
            .pu-pathway-tab { padding: 12px 20px; font-size: 14px; }
            .pu-foundations-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           UG BRIDGE SECTION
           ======================================== */
        .pu-bridge-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2c5282 100%);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        .pu-bridge-section::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;
        }

        .pu-bridge-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

        .pu-bridge-header { text-align: center; margin-bottom: 50px; }

        .pu-bridge-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--pu-accent), var(--pu-accent-light));
            color: #1e3a5f;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
        }

        .pu-bridge-badge svg { width: 20px; height: 20px; }

        .pu-bridge-title {
            font-family: var(--font-heading);
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 25px;
            line-height: 1.25;
        }

        .pu-bridge-title span { color: var(--pu-accent-light); }

        .pu-bridge-intro {
            max-width: 850px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        /* Who Is It For Section */
        .pu-bridge-audience {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 45px;
            margin-bottom: 50px;
        }

        .pu-bridge-audience-title {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 30px;
            text-align: center;
        }

        .pu-bridge-audience-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 18px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pu-bridge-audience-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 18px 22px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .pu-bridge-audience-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .pu-bridge-audience-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: linear-gradient(135deg, #10b981, #34d399);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pu-bridge-audience-icon svg { width: 16px; height: 16px; color: #ffffff; }

        .pu-bridge-audience-text {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Track Cards */
        .pu-bridge-tracks-title {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            margin-bottom: 35px;
        }

        .pu-bridge-tracks {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .pu-bridge-track-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 35px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pu-bridge-track-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 5px;
            background: var(--pu-gradient);
        }

        .pu-bridge-track-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .pu-bridge-track-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(44, 82, 130, 0.15));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .pu-bridge-track-card:hover .pu-bridge-track-icon {
            background: var(--pu-gradient);
            transform: scale(1.1);
        }

        .pu-bridge-track-icon svg {
            width: 38px;
            height: 38px;
            color: var(--pu-primary);
            transition: all 0.4s ease;
        }

        .pu-bridge-track-card:hover .pu-bridge-track-icon svg { color: #ffffff; }

        .pu-bridge-track-title {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--pu-primary);
            margin-bottom: 18px;
        }

        .pu-bridge-track-desc {
            font-size: 14px;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
        }

        .pu-bridge-track-opens {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(44, 82, 130, 0.05));
            border-radius: 12px;
            padding: 15px;
        }

        .pu-bridge-track-opens strong {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--pu-primary);
            margin-bottom: 8px;
        }

        .pu-bridge-track-opens span { font-size: 13px; color: #666; line-height: 1.5; }

        /* Outcome Box */
        .pu-bridge-outcome {
            background: linear-gradient(135deg, var(--pu-accent), var(--pu-accent-light));
            border-radius: 20px;
            padding: 45px 50px;
            text-align: center;
            margin-bottom: 40px;
        }

        .pu-bridge-outcome-text {
            font-size: 20px;
            font-weight: 600;
            color: #1e3a5f;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .pu-bridge-outcome-sub {
            font-size: 17px;
            font-style: italic;
            color: rgba(30, 58, 95, 0.8);
        }

        /* CTA Buttons */
        .pu-bridge-cta {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .pu-bridge-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 35px;
            background: #ffffff;
            color: var(--pu-primary);
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .pu-bridge-btn-primary:hover {
            background: var(--pu-primary);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
        }

        .pu-bridge-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 35px;
            background: transparent;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .pu-bridge-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
            transform: translateY(-3px);
        }

        @media (max-width: 992px) {
            .pu-bridge-tracks { grid-template-columns: repeat(2, 1fr); }
            .pu-bridge-track-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
        }

        @media (max-width: 768px) {
            .pu-bridge-section { padding: 70px 25px; }
            .pu-bridge-tracks { grid-template-columns: 1fr; }
            .pu-bridge-track-card:last-child { grid-column: span 1; max-width: none; }
            .pu-bridge-audience { padding: 30px 25px; }
            .pu-bridge-audience-list { grid-template-columns: 1fr; }
            .pu-bridge-outcome { padding: 35px 25px; }
            .pu-bridge-cta { flex-direction: column; align-items: center; }
        }

        /* ========================================
           BENEFITS SECTION
           ======================================== */
        .pu-benefits-section {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        .pu-benefits-section::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .pu-benefits-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }

        .pu-benefits-header { text-align: center; margin-bottom: 60px; }

        .pu-benefits-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.1));
            color: #dc2626;
            padding: 10px 24px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .pu-benefits-tag svg { width: 18px; height: 18px; }

        .pu-benefits-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            color: var(--pu-primary);
            line-height: 1.2;
        }

        .pu-benefits-title span {
            background: linear-gradient(135deg, #dc2626, #f87171);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Benefits Grid */
        .pu-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .pu-benefit-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .pu-benefit-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            background: var(--pu-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .pu-benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .pu-benefit-card:hover::before { transform: scaleX(1); }

        .pu-benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(44, 82, 130, 0.12));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .pu-benefit-icon svg {
            width: 32px;
            height: 32px;
            color: var(--pu-primary);
            transition: all 0.4s ease;
        }

        .pu-benefit-card:hover .pu-benefit-icon {
            background: var(--pu-gradient);
            transform: scale(1.1) rotate(5deg);
        }

        .pu-benefit-card:hover .pu-benefit-icon svg { color: #ffffff; }

        .pu-benefit-title {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: var(--pu-primary);
            margin-bottom: 12px;
        }

        .pu-benefit-desc { font-size: 15px; line-height: 1.7; color: #666; }

        @media (max-width: 992px) { .pu-benefits-grid { grid-template-columns: repeat(2, 1fr); } }

        @media (max-width: 768px) {
            .pu-benefits-section { padding: 70px 25px; }
            .pu-benefits-grid { grid-template-columns: 1fr; gap: 20px; }
            .pu-benefit-card { padding: 30px 25px; }
        }

        /* ========================================
           CTA SECTION
           ======================================== */
        .pu-cta-section {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #1e3a5f 100%);
            padding: 100px 40px;
            position: relative;
            overflow: hidden;
        }

        .pu-cta-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            pointer-events: none;
        }

        .pu-cta-container { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }

        .pu-cta-header { text-align: center; margin-bottom: 50px; }

        .pu-cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .pu-cta-badge svg { width: 20px; height: 20px; }

        .pu-cta-title {
            font-family: var(--font-heading);
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .pu-cta-title span { color: var(--pu-accent-light); }

        .pu-cta-subtitle {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Audience List */
        .pu-cta-audience {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 24px;
            padding: 40px 45px;
            margin-bottom: 50px;
        }

        .pu-cta-audience-title {
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 25px;
            text-align: center;
        }

        .pu-cta-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }

        .pu-cta-list-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .pu-cta-list-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateX(8px);
        }

        .pu-cta-check {
            width: 26px;
            height: 26px;
            min-width: 26px;
            background: linear-gradient(135deg, var(--pu-accent), var(--pu-accent-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pu-cta-check svg { width: 14px; height: 14px; color: #1e3a5f; }

        .pu-cta-list-text { font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.9); }

        /* CTA Buttons */
        .pu-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .pu-cta-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            background: linear-gradient(135deg, var(--pu-accent), var(--pu-accent-light));
            color: #1e3a5f;
            font-size: 17px;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(201, 162, 39, 0.3);
        }

        .pu-cta-btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
        }

        .pu-cta-btn-primary svg { width: 22px; height: 22px; }

        .pu-cta-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            background: #ffffff;
            color: var(--pu-primary);
            font-size: 17px;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .pu-cta-btn-secondary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            background: #f8fafc;
        }

        .pu-cta-btn-secondary svg { width: 22px; height: 22px; }

        /* Contact Link */
        .pu-cta-contact { text-align: center; }
        .pu-cta-contact p { font-size: 15px; color: rgba(255, 255, 255, 0.7); }
        .pu-cta-contact a { color: var(--pu-accent-light); text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
        .pu-cta-contact a:hover { color: #ffffff; text-decoration: underline; }

        @media (max-width: 768px) {
            .pu-cta-section { padding: 70px 25px; }
            .pu-cta-audience { padding: 30px 25px; }
            .pu-cta-buttons { flex-direction: column; align-items: center; }
            .pu-cta-btn-primary, .pu-cta-btn-secondary { width: 100%; max-width: 320px; justify-content: center; padding: 18px 30px; }
        }
