         /* ========================================
           WARM COLOR PALETTE FOR PATHWAYS
           ======================================== */
        :root {
            --tp-warm-coral: #e67e5a;
            --tp-warm-peach: #f4a574;
            --tp-warm-gold: #d4a854;
            --tp-warm-cream: #fdf8f3;
            --tp-warm-sand: #f5ebe0;
            --tp-deep-brown: #3d2c1f;
            --tp-soft-purple: #8b6dae;
            --tp-forest-green: #4a7c59;
            --tp-sky-blue: #5b9bd5;
            --tp-gradient-warm: linear-gradient(135deg, #e67e5a 0%, #f4a574 50%, #d4a854 100%);
            --tp-gradient-sunset: linear-gradient(135deg, #1e3a5f 0%, #2c5282 30%, #e67e5a 100%);
        }

        /* ========================================
           HERO SECTION - WARM & WELCOMING
           ======================================== */
        .tp-hero {
            position: relative;
            min-height: 580px;
            display: flex;
            align-items: center;
            padding: 140px 60px 100px;
            overflow: hidden;
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 40%, #3d5a80 70%, #5b9bd5 100%);
        }
        .tp-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(230, 126, 90, 0.2) 0%, transparent 60%);
            pointer-events: none;
            animation: pulseGlow 8s ease-in-out infinite;
        }
        .tp-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(212, 168, 84, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }
        @keyframes pulseGlow {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }
        .tp-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }
        /* Floating pathway arrows decoration */
        .tp-hero-paths {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        .tp-path-line {
            position: absolute;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(230, 126, 90, 0.4), transparent);
            border-radius: 2px;
        }
        .tp-path-line-1 {
            width: 200px;
            top: 20%;
            right: 15%;
            transform: rotate(-15deg);
            animation: pathFloat 6s ease-in-out infinite;
        }
        .tp-path-line-2 {
            width: 150px;
            top: 45%;
            right: 25%;
            transform: rotate(10deg);
            animation: pathFloat 8s ease-in-out infinite 1s;
            background: linear-gradient(90deg, transparent, rgba(212, 168, 84, 0.4), transparent);
        }
        .tp-path-line-3 {
            width: 180px;
            top: 70%;
            right: 10%;
            transform: rotate(-5deg);
            animation: pathFloat 7s ease-in-out infinite 0.5s;
        }
        .tp-path-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: rgba(230, 126, 90, 0.6);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(230, 126, 90, 0.4);
        }
        .tp-path-dot-1 { top: 25%; right: 30%; animation: dotPulse 3s ease-in-out infinite; }
        .tp-path-dot-2 { top: 50%; right: 20%; animation: dotPulse 3s ease-in-out infinite 1s; background: rgba(212, 168, 84, 0.6); }
        .tp-path-dot-3 { top: 65%; right: 35%; animation: dotPulse 3s ease-in-out infinite 2s; }
        @keyframes pathFloat {
            0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); opacity: 0.4; }
            50% { transform: translateY(-10px) rotate(var(--rotation, 0deg)); opacity: 0.6; }
        }
        @keyframes dotPulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.3); opacity: 1; }
        }
        .tp-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;
        }
        .tp-hero-content { color: #ffffff; }
        .tp-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(230, 126, 90, 0.15);
            border: 1px solid rgba(230, 126, 90, 0.3);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 28px;
        }
        .tp-hero-badge svg {
            width: 20px;
            height: 20px;
            stroke: var(--tp-warm-coral);
        }
        .tp-hero-badge span {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .tp-hero-title {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.15;
            margin: 0 0 24px;
        }
        .tp-hero-title .accent {
            background: linear-gradient(135deg, var(--tp-warm-coral), var(--tp-warm-peach));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .tp-hero-subtitle {
            font-family: var(--font-body);
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin: 0 0 32px;
            max-width: 520px;
        }
        .tp-hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 36px;
        }
        .tp-hero-highlight {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
            transition: all 0.3s ease;
        }
        .tp-hero-highlight:hover {
            background: rgba(230, 126, 90, 0.2);
            border-color: rgba(230, 126, 90, 0.4);
            transform: translateY(-2px);
        }
        .tp-hero-highlight svg {
            width: 16px;
            height: 16px;
            stroke: var(--tp-warm-coral);
        }
        .tp-hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .tp-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--tp-gradient-warm);
            color: #ffffff;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(230, 126, 90, 0.35);
        }
        .tp-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(230, 126, 90, 0.45);
            color: #ffffff;
        }
        .tp-btn-primary svg { width: 18px; height: 18px; }
        .tp-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.25);
            color: #ffffff;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .tp-btn-secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
            transform: translateY(-3px);
            color: #ffffff;
        }
        .tp-btn-secondary svg { width: 18px; height: 18px; }
        /* Hero Visual - Pathway Journey */
        .tp-hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .tp-journey-visual {
            position: relative;
            width: 100%;
            max-width: 450px;
        }
        .tp-journey-path {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, rgba(230, 126, 90, 0.3), rgba(212, 168, 84, 0.3), rgba(74, 124, 89, 0.3));
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .tp-journey-steps {
            display: flex;
            flex-direction: column;
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        .tp-journey-step {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .tp-journey-step:nth-child(even) { flex-direction: row-reverse; }
        .tp-journey-node {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        .tp-journey-node::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px dashed rgba(255,255,255,0.3);
            animation: nodeRotate 20s linear infinite;
        }
        @keyframes nodeRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .tp-journey-node svg {
            width: 30px;
            height: 30px;
            stroke: #ffffff;
        }
        .tp-journey-node.coral { background: var(--tp-warm-coral); }
        .tp-journey-node.gold { background: var(--tp-warm-gold); }
        .tp-journey-node.green { background: var(--tp-forest-green); }
        .tp-journey-node.purple { background: var(--tp-soft-purple); }
        .tp-journey-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 16px;
            padding: 20px 24px;
            flex: 1;
            max-width: 200px;
        }
        .tp-journey-card-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--tp-warm-coral);
            margin-bottom: 4px;
        }
        .tp-journey-card-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }
        @media (max-width: 1024px) {
            .tp-hero-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
            .tp-hero-subtitle { margin-left: auto; margin-right: auto; }
            .tp-hero-highlights { justify-content: center; }
            .tp-hero-ctas { justify-content: center; }
            .tp-hero-visual { display: none; }
        }
        @media (max-width: 768px) {
            .tp-hero { padding: 120px 24px 80px; min-height: auto; }
            .tp-hero-title { font-size: 2.2rem; }
            .tp-hero-ctas { flex-direction: column; }
            .tp-btn-primary, .tp-btn-secondary { width: 100%; justify-content: center; }
        }

        /* ========================================
           SECTION 1: PATHWAY OVERVIEW CARDS
           ======================================== */
        .tp-overview-section {
            padding: 80px 60px;
            background: var(--tp-warm-cream);
            position: relative;
            overflow: hidden;
        }
        .tp-overview-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(180deg, rgba(30, 58, 95, 0.03) 0%, transparent 100%);
        }
        .tp-overview-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
        }
        .tp-section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .tp-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(230, 126, 90, 0.1);
            border: 1px solid rgba(230, 126, 90, 0.2);
            padding: 8px 18px;
            border-radius: 25px;
            margin-bottom: 20px;
        }
        .tp-section-badge svg {
            width: 18px;
            height: 18px;
            stroke: var(--tp-warm-coral);
        }
        .tp-section-badge span {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--tp-warm-coral);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .tp-section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 16px;
            line-height: 1.2;
        }
        .tp-section-title span {
            background: var(--tp-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .tp-section-subtitle {
            font-family: var(--font-body);
            font-size: 1.1rem;
            color: var(--er-text-light);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }
        /* Pathway Cards Grid */
        .tp-pathways-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .tp-pathway-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 36px 30px;
            border: 1px solid rgba(0,0,0,0.06);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .tp-pathway-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--card-accent, var(--tp-warm-coral));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .tp-pathway-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border-color: transparent;
        }
        .tp-pathway-card:hover::before {
            transform: scaleX(1);
        }
        .tp-pathway-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
        }
        .tp-pathway-icon svg {
            width: 32px;
            height: 32px;
            stroke: #ffffff;
            position: relative;
            z-index: 2;
        }
        .tp-pathway-icon.coral { background: linear-gradient(135deg, #e67e5a, #f4a574); }
        .tp-pathway-icon.gold { background: linear-gradient(135deg, #d4a854, #e8c777); }
        .tp-pathway-icon.green { background: linear-gradient(135deg, #4a7c59, #6ba378); }
        .tp-pathway-icon.purple { background: linear-gradient(135deg, #8b6dae, #a78bc7); }
        .tp-pathway-icon.blue { background: linear-gradient(135deg, #5b9bd5, #7eb8e8); }
        .tp-pathway-icon.teal { background: linear-gradient(135deg, #3d8b8b, #5aadad); }
        .tp-pathway-card.coral { --card-accent: #e67e5a; }
        .tp-pathway-card.gold { --card-accent: #d4a854; }
        .tp-pathway-card.green { --card-accent: #4a7c59; }
        .tp-pathway-card.purple { --card-accent: #8b6dae; }
        .tp-pathway-card.blue { --card-accent: #5b9bd5; }
        .tp-pathway-card.teal { --card-accent: #3d8b8b; }
        .tp-pathway-from-to {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        .tp-pathway-level {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(0,0,0,0.05);
            color: var(--er-text-light);
        }
        .tp-pathway-arrow {
            width: 24px;
            height: 24px;
            color: var(--card-accent, var(--tp-warm-coral));
        }
        .tp-pathway-title {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 12px;
        }
        .tp-pathway-desc {
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--er-text-light);
            line-height: 1.7;
            margin: 0 0 20px;
        }
        .tp-pathway-features {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 24px;
        }
        .tp-pathway-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--er-text);
        }
        .tp-pathway-feature svg {
            width: 18px;
            height: 18px;
            stroke: var(--card-accent, var(--tp-warm-coral));
            flex-shrink: 0;
        }
        .tp-pathway-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--card-accent, var(--tp-warm-coral));
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tp-pathway-link:hover {
            gap: 12px;
            color: var(--pd-primary);
        }
        .tp-pathway-link svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        @media (max-width: 1024px) {
            .tp-pathways-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .tp-overview-section { padding: 60px 24px; }
            .tp-section-title { font-size: 2rem; }
            .tp-pathways-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 2: HORIZONTAL PROCESS FLOW
           ======================================== */
        .tp-process-section {
            padding: 100px 60px;
            background: linear-gradient(180deg, #ffffff 0%, var(--tp-warm-sand) 100%);
            position: relative;
            overflow: hidden;
        }
        .tp-process-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 400px;
            transform: translateY(-50%);
            background: radial-gradient(ellipse at center, rgba(230, 126, 90, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .tp-process-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
        }
        /* Horizontal Steps Row */
        .tp-process-flow {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 70px;
            position: relative;
        }
        /* Connecting Line */
        .tp-process-flow::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 60px;
            right: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--tp-warm-coral), var(--tp-warm-gold), var(--tp-forest-green), var(--tp-soft-purple));
            border-radius: 2px;
            z-index: 0;
        }
        /* Animated Progress */
        .tp-process-flow::after {
            content: '';
            position: absolute;
            top: 50px;
            left: 60px;
            width: 0%;
            height: 4px;
            background: rgba(255,255,255,0.5);
            border-radius: 2px;
            z-index: 1;
            animation: processFlow 3s ease-in-out infinite;
        }
        @keyframes processFlow {
            0% { left: 60px; width: 0%; opacity: 1; }
            50% { width: 30%; opacity: 0.8; }
            100% { left: calc(100% - 60px); width: 0%; opacity: 0; }
        }
        /* Individual Step */
        .tp-process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        /* Step Number Circle */
        .tp-process-number {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
        .tp-process-number::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 3px dashed rgba(255,255,255,0.3);
            animation: stepRotate 15s linear infinite;
        }
        .tp-process-number::after {
            content: '';
            position: absolute;
            inset: -12px;
            border-radius: 50%;
            background: inherit;
            opacity: 0.15;
            z-index: -1;
        }
        @keyframes stepRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .tp-process-step:hover .tp-process-number {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        .tp-process-step:nth-child(1) .tp-process-number { background: linear-gradient(135deg, #e67e5a, #f4a574); }
        .tp-process-step:nth-child(2) .tp-process-number { background: linear-gradient(135deg, #d4a854, #e8c777); }
        .tp-process-step:nth-child(3) .tp-process-number { background: linear-gradient(135deg, #4a7c59, #6ba378); }
        .tp-process-step:nth-child(4) .tp-process-number { background: linear-gradient(135deg, #8b6dae, #a78bc7); }
        /* Step Icon inside number */
        .tp-process-number svg {
            width: 40px;
            height: 40px;
            stroke: #ffffff;
            stroke-width: 2;
        }
        /* Step Content Card */
        .tp-process-card {
            margin-top: 30px;
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 24px;
            width: 100%;
            max-width: 280px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.4s ease;
            position: relative;
        }
        .tp-process-card::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: #ffffff;
            border-left: 1px solid rgba(0,0,0,0.04);
            border-top: 1px solid rgba(0,0,0,0.04);
            transform: translateX(-50%) rotate(45deg);
        }
        .tp-process-step:hover .tp-process-card {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        .tp-process-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
        }
        .tp-process-step:nth-child(1) .tp-process-label { background: rgba(230, 126, 90, 0.1); color: var(--tp-warm-coral); }
        .tp-process-step:nth-child(2) .tp-process-label { background: rgba(212, 168, 84, 0.1); color: var(--tp-warm-gold); }
        .tp-process-step:nth-child(3) .tp-process-label { background: rgba(74, 124, 89, 0.1); color: var(--tp-forest-green); }
        .tp-process-step:nth-child(4) .tp-process-label { background: rgba(139, 109, 174, 0.1); color: var(--tp-soft-purple); }
        .tp-process-title {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 10px;
            line-height: 1.3;
        }
        .tp-process-desc {
            font-size: 0.9rem;
            color: var(--er-text-light);
            line-height: 1.65;
            margin: 0 0 16px;
        }
        .tp-process-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }
        .tp-process-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--er-text);
            background: var(--tp-warm-sand);
            padding: 5px 10px;
            border-radius: 15px;
        }
        .tp-process-tag svg {
            width: 12px;
            height: 12px;
            stroke: var(--tp-warm-coral);
        }
        /* Responsive */
        @media (max-width: 1100px) {
            .tp-process-flow { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
            .tp-process-flow::before, .tp-process-flow::after { display: none; }
        }
        @media (max-width: 600px) {
            .tp-process-section { padding: 60px 24px; }
            .tp-process-flow { grid-template-columns: 1fr; gap: 40px; }
            .tp-process-number { width: 80px; height: 80px; }
            .tp-process-number svg { width: 32px; height: 32px; }
        }

        /* ========================================
           SECTION 3: BENEFITS & FEATURES
           ======================================== */
        .tp-benefits-section {
            padding: 100px 60px;
            background: #ffffff;
            position: relative;
        }
        .tp-benefits-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .tp-benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }
        /* Left: Feature Visual */
        .tp-benefits-visual {
            position: relative;
        }
        .tp-benefits-card-main {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            border-radius: 28px;
            padding: 50px 40px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }
        .tp-benefits-card-main::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(230, 126, 90, 0.2) 0%, transparent 70%);
        }
        .tp-benefits-card-icon {
            width: 80px;
            height: 80px;
            background: rgba(230, 126, 90, 0.2);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }
        .tp-benefits-card-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--tp-warm-coral);
        }
        .tp-benefits-card-title {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 0 16px;
            line-height: 1.3;
        }
        .tp-benefits-card-desc {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            margin: 0 0 28px;
        }
        .tp-benefits-stats {
            display: flex;
            gap: 40px;
        }
        .tp-benefits-stat {
            text-align: center;
        }
        .tp-benefits-stat-value {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--tp-warm-coral);
            line-height: 1;
        }
        .tp-benefits-stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
            margin-top: 6px;
        }
        /* Floating mini cards */
        .tp-benefits-float-card {
            position: absolute;
            background: #ffffff;
            border-radius: 16px;
            padding: 20px 24px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .tp-benefits-float-card.top-right {
            top: -20px;
            right: -40px;
            animation: floatCard 4s ease-in-out infinite;
        }
        .tp-benefits-float-card.bottom-left {
            bottom: -20px;
            left: -40px;
            animation: floatCard 4s ease-in-out infinite 2s;
        }
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .tp-float-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tp-float-icon.coral { background: rgba(230, 126, 90, 0.1); }
        .tp-float-icon.green { background: rgba(74, 124, 89, 0.1); }
        .tp-float-icon svg {
            width: 24px;
            height: 24px;
        }
        .tp-float-icon.coral svg { stroke: var(--tp-warm-coral); }
        .tp-float-icon.green svg { stroke: var(--tp-forest-green); }
        .tp-float-text {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--pd-primary);
        }
        /* Right: Benefits List */
        .tp-benefits-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .tp-benefit-item {
            display: flex;
            gap: 20px;
            padding: 28px;
            background: var(--tp-warm-cream);
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .tp-benefit-item:hover {
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            transform: translateX(8px);
        }
        .tp-benefit-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .tp-benefit-icon svg {
            width: 26px;
            height: 26px;
            stroke: #ffffff;
        }
        .tp-benefit-icon.coral { background: linear-gradient(135deg, #e67e5a, #f4a574); }
        .tp-benefit-icon.gold { background: linear-gradient(135deg, #d4a854, #e8c777); }
        .tp-benefit-icon.green { background: linear-gradient(135deg, #4a7c59, #6ba378); }
        .tp-benefit-icon.purple { background: linear-gradient(135deg, #8b6dae, #a78bc7); }
        .tp-benefit-content h4 {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 8px;
        }
        .tp-benefit-content p {
            font-size: 0.95rem;
            color: var(--er-text-light);
            line-height: 1.7;
            margin: 0;
        }
        @media (max-width: 1024px) {
            .tp-benefits-grid { grid-template-columns: 1fr; gap: 50px; }
            .tp-benefits-float-card { display: none; }
        }
        @media (max-width: 768px) {
            .tp-benefits-section { padding: 60px 24px; }
            .tp-benefits-card-main { padding: 36px 28px; }
            .tp-benefits-stats { flex-direction: column; gap: 20px; }
        }

        /* ========================================
           SECTION 4: ELIGIBILITY CRITERIA
           ======================================== */
        .tp-eligibility-section {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--tp-warm-sand) 0%, var(--tp-warm-cream) 100%);
        }
        .tp-eligibility-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .tp-eligibility-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 60px;
        }
        .tp-eligibility-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 36px;
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .tp-eligibility-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--card-bg-start), var(--card-bg-end));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }
        .tp-eligibility-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border-color: var(--card-accent);
        }
        .tp-eligibility-card:hover::before { opacity: 0.03; }
        .tp-eligibility-card > * { position: relative; z-index: 1; }
        .tp-eligibility-card.coral { --card-accent: #e67e5a; --card-bg-start: #e67e5a; --card-bg-end: #f4a574; }
        .tp-eligibility-card.gold { --card-accent: #d4a854; --card-bg-start: #d4a854; --card-bg-end: #e8c777; }
        .tp-eligibility-card.green { --card-accent: #4a7c59; --card-bg-start: #4a7c59; --card-bg-end: #6ba378; }
        .tp-eligibility-card.purple { --card-accent: #8b6dae; --card-bg-start: #8b6dae; --card-bg-end: #a78bc7; }
        .tp-eligibility-header {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 24px;
        }
        .tp-eligibility-icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-accent);
        }
        .tp-eligibility-icon svg {
            width: 28px;
            height: 28px;
            stroke: #ffffff;
        }
        .tp-eligibility-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0;
        }
        .tp-eligibility-subtitle {
            font-size: 0.85rem;
            color: var(--card-accent);
            font-weight: 600;
            margin-top: 4px;
        }
        .tp-eligibility-requirements {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .tp-eligibility-req {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--er-text);
            line-height: 1.6;
        }
        .tp-eligibility-req svg {
            width: 20px;
            height: 20px;
            stroke: var(--card-accent);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .tp-eligibility-cta {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid rgba(0,0,0,0.06);
        }
        .tp-eligibility-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--card-accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tp-eligibility-link:hover {
            gap: 12px;
        }
        .tp-eligibility-link svg {
            width: 18px;
            height: 18px;
        }
        @media (max-width: 900px) {
            .tp-eligibility-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .tp-eligibility-section { padding: 60px 24px; }
        }

        /* ========================================
           SECTION 5: CTA BANNER
           ======================================== */
        .tp-cta-section {
            padding: 80px 60px;
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #3d5a80 100%);
            position: relative;
            overflow: hidden;
        }
        .tp-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(230, 126, 90, 0.2) 0%, transparent 70%);
        }
        .tp-cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 168, 84, 0.15) 0%, transparent 70%);
        }
        .tp-cta-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .tp-cta-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 16px;
            line-height: 1.3;
        }
        .tp-cta-title span {
            background: var(--tp-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .tp-cta-subtitle {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }
        .tp-cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .tp-cta-section { padding: 60px 24px; }
            .tp-cta-title { font-size: 1.8rem; }
            .tp-cta-buttons { flex-direction: column; }
            .tp-cta-buttons .tp-btn-primary,
            .tp-cta-buttons .tp-btn-secondary { width: 100%; justify-content: center; }
        }
    