        /* ========================================
           HERO SECTION
           ======================================== */
        /* Hero Section - matching design-your-degree.html */
        .sa-hero {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            padding: 140px 60px 100px;
            overflow: hidden;
            /* background: linear-gradient(135deg, #1e3a5f 0%, #152a45 50%, #1e3a5f 100%); */
            background: linear-gradient(155deg, var(--er-deep) 0%, var(--er-navy) 40%, var(--er-teal) 100%);
        }
        .sa-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .sa-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(44, 82, 130, 0.3) 0%, transparent 60%);
            pointer-events: none;
        }
        .sa-hero-grid {
            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: 80px 80px;
            pointer-events: none;
        }
        .sa-hero-blocks {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        .sa-block {
            position: absolute;
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(2px);
        }
        .sa-block-1 {
            width: 180px;
            height: 120px;
            top: 15%;
            right: 10%;
            transform: rotate(-8deg);
            animation: saFloatBlock 6s ease-in-out infinite;
        }
        .sa-block-2 {
            width: 140px;
            height: 100px;
            top: 45%;
            right: 25%;
            transform: rotate(5deg);
            animation: saFloatBlock 8s ease-in-out infinite 1s;
            border-color: rgba(255, 255, 255, 0.08);
        }
        .sa-block-3 {
            width: 100px;
            height: 80px;
            top: 70%;
            right: 8%;
            transform: rotate(-3deg);
            animation: saFloatBlock 7s ease-in-out infinite 0.5s;
        }
        .sa-block-4 {
            width: 60px;
            height: 60px;
            top: 25%;
            right: 35%;
            transform: rotate(12deg);
            animation: saFloatBlock 5s ease-in-out infinite 2s;
            background: rgba(201, 162, 39, 0.08);
            border-color: rgba(201, 162, 39, 0.25);
        }
        @keyframes saFloatBlock {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        .sa-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .sa-hero-content {
            color: #ffffff;
        }
        .sa-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.25);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 28px;
        }
        .sa-hero-badge-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #c9a227 0%, #d4b545 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sa-hero-badge-icon svg {
            width: 14px;
            height: 14px;
            stroke: #1e3a5f;
        }
        .sa-hero-badge span {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pd-accent);
        }
        .sa-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            color: #ffffff;
        }
        .sa-hero-title .gold-text {
            color: var(--pd-accent);
        }
        .sa-hero-subtitle {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin-bottom: 36px;
            max-width: 520px;
        }
        .sa-hero-stats {
            display: flex;
            gap: 32px;
            margin-bottom: 36px;
        }
        .sa-hero-stat {
            text-align: left;
        }
        .sa-hero-stat-number {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 700;
            color: var(--pd-accent);
            line-height: 1;
            margin-bottom: 6px;
        }
        .sa-hero-stat-label {
            font-family: var(--font-body);
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .sa-hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .sa-hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .sa-hero-btn-primary {
            background: linear-gradient(135deg, #c9a227 0%, #d4b545 100%);
            color: #1e3a5f;
        }
        .sa-hero-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
        }
        .sa-hero-btn-secondary {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.25);
            color: #ffffff;
        }
        .sa-hero-btn-secondary:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.4);
        }
        .sa-hero-btn svg {
            width: 16px;
            height: 16px;
        }
        /* Right side visual */
        .sa-hero-visual {
            position: relative;
        }
        .sa-hero-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .sa-hero-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .sa-hero-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
            border-color: rgba(201, 162, 39, 0.3);
        }
        .sa-hero-card-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.1) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sa-hero-card-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--pd-accent);
        }
        .sa-hero-card-title {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 500;
            color: rgba(255,255,255,0.9);
            line-height: 1.4;
        }
        @media (max-width: 1024px) {
            .sa-hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .sa-hero-visual { order: -1; }
            .sa-hero-blocks { display: none; }
        }
        @media (max-width: 768px) {
            .sa-hero {
                padding: 120px 30px 80px;
                min-height: auto;
            }
            .sa-hero-stats { gap: 24px; }
            .sa-hero-stat-number { font-size: 28px; }
            .sa-hero-cards { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .sa-hero-stats { flex-wrap: wrap; gap: 16px; }
            .sa-hero-ctas { flex-direction: column; }
            .sa-hero-btn { justify-content: center; }
        }

        /* ========================================
           OVERVIEW SECTION
           ======================================== */
        .sa-overview-section {
            padding: 80px 40px;
            background: var(--er-warm-white);
        }
        .sa-overview-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .sa-overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .sa-overview-content { animation: fadeInUp 0.8s ease-out; }
        .sa-overview-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 162, 39, 0.12);
            border: 1px solid rgba(201, 162, 39, 0.25);
            padding: 8px 16px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            color: var(--pd-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .sa-overview-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--pd-primary);
            line-height: 1.3;
            margin-bottom: 16px;
        }
        .sa-overview-title span {
            color: var(--pd-accent);
        }
        .sa-overview-text {
            font-family: var(--font-body);
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 28px;
        }
        .sa-overview-features {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .sa-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 20px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .sa-feature-item:hover {
            transform: translateX(8px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        .sa-feature-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-primary-light) 100%);
            border-radius: 10px;
        }
        .sa-feature-icon svg {
            width: 22px;
            height: 22px;
            fill: var(--pd-accent);
        }
        .sa-feature-title {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            color: var(--pd-primary);
            margin-bottom: 4px;
        }
        .sa-feature-desc {
            font-family: var(--font-body);
            font-size: 13px;
            color: #64748b;
            line-height: 1.5;
        }
        .sa-overview-visual {
            position: relative;
            animation: fadeInUp 0.8s ease 0.3s both;
        }
        .sa-overview-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        }
        .sa-overview-image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        .sa-overview-floating-card {
            position: absolute;
            bottom: -25px;
            right: -25px;
            background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-primary-light) 100%);
            padding: 24px 32px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(30, 58, 95, 0.3);
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .sa-overview-floating-card .stat-number {
            font-family: var(--font-heading);
            font-size: 38px;
            font-weight: 800;
            color: var(--pd-accent);
            line-height: 1;
            margin-bottom: 4px;
        }
        .sa-overview-floating-card .stat-label {
            font-family: var(--font-body);
            font-size: 13px;
            color: rgba(255,255,255,0.85);
            font-weight: 500;
        }

        /* ========================================
           STUDY AREAS GRID SECTION
           ======================================== */
        .sa-grid-section {
            padding: 80px 40px;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        }
        .sa-grid-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .sa-grid-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .sa-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(30, 58, 95, 0.08);
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            color: var(--pd-primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .sa-section-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--pd-accent);
        }
        .sa-section-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 12px;
        }
        .sa-section-title .gold-text {
            color: var(--pd-accent);
        }
        .sa-section-subtitle {
            font-family: var(--font-body);
            font-size: 1.05rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }
        .sa-quick-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .sa-quick-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            color: var(--pd-primary);
            text-decoration: none;
            padding: 10px 20px;
            background: #fff;
            border-radius: 50px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }
        .sa-quick-link:hover {
            color: var(--pd-accent);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .sa-quick-link svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .sa-quick-link:hover svg {
            transform: translateX(4px);
        }
        .sa-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .sa-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 22px;
            background: #fff;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }
        .sa-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--pd-accent);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        .sa-card:hover {
            border-color: var(--pd-primary);
            box-shadow: 0 8px 25px rgba(30, 58, 95, 0.12);
            transform: translateY(-3px);
        }
        .sa-card:hover::before {
            transform: scaleY(1);
        }
        .sa-card-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(30, 58, 95, 0.04) 100%);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .sa-card:hover .sa-card-icon {
            background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-primary-light) 100%);
        }
        .sa-card-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--pd-primary);
            stroke-width: 1.5;
            fill: none;
            transition: stroke 0.3s ease;
        }
        .sa-card:hover .sa-card-icon svg {
            stroke: var(--pd-accent);
        }
        .sa-card-name {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: var(--pd-primary);
            line-height: 1.4;
            flex: 1;
        }
        .sa-card-arrow {
            width: 18px;
            height: 18px;
            stroke: #94a3b8;
            opacity: 0;
            transform: translateX(-8px);
            transition: all 0.3s ease;
        }
        .sa-card:hover .sa-card-arrow {
            opacity: 1;
            transform: translateX(0);
            stroke: var(--pd-accent);
        }

        /* ========================================
           STUDY PATHWAYS SECTION
           ======================================== */
        .sa-pathways-section {
            padding: 80px 40px;
            background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 100%);
        }
        .sa-pathways-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .sa-pathways-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .sa-pathways-header h2 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 12px;
        }
        .sa-pathways-header h2 .gold-text { color: var(--pd-accent); }
        .sa-pathways-header p {
            font-family: var(--font-body);
            font-size: 1.05rem;
            color: #64748b;
        }
        .sa-pathways-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .sa-pathway-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }
        .sa-pathway-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        }
        .sa-pathway-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .sa-pathway-card:hover::after { transform: scaleX(1); }
        .sa-pathway-card.undergraduate::after { background: #059669; }
        .sa-pathway-card.postgraduate::after { background: #2563eb; }
        .sa-pathway-card.doctoral::after { background: #7c3aed; }
        .sa-pathway-card.upskill::after { background: #f59e0b; }
        .sa-pathway-image {
            position: relative;
            height: 160px;
            overflow: hidden;
        }
        .sa-pathway-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .sa-pathway-card:hover .sa-pathway-image img { transform: scale(1.08); }
        .sa-pathway-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
        }
        .sa-pathway-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 5px 12px;
            border-radius: 20px;
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #fff;
        }
        .sa-pathway-card.undergraduate .sa-pathway-badge { background: #059669; }
        .sa-pathway-card.postgraduate .sa-pathway-badge { background: #2563eb; }
        .sa-pathway-card.doctoral .sa-pathway-badge { background: #7c3aed; }
        .sa-pathway-card.upskill .sa-pathway-badge { background: #f59e0b; }
        .sa-pathway-content { padding: 20px; }
        .sa-pathway-content h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 10px;
        }
        .sa-pathway-content h3 svg { width: 22px; height: 22px; }
        .sa-pathway-card.undergraduate .sa-pathway-content h3 svg { stroke: #059669; }
        .sa-pathway-card.postgraduate .sa-pathway-content h3 svg { stroke: #2563eb; }
        .sa-pathway-card.doctoral .sa-pathway-content h3 svg { stroke: #7c3aed; }
        .sa-pathway-card.upskill .sa-pathway-content h3 svg { stroke: #f59e0b; }
        .sa-pathway-content p {
            font-family: var(--font-body);
            font-size: 13px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .sa-pathway-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .sa-pathway-card.undergraduate .sa-pathway-link { color: #059669; }
        .sa-pathway-card.postgraduate .sa-pathway-link { color: #2563eb; }
        .sa-pathway-card.doctoral .sa-pathway-link { color: #7c3aed; }
        .sa-pathway-card.upskill .sa-pathway-link { color: #f59e0b; }
        .sa-pathway-link svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
        .sa-pathway-link:hover svg { transform: translateX(4px); }

        /* Responsive */
        @media (max-width: 1100px) {
            .sa-cards-grid { grid-template-columns: repeat(3, 1fr); }
            .sa-pathways-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 992px) {
            .sa-overview-grid { grid-template-columns: 1fr; gap: 40px; }
            .sa-overview-visual { order: -1; }
            .sa-overview-image-wrapper img { height: 350px; }
            .sa-overview-floating-card { right: 20px; bottom: -20px; }
        }
        @media (max-width: 800px) {
            .sa-cards-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .sa-overview-section, .sa-grid-section, .sa-pathways-section { padding: 60px 20px; }
            .sa-cards-grid { grid-template-columns: 1fr; }
            .sa-pathways-grid { grid-template-columns: 1fr; }
            .sa-quick-links { gap: 12px; }
            .sa-quick-link { padding: 8px 16px; font-size: 13px; }
        }
    