        /* ========================================
           HERO SECTION - Design Your Degree
           ======================================== */
        .dyd-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%);
        }
        .dyd-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;
        }
        .dyd-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;
        }
        /* Subtle grid pattern */
        .dyd-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;
        }
        /* Floating blocks decoration */
        .dyd-hero-blocks {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        .dyd-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);
        }
        .dyd-block-1 {
            width: 180px;
            height: 120px;
            top: 15%;
            right: 10%;
            transform: rotate(-8deg);
            animation: floatBlock 6s ease-in-out infinite;
        }
        .dyd-block-2 {
            width: 140px;
            height: 100px;
            top: 45%;
            right: 25%;
            transform: rotate(5deg);
            animation: floatBlock 8s ease-in-out infinite 1s;
            border-color: rgba(255, 255, 255, 0.08);
        }
        .dyd-block-3 {
            width: 100px;
            height: 80px;
            top: 70%;
            right: 8%;
            transform: rotate(-3deg);
            animation: floatBlock 7s ease-in-out infinite 0.5s;
        }
        .dyd-block-4 {
            width: 60px;
            height: 60px;
            top: 25%;
            right: 35%;
            transform: rotate(12deg);
            animation: floatBlock 5s ease-in-out infinite 2s;
            background: rgba(201, 162, 39, 0.08);
            border-color: rgba(201, 162, 39, 0.25);
        }
        @keyframes floatBlock {
            0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
            50% { transform: translateY(-15px) rotate(var(--rotation, 0deg)); }
        }
        /* Hero container */
        .dyd-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;
        }
        /* Left content */
        .dyd-hero-content {
            color: #ffffff;
        }
        .dyd-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;
        }
        .dyd-hero-badge-icon {
            width: 28px;
            height: 28px;
            background: var(--pd-gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dyd-hero-badge-icon svg {
            width: 14px;
            height: 14px;
            stroke: #1e3a5f;
        }
        .dyd-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);
        }
        .dyd-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;
        }
        .dyd-hero-title span {
            background: var(--pd-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .dyd-hero-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 36px;
            max-width: 520px;
        }
        .dyd-hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }
        .dyd-hero-feature {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 18px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }
        .dyd-hero-feature svg {
            width: 18px;
            height: 18px;
            stroke: var(--pd-accent);
        }
        .dyd-hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .dyd-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pd-gradient-gold);
            color: #1e3a5f;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
        }
        .dyd-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
            color: #1e3a5f;
        }
        .dyd-btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        .dyd-btn-primary:hover svg {
            transform: translateX(4px);
        }
        .dyd-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #ffffff;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            padding: 16px 32px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .dyd-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
            color: #ffffff;
        }
        /* Right side: Formula Style Preview */
        .dyd-hero-preview {
            position: relative;
        }
        .dyd-formula-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        .dyd-formula-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--pd-gradient-gold);
        }
        /* Formula equation */
        .dyd-formula-equation {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
        .dyd-formula-item {
            text-align: center;
            padding: 16px 12px;
            position: relative;
        }
        .dyd-formula-item-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 12px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s ease;
        }
        .dyd-formula-item:hover .dyd-formula-item-icon {
            transform: translateY(-4px);
        }
        .dyd-formula-item-icon.degree {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
            border: 1px solid rgba(59, 130, 246, 0.4);
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
        }
        .dyd-formula-item-icon.major {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
            border: 1px solid rgba(16, 185, 129, 0.4);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
        }
        .dyd-formula-item-icon.minor {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
            border: 1px solid rgba(168, 85, 247, 0.4);
            box-shadow: 0 8px 24px rgba(168, 85, 247, 0.2);
        }
        .dyd-formula-item-icon svg {
            width: 26px;
            height: 26px;
        }
        .dyd-formula-item-icon.degree svg { stroke: #3b82f6; }
        .dyd-formula-item-icon.major svg { stroke: #10b981; }
        .dyd-formula-item-icon.minor svg { stroke: #a855f7; }
        .dyd-formula-item-value {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 4px;
            white-space: nowrap;
        }
        .dyd-formula-item-label {
            font-family: var(--font-body);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .dyd-formula-item-label.degree { color: #3b82f6; }
        .dyd-formula-item-label.major { color: #10b981; }
        .dyd-formula-item-label.minor { color: #a855f7; }
        /* Plus signs */
        .dyd-formula-plus {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.3);
            margin: 0 4px;
        }
        /* Equals and result */
        .dyd-formula-equals {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 24px 0;
        }
        .dyd-formula-equals-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.5) 50%, transparent 100%);
        }
        .dyd-formula-equals-icon {
            width: 40px;
            height: 40px;
            background: var(--pd-gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 20px;
            box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
        }
        .dyd-formula-equals-icon svg {
            width: 20px;
            height: 20px;
            stroke: #1e3a5f;
        }
        /* Result section */
        .dyd-formula-result {
            text-align: center;
            padding: 24px;
            background: rgba(201, 162, 39, 0.08);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 16px;
            position: relative;
        }
        .dyd-formula-result-label {
            font-family: var(--font-body);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 8px;
        }
        .dyd-formula-result-title {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }
        .dyd-formula-result-title span {
            background: var(--pd-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .dyd-formula-result-stats {
            display: flex;
            justify-content: center;
            gap: 32px;
        }
        .dyd-formula-stat {
            text-align: center;
        }
        .dyd-formula-stat-value {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: var(--pd-accent);
        }
        .dyd-formula-stat-label {
            font-family: var(--font-body);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.5);
        }
        /* Floating decorative elements */
        .dyd-formula-sparkle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--pd-accent);
            border-radius: 50%;
            opacity: 0.6;
            animation: sparkle 3s ease-in-out infinite;
        }
        .dyd-formula-sparkle:nth-child(1) { top: 20%; right: 15%; animation-delay: 0s; }
        .dyd-formula-sparkle:nth-child(2) { top: 60%; right: 10%; animation-delay: 1s; }
        .dyd-formula-sparkle:nth-child(3) { bottom: 25%; left: 12%; animation-delay: 0.5s; }
        @keyframes sparkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.3); }
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .dyd-hero {
                padding: 120px 40px 80px;
            }
            .dyd-hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .dyd-formula-card {
                max-width: 500px;
                margin: 0 auto;
            }
            .dyd-hero-blocks {
                display: none;
            }
            .dyd-hero-preview {
                max-width: 500px;
            }
        }
        @media (max-width: 768px) {
            .dyd-hero {
                padding: 120px 24px 60px;
                min-height: auto;
            }
            .dyd-hero-title {
                font-size: 32px;
            }
            .dyd-hero-subtitle {
                font-size: 16px;
            }
            .dyd-hero-features {
                flex-direction: column;
            }
            .dyd-hero-cta {
                flex-direction: column;
            }
            .dyd-btn-primary, .dyd-btn-secondary {
                justify-content: center;
            }
        }

        /* ========================================
           SECTION: How BU Degrees Work
           ======================================== */
        .dyd-how-section {
            padding: 50px 100px 60px;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
            background: var(--er-warm-white);
        }
        .dyd-how-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
        }
        .dyd-how-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        /* Section Header */
        .dyd-how-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        .dyd-how-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(30, 58, 95, 0.08);
            border: 1px solid rgba(30, 58, 95, 0.15);
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        .dyd-how-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--pd-accent);
        }
        .dyd-how-badge span {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pd-primary);
        }
        .dyd-how-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .dyd-how-title span {
            background: var(--pd-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .dyd-how-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            color: #64748b;
            line-height: 1.7;
        }
        /* Main Content: Two Column */
        .dyd-how-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }
        /* Left: ECTS Explained */
        .dyd-ects-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        .dyd-ects-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--pd-gradient-gold);
        }
        .dyd-ects-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }
        .dyd-ects-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
            border: 1px solid rgba(201, 162, 39, 0.3);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floatIcon 3s ease-in-out infinite;
        }
        @keyframes floatIcon {
			0%, 100% {
				transform: translateY(0);
			}
			50% {
				transform: translateY(-6px);
			}
		}
        .dyd-ects-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--pd-accent);
        }
        .dyd-ects-title {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0;
        }
        .dyd-ects-desc {
            font-family: var(--font-body);
            font-size: 15px;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 28px;
        }
        /* ECTS Visual */
        .dyd-ects-visual {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            border-radius: 16px;
            padding: 28px;
            margin-bottom: 28px;
        }
        .dyd-ects-equation {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .dyd-ects-num {
            text-align: center;
        }
        .dyd-ects-num-value {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            color: var(--pd-accent);
            line-height: 1;
        }
        .dyd-ects-num-label {
            font-family: var(--font-body);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 6px;
        }
        .dyd-ects-equals {
            font-family: var(--font-heading);
            font-size: 28px;
            color: rgba(255, 255, 255, 0.4);
        }
        .dyd-ects-hours {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .dyd-ects-hours-value {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
        }
        .dyd-ects-hours-label {
            font-family: var(--font-body);
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        /* ECTS Benefits */
        .dyd-ects-benefits {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .dyd-ects-benefit {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(30, 58, 95, 0.03);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .dyd-ects-benefit:hover {
            background: rgba(30, 58, 95, 0.06);
        }
        .dyd-ects-benefit-icon {
            width: 24px;
            height: 24px;
            background: var(--pd-gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .dyd-ects-benefit-icon svg {
            width: 12px;
            height: 12px;
            stroke: #1e3a5f;
            stroke-width: 3;
        }
        .dyd-ects-benefit span {
            font-family: var(--font-body);
            font-size: 14px;
            color: #475569;
            line-height: 1.5;
        }
        /* Right: Degree Structure */
        .dyd-structure-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .dyd-structure-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .dyd-structure-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }
        .dyd-structure-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--pd-gradient-gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .dyd-structure-card:hover::after {
            transform: scaleX(1);
        }
        .dyd-structure-card.wide {
            grid-column: span 2;
        }
        .dyd-structure-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            animation: floatIcon 3s ease-in-out infinite;
        }
        @keyframes floatIcon {
			0%, 100% {
				transform: translateY(0);
			}
			50% {
				transform: translateY(-6px);
			}
		}
        .dyd-structure-icon.blue {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }
        .dyd-structure-icon.green {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }
        .dyd-structure-icon.purple {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.05) 100%);
            border: 1px solid rgba(168, 85, 247, 0.3);
        }
        .dyd-structure-icon.gold {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
            border: 1px solid rgba(201, 162, 39, 0.3);
        }
        .dyd-structure-icon svg {
            width: 24px;
            height: 24px;
        }
        .dyd-structure-icon.blue svg { stroke: #3b82f6; }
        .dyd-structure-icon.green svg { stroke: #10b981; }
        .dyd-structure-icon.purple svg { stroke: #a855f7; }
        .dyd-structure-icon.gold svg { stroke: var(--pd-accent); }
        .dyd-structure-label {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 6px;
        }
        .dyd-structure-label.blue { color: #3b82f6; }
        .dyd-structure-label.green { color: #10b981; }
        .dyd-structure-label.purple { color: #a855f7; }
        .dyd-structure-label.gold { color: var(--pd-accent); }
        .dyd-structure-title {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            color: var(--pd-primary);
            margin-bottom: 8px;
        }
        .dyd-structure-desc {
            font-family: var(--font-body);
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .dyd-structure-credits {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(30, 58, 95, 0.06);
            padding: 6px 14px;
            border-radius: 20px;
        }
        .dyd-structure-credits-value {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 700;
            color: var(--pd-primary);
        }
        .dyd-structure-credits-label {
            font-family: var(--font-body);
            font-size: 12px;
            color: #64748b;
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .dyd-how-section {
                padding: 80px 40px;
            }
            .dyd-how-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .dyd-how-section {
                padding: 60px 24px;
            }
            .dyd-structure-grid {
                grid-template-columns: 1fr;
            }
            .dyd-structure-card.wide {
                grid-column: span 1;
            }
            .dyd-ects-equation {
                flex-direction: column;
                gap: 12px;
            }
        }

        /* ========================================
           PAGE-SPECIFIC STYLES
           ======================================== */

        /* Placeholder Section Styles */
        .bu-placeholder-section {
            padding: 80px 40px;
            text-align: center;
            border: 2px dashed rgba(0,0,0,0.1);
            margin: 20px 40px;
            border-radius: 16px;
            background: rgba(0,0,0,0.02);
        }
        .bu-placeholder-section h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--pd-primary);
            margin-bottom: 10px;
        }
        .bu-placeholder-section p {
            color: #666;
            font-size: 0.95rem;
        }

        /* ========================================
           DEGREE BUILDER TOOL
           ======================================== */
        .dyd-builder-section {
            padding: 50px 100px 60px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }
        .dyd-builder-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        /* Section Header */
        .dyd-builder-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        .dyd-builder-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--pd-gradient-gold);
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        .dyd-builder-badge svg {
            width: 16px;
            height: 16px;
            stroke: var(--pd-primary);
        }
        .dyd-builder-badge span {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pd-primary);
        }
        .dyd-builder-title {
            font-family: var(--font-heading);
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 16px;
        }
        .dyd-builder-title span {
            background: var(--pd-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .dyd-builder-subtitle {
            font-family: var(--font-body);
            font-size: 17px;
            color: #64748b;
            line-height: 1.7;
        }
        /* Wizard Container */
        .dyd-wizard {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 60px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        /* Stepper */
        .dyd-stepper {
            display: flex;
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            padding: 0;
        }
        .dyd-step {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 24px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        .dyd-step:last-child {
            border-right: none;
        }
        .dyd-step::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--pd-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .dyd-step.active::after,
        .dyd-step.completed::after {
            transform: scaleX(1);
        }
        .dyd-step-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .dyd-step.active .dyd-step-number {
            background: var(--pd-accent);
            border-color: var(--pd-accent);
            color: var(--pd-primary);
        }
        .dyd-step.completed .dyd-step-number {
            background: #10b981;
            border-color: #10b981;
            color: #ffffff;
        }
        .dyd-step-number svg {
            width: 16px;
            height: 16px;
            stroke-width: 3;
        }
        .dyd-step-info {
            flex: 1;
            min-width: 0;
        }
        .dyd-step-label {
            font-family: var(--font-body);
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }
        .dyd-step-title {
            font-family: var(--font-heading);
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .dyd-step.active .dyd-step-title {
            color: #ffffff;
        }
        /* Wizard Content */
        .dyd-wizard-content {
            padding: 40px;
            min-height: 400px;
        }
        .dyd-wizard-step {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        .dyd-wizard-step.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* Step Content Styles */
        .dyd-step-heading {
            margin-bottom: 30px;
        }
        .dyd-step-heading h3 {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 8px;
        }
        .dyd-step-heading p {
            font-family: var(--font-body);
            font-size: 15px;
            color: #64748b;
        }
        /* Level Toggle */
        .dyd-level-toggle {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
        }
        .dyd-level-btn {
            flex: 1;
            padding: 20px 24px;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
        }
        .dyd-level-btn:hover {
            border-color: var(--pd-primary-light);
            background: #ffffff;
        }
        .dyd-level-btn.active {
            border-color: var(--pd-accent);
            background: rgba(201, 162, 39, 0.08);
        }
        .dyd-level-btn-title {
            font-family: var(--font-heading);
            font-size: 18px;
            font-weight: 600;
            color: var(--pd-primary);
            margin-bottom: 4px;
        }
        .dyd-level-btn-desc {
            font-family: var(--font-body);
            font-size: 13px;
            color: #64748b;
        }
        /* Form Groups */
        .dyd-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }
        .dyd-form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .dyd-form-group.full-width {
            grid-column: span 2;
        }
        .dyd-form-label {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            color: var(--pd-primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .dyd-form-select {
            padding: 14px 18px;
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--pd-primary);
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 18px;
            padding-right: 44px;
        }
        .dyd-form-select:hover {
            border-color: var(--pd-primary-light);
        }
        .dyd-form-select:focus {
            outline: none;
            border-color: var(--pd-accent);
            background-color: #ffffff;
        }
        .dyd-form-select:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        /* Structure Cards */
        .dyd-structure-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }
        .dyd-structure-option {
            padding: 24px;
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
        }
        .dyd-structure-option:hover:not(.disabled) {
            border-color: var(--pd-primary-light);
            transform: translateY(-2px);
        }
        .dyd-structure-option.active {
            border-color: var(--pd-accent);
            background: rgba(201, 162, 39, 0.08);
        }
        .dyd-structure-option.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .dyd-structure-option-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }
        .dyd-structure-option.active .dyd-structure-option-icon {
            background: var(--pd-gradient-gold);
        }
        .dyd-structure-option-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--pd-primary);
        }
        .dyd-structure-option-title {
            font-family: var(--font-heading);
            font-size: 15px;
            font-weight: 600;
            color: var(--pd-primary);
            margin-bottom: 6px;
        }
        .dyd-structure-option-desc {
            font-family: var(--font-body);
            font-size: 12px;
            color: #64748b;
        }
        .dyd-structure-option-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #ef4444;
            color: #ffffff;
            font-size: 9px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 4px;
            text-transform: uppercase;
        }
        /* Credit Meter */
        .dyd-credit-meter {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            border-radius: 16px;
            padding: 24px;
            margin-top: 32px;
        }
        .dyd-credit-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        .dyd-credit-label {
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        .dyd-credit-value {
            font-family: var(--font-heading);
            font-size: 24px;
            font-weight: 700;
            color: var(--pd-accent);
        }
        .dyd-credit-value span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }
        .dyd-credit-bar {
            height: 12px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 16px;
        }
        .dyd-credit-fill {
            height: 100%;
            background: var(--pd-gradient-gold);
            border-radius: 6px;
            transition: width 0.5s ease;
        }
        .dyd-credit-breakdown {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .dyd-credit-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dyd-credit-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .dyd-credit-dot.core { background: #3b82f6; }
        .dyd-credit-dot.major { background: #10b981; }
        .dyd-credit-dot.minor { background: #a855f7; }
        .dyd-credit-dot.elective { background: #fb923c; }
        .dyd-credit-item-label {
            font-family: var(--font-body);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }
        .dyd-credit-item-value {
            font-family: var(--font-heading);
            font-size: 13px;
            font-weight: 600;
            color: #ffffff;
        }
        /* Validation Messages */
        .dyd-validation {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            border-radius: 12px;
            margin-top: 20px;
            font-family: var(--font-body);
            font-size: 14px;
        }
        .dyd-validation.success {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #059669;
        }
        .dyd-validation.error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #dc2626;
        }
        .dyd-validation.warning {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            color: #d97706;
        }
        .dyd-validation svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        /* Summary Card */
        .dyd-summary {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 32px;
        }
        .dyd-summary-main {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            border-radius: 20px;
            padding: 32px;
            position: relative;
            overflow: hidden;
        }
        .dyd-summary-main::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .dyd-summary-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .dyd-summary-badge span {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--pd-accent);
        }
        .dyd-summary-degree {
            font-family: var(--font-heading);
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }
        .dyd-summary-structure {
            font-family: var(--font-body);
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 24px;
        }
        .dyd-summary-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .dyd-summary-detail {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .dyd-summary-detail-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dyd-summary-detail-icon.faculty { background: rgba(59, 130, 246, 0.2); }
        .dyd-summary-detail-icon.school { background: rgba(16, 185, 129, 0.2); }
        .dyd-summary-detail-icon.major { background: rgba(168, 85, 247, 0.2); }
        .dyd-summary-detail-icon.minor { background: rgba(251, 146, 60, 0.2); }
        .dyd-summary-detail-icon svg {
            width: 18px;
            height: 18px;
        }
        .dyd-summary-detail-icon.faculty svg { stroke: #3b82f6; }
        .dyd-summary-detail-icon.school svg { stroke: #10b981; }
        .dyd-summary-detail-icon.major svg { stroke: #a855f7; }
        .dyd-summary-detail-icon.minor svg { stroke: #fb923c; }
        .dyd-summary-detail-text {
            flex: 1;
        }
        .dyd-summary-detail-label {
            font-family: var(--font-body);
            font-size: 11px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .dyd-summary-detail-value {
            font-family: var(--font-body);
            font-size: 14px;
            color: #ffffff;
            font-weight: 500;
        }
        /* Summary Stats */
        .dyd-summary-stats {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .dyd-summary-stat {
            background: #ffffff;
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .dyd-summary-stat-value {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 700;
            color: var(--pd-primary);
            line-height: 1;
            margin-bottom: 4px;
        }
        .dyd-summary-stat-value span {
            font-size: 18px;
            color: var(--pd-accent);
        }
        .dyd-summary-stat-label {
            font-family: var(--font-body);
            font-size: 13px;
            color: #64748b;
        }
        /* Wizard Navigation */
        .dyd-wizard-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            padding: 24px 40px;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        .dyd-nav-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        .dyd-nav-btn.prev {
            background: transparent;
            color: var(--pd-primary);
            border: 2px solid #e2e8f0;
            margin-right: auto;
        }
        .dyd-nav-btn.prev:hover {
            border-color: var(--pd-primary);
        }
        .dyd-nav-btn.prev:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .dyd-nav-btn.next {
            background: var(--pd-gradient-gold);
            color: var(--pd-primary);
            margin-left: auto;
        }
        .dyd-nav-btn.next:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
        }
        .dyd-nav-btn.next:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        .dyd-nav-btn svg {
            width: 18px;
            height: 18px;
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .dyd-builder-section {
                padding: 80px 40px;
            }
            .dyd-summary {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .dyd-builder-section {
                padding: 60px 20px;
            }
            .dyd-stepper {
                flex-direction: column;
            }
            .dyd-step {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .dyd-wizard-content {
                padding: 24px;
            }
            .dyd-level-toggle {
                flex-direction: column;
            }
            .dyd-form-row {
                grid-template-columns: 1fr;
            }
            .dyd-form-group.full-width {
                grid-column: span 1;
            }
            .dyd-wizard-nav {
                padding: 20px;
                flex-wrap: wrap;
                gap: 12px;
            }
            .dyd-structure-options {
                grid-template-columns: 1fr;
            }
            .dyd-action-buttons {
                order: 3;
                width: 100%;
                justify-content: center;
            }
        }

        /* Action Buttons (Print/Email) */
        .dyd-action-buttons {
            display: none;
            gap: 12px;
            align-items: center;
        }
        .dyd-action-buttons.visible {
            display: flex;
        }

        .dyd-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
            background: #fff;
            color: var(--pd-primary);
        }

        .dyd-action-btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
        }

        .dyd-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .dyd-action-btn.print {
            border-color: #3b82f6;
            color: #3b82f6;
        }
        .dyd-action-btn.print:hover {
            background: #3b82f6;
            color: #fff;
        }

        .dyd-action-btn.email {
            border-color: #10b981;
            color: #10b981;
        }
        .dyd-action-btn.email:hover {
            background: #10b981;
            color: #fff;
        }

        /* ========================================
           SHARED SECTION HEADER STYLES
           ======================================== */
        .dyd-section-header {
            text-align: center;
            margin-bottom: 20px;
        }
        .dyd-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(30, 58, 95, 0.08);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: var(--pd-primary);
            margin-bottom: 16px;
        }
        .dyd-section-badge svg { stroke: var(--pd-accent); }
        .dyd-section-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 16px;
            font-family: var(--font-heading);
            line-height: 1.2;
        }
        .dyd-section-title .gold-text { color: var(--pd-accent); }
        .dyd-section-subtitle {
            font-size: 18px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .dyd-section-title { font-size: 32px; }
            .dyd-section-subtitle { font-size: 16px; }
        }

        /* ========================================
           SECTION 3 - DOUBLE DEGREE OPTIONS
           ======================================== */
        .dyd-double-degree-section {
            padding: 50px 80px 80px;
            background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
            background: var(--er-warm-white);
        }
        .dyd-dd-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        .dyd-dd-card {
            background: #fff;
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
        }
        .dyd-dd-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        /* Venn Diagram Container */
        .venn-diagram {
            position: relative;
            width: 180px;
            height: 90px;
            margin: 0 auto 24px;
        }
        .venn-circle {
            position: absolute;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            transition: all 0.4s ease;
            z-index: 1;
        }
        .venn-circle.left { left: 0; top: 9px; }
        .venn-circle.right { right: 0; top: 9px; z-index: 2; }
        /* Connector between circles */
        .venn-connector {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 3;
            width: 28px;
            height: 28px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .venn-connector svg { width: 16px; height: 16px; stroke: var(--pd-primary); }
        .dyd-dd-card:hover .venn-connector svg { stroke: var(--pd-accent); }
        /* B+B Colors */
        .dyd-dd-card.bb .venn-circle { background: rgba(201, 162, 39, 0.2); color: var(--pd-primary); border: 2px solid rgba(201, 162, 39, 0.5); }
        .dyd-dd-card.bb:hover .venn-circle { background: rgba(201, 162, 39, 0.3); border-color: var(--pd-accent); }
        /* B+M Colors */
        .dyd-dd-card.bm .venn-circle.left { background: rgba(201, 162, 39, 0.2); color: var(--pd-primary); border: 2px solid rgba(201, 162, 39, 0.5); }
        .dyd-dd-card.bm .venn-circle.right { background: var(--pd-accent); color: #fff; border: 2px solid var(--pd-accent); }
        .dyd-dd-card.bm:hover .venn-circle.left { background: rgba(201, 162, 39, 0.3); border-color: var(--pd-accent); }
        /* M+M Colors */
        .dyd-dd-card.mm .venn-circle { background: var(--pd-accent); color: #fff; border: 2px solid var(--pd-accent); }
        .dyd-dd-card.mm:hover .venn-circle { background: #b8922a; }

        .dyd-dd-title { font-size: 18px; font-weight: 700; color: var(--pd-primary); margin-bottom: 10px; }
        .dyd-dd-desc { color: #64748b; font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
        .dyd-dd-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--pd-accent);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .dyd-dd-link:hover { color: #b8922a; gap: 10px; }
        .dyd-dd-link svg { width: 16px; height: 16px; }
        /* Responsive */
        @media (max-width: 992px) {
            .dyd-dd-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
        }
        @media (max-width: 768px) {
            .venn-diagram { width: 140px; }
            .venn-circle { width: 68px; height: 68px; font-size: 9px; }
        }
        /* ========================================
           SECTION 5 - CUSTOM PATHWAYS
           ======================================== */
        .dyd-pathways-section {
            padding: 50px 100px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
        }
        .dyd-pathways-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        .dyd-pathway-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        .dyd-pathway-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        .pathway-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .pathway-icon svg { width: 28px; height: 28px; stroke: #fff; }
        .dyd-pathway-card h3 { font-size: 20px; font-weight: 700; color: var(--pd-primary); margin-bottom: 10px; }
        .dyd-pathway-card > p { color: #64748b; font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
        .pathway-components { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
        .pathway-components .comp {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }
        .pathway-components .comp.major { background: #dbeafe; color: #1e40af; }
        .pathway-components .comp.minor { background: #f3e8ff; color: #7c3aed; }
        .pathway-careers {
            padding-top: 16px;
            border-top: 1px solid #e2e8f0;
            font-size: 13px;
            color: #64748b;
            line-height: 1.5;
        }
        .pathway-careers strong { color: var(--pd-primary); }
        .dyd-custom-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            margin-top: 60px;
            padding: 40px 50px;
            /* background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%); */
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            border: 2px solid var(--pd-accent);
            border-radius: 20px;
            
        }
        .custom-cta-content h3 { font-size: 22px; color: var(--pd-accent); margin-bottom: 8px; }
        .custom-cta-content p { color: #ffffff; font-size: 15px; max-width: 600px; }
        .custom-cta-btn {
            padding: 16px 32px;
            background: var(--pd-gradient-gold);
            color: var(--pd-primary);
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        .custom-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3); }

        /* ========================================
           SECTION 6 - STUDENT STORIES
           ======================================== */
        .dyd-stories-section {
            padding: 100px 0;
            /* background: #fff; */
            background: var(--er-warm-white);
        }
        .dyd-stories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        .dyd-story-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        .dyd-story-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); }
        .story-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
        .story-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
        }
        .story-meta h4 { font-size: 18px; font-weight: 600; color: var(--pd-primary); }
        .story-meta span { font-size: 14px; color: #64748b; }
        .story-degree { margin-bottom: 20px; }
        .struct-badge {
            display: inline-block;
            padding: 4px 12px;
            background: var(--pd-primary);
            color: var(--pd-accent);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .degree-components { display: flex; flex-wrap: wrap; gap: 8px; }
        .deg-major {
            padding: 6px 14px;
            background: #dbeafe;
            color: #1e40af;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }
        .deg-minor {
            padding: 6px 14px;
            background: #f3e8ff;
            color: #7c3aed;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }
        .story-quote {
            font-style: italic;
            color: #475569;
            font-size: 15px;
            line-height: 1.6;
            padding: 16px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            margin-bottom: 16px;
        }
        .story-outcome { display: flex; align-items: center; gap: 10px; }
        .outcome-label { font-size: 13px; color: #64748b; }
        .outcome-role { font-size: 14px; font-weight: 600; color: #10b981; }
        .dyd-stories-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            margin-top: 60px;
            padding: 40px;
            background: linear-gradient(135deg, var(--pd-primary), #2d4a6f);
            border-radius: 20px;
        }
        .stat-item { text-align: center; }
        .stat-number { display: block; font-size: 40px; font-weight: 700; color: var(--pd-accent); font-family: var(--font-heading); }
        .stat-text { color: rgba(255, 255, 255, 0.9); font-size: 14px; }
        .stat-divider { width: 1px; height: 60px; background: rgba(255, 255, 255, 0.2); }

        /* ========================================
           SECTION 7 - ACADEMIC ADVISOR CTA
           ======================================== */
        .dyd-advisor-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        .dyd-advisor-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .dyd-advisor-content .dyd-section-badge.light {
            background: rgba(201, 162, 39, 0.15);
            color: #92400e;
        }
        .dyd-advisor-content h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--pd-primary);
            line-height: 1.2;
            margin: 20px 0;
        }
        .dyd-advisor-content > p {
            color: #64748b;
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 32px;
        }
        .advisor-features { display: flex; flex-direction: column; gap: 20px; }
        .advisor-feature {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .advisor-feature .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--pd-primary), #2d4a6f);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .advisor-feature .feature-icon svg { width: 24px; height: 24px; stroke: var(--pd-accent); }
        .advisor-feature .feature-text strong { display: block; color: var(--pd-primary); font-size: 16px; }
        .advisor-feature .feature-text span { color: #64748b; font-size: 14px; }
        .dyd-advisor-form-wrapper {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        .dyd-advisor-form h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--pd-primary);
            margin-bottom: 28px;
            text-align: center;
        }
        .dyd-advisor-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .dyd-advisor-form .form-group { margin-bottom: 20px; }
        .dyd-advisor-form label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--pd-primary);
            margin-bottom: 8px;
        }
        .dyd-advisor-form input,
        .dyd-advisor-form select,
        .dyd-advisor-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 15px;
            font-family: var(--font-body);
            transition: all 0.3s ease;
        }
        .dyd-advisor-form input:focus,
        .dyd-advisor-form select:focus,
        .dyd-advisor-form textarea:focus {
            outline: none;
            border-color: var(--pd-accent);
            box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
        }
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 24px;
        }
        .form-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            accent-color: var(--pd-accent);
        }
        .form-checkbox label {
            font-size: 13px;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 0;
        }
        .form-checkbox label a { color: var(--pd-accent); }
        .advisor-submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--pd-gradient-gold);
            color: var(--pd-primary);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        .advisor-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
        }
        .advisor-submit-btn svg { width: 20px; height: 20px; }
        .form-note {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: #64748b;
        }
        .form-note a { color: var(--pd-primary); font-weight: 600; }

        /* ========================================
           RESPONSIVE - NEW SECTIONS
           ======================================== */
        @media (max-width: 1024px) {
            .dyd-dd-grid { grid-template-columns: 1fr; }
            .dyd-mm-comparison { flex-direction: column; }
            .dyd-mm-vs { width: 100%; height: 50px; }
            .tips-grid { grid-template-columns: repeat(2, 1fr); }
            .dyd-pathways-grid { grid-template-columns: 1fr; }
            .dyd-stories-grid { grid-template-columns: 1fr; }
            .dyd-advisor-container { grid-template-columns: 1fr; }
            .dyd-custom-cta { flex-direction: column; text-align: center; }
        }
        @media (max-width: 768px) {
            .tips-grid { grid-template-columns: 1fr; }
            .dyd-stories-stats { flex-direction: column; gap: 30px; }
            .stat-divider { width: 60px; height: 1px; }
            .dyd-dd-info { flex-direction: column; text-align: center; }
            .dyd-advisor-content h2 { font-size: 32px; }
            .dyd-advisor-form .form-row { grid-template-columns: 1fr; }
        }

        /* Print Styles */
        @media print {
            body * {
                visibility: hidden;
            }
            .dyd-print-content,
            .dyd-print-content * {
                visibility: visible;
            }
            .dyd-print-content {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                padding: 40px;
                background: #fff !important;
                color: #1e3a5f !important;
            }
            .dyd-print-content h1 {
                color: #1e3a5f;
                border-bottom: 3px solid #c9a227;
                padding-bottom: 15px;
                margin-bottom: 30px;
            }
            .dyd-print-content .print-section {
                margin-bottom: 25px;
                padding: 15px;
                border: 1px solid #e5e7eb;
                border-radius: 8px;
            }
            .dyd-print-content .print-section h3 {
                color: #1e3a5f;
                margin-bottom: 10px;
                font-size: 14px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            .dyd-print-content .print-section p {
                color: #374151;
                font-size: 16px;
                margin: 5px 0;
            }
            .dyd-print-content .print-code {
                font-family: 'Courier New', monospace;
                background: #f3f4f6;
                padding: 2px 6px;
                border-radius: 4px;
                font-size: 12px;
            }
            .dyd-print-content .print-credits {
                display: flex;
                justify-content: space-between;
                padding: 10px 0;
                border-top: 1px dashed #e5e7eb;
                margin-top: 10px;
            }
            .dyd-print-content .print-footer {
                margin-top: 40px;
                padding-top: 20px;
                border-top: 1px solid #e5e7eb;
                font-size: 12px;
                color: #6b7280;
            }
        }