
        /* ----- completely isolated module – affects nothing outside ----- */
        .npi-module * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .npi-module {
            display: block;
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            width: 100%;
            max-width: 100%;
            background: transparent;
            line-height: 1.5;
        }

        .npi-card {
            background: white;
            border-radius: 2rem;
            box-shadow: 0 20px 35px -12px rgba(199, 36, 177, 0.18);
            padding: 1.8rem 1.8rem;
            border: 1px solid #f0e4f0;
            width: 100%;
        }

        /* accent #c724b1 */
        .npi-module .accent-clr {
            color: #c724b1;
        }
        .npi-module .accent-bg {
            background: #c724b1;
            color: white;
        }
        .npi-module .accent-border {
            border-color: #c724b1;
        }

        /* headings */
        .npi-module .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin: 1.5rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #c724b1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .npi-module .section-title:first-of-type {
            margin-top: 0;
        }
        .npi-module .section-title i {
            font-style: normal;
            font-size: 1.6rem;
            color: #c724b1;
        }

        .npi-module .subtitle {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.2rem 0 0.6rem 0;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .npi-module .subtitle i {
            font-style: normal;
            font-size: 1.2rem;
            color: #c724b1;
        }

        /* goal block */
        .npi-module .goal-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 1rem 0 1.5rem;
        }
        .npi-module .goal-item {
            flex: 1 1 240px;
            background: #fcf2fb;
            border-radius: 1.5rem;
            padding: 1rem 1.2rem;
            border-left: 4px solid #c724b1;
        }
        .npi-module .goal-item .goal-title {
            font-weight: 700;
            font-size: 1rem;
            color: #c724b1;
            margin-bottom: 0.4rem;
        }
        .npi-module .goal-item .goal-desc {
            font-size: 0.9rem;
            color: #334155;
            line-height: 1.4;
        }

        /* NPI stages - full content preserved */
        .npi-module .stages-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 1rem 0 1.5rem;
        }
        .npi-module .stage-card {
            flex: 1 1 240px;
            background: #ffffff;
            border-radius: 1.5rem;
            padding: 1rem 1.2rem;
            border: 1px solid #ede7f0;
            transition: 0.2s;
        }
        .npi-module .stage-card:hover {
            border-color: #c724b1;
            box-shadow: 0 8px 18px rgba(199,36,177,0.1);
        }
        .npi-module .stage-name {
            font-weight: 700;
            font-size: 1.2rem;
            color: #c724b1;
            margin-bottom: 0.5rem;
        }
        .npi-module .stage-purpose {
            font-size: 0.85rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        .npi-module .stage-detail {
            font-size: 0.85rem;
            color: #4a5568;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        .npi-module .stage-detail-bullet {
            font-size: 0.85rem;
            color: #4a5568;
            margin-bottom: 0.3rem;
            line-height: 1.4;
            padding-left: 0.8rem;
            position: relative;
        }
        .npi-module .stage-detail-bullet::before {
            content: "•";
            color: #c724b1;
            position: absolute;
            left: 0;
        }
        .npi-module .stage-assembly {
            font-size: 0.85rem;
            color: #c724b1;
            border-top: 1px dashed #c724b1;
            margin-top: 0.6rem;
            padding-top: 0.6rem;
        }

        /* pricing table */
        .npi-module .table-wrap {
            overflow-x: auto;
            margin: 1rem 0 1.5rem;
            border-radius: 1.2rem;
            border: 1px solid #ece3f0;
        }
        .npi-module table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            font-size: 0.85rem;
            min-width: 550px;
        }
        .npi-module th {
            background: #fbf2fc;
            color: #2c2c3a;
            font-weight: 600;
            padding: 0.8rem;
            text-align: center;
            border-bottom: 2px solid #c724b1;
        }
        .npi-module td {
            padding: 0.8rem;
            border-bottom: 1px solid #ede7f0;
            text-align: left;
            vertical-align: top;
        }
        .npi-module tr:last-child td {
            border-bottom: none;
        }
        .npi-module .price-category {
            font-weight: 600;
            color: #1e293b;
            width: 22%;
        }
        .npi-module .price-desc {
            color: #2d3a4c;
        }

        /* new customer promo */
        .npi-module .promo-box {
            background: #f7f0fa;
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0 1rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-left: 5px solid #c724b1;
            gap: 1rem;
        }
        .npi-module .promo-left {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            flex-wrap: wrap;
        }
        .npi-module .promo-left i {
            font-size: 1.5rem;
            color: #c724b1;
        }
        .npi-module .promo-right {
            background: #c724b1;
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            white-space: nowrap;
        }

        /* small badges */
        .npi-module .badge {
            background: #f0e6f0;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.75rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .npi-module .badge i {
            color: #c724b1;
            font-style: normal;
        }

        .npi-module .footer-note {
            margin-top: 1.8rem;
            text-align: right;
            color: #a0afc0;
            font-size: 0.7rem;
        }
        .npi-module .footer-note span {
            background: #c724b1;
            width: 40px;
            height: 3px;
            display: inline-block;
            border-radius: 4px;
            margin-right: 6px;
        }

        @media (max-width: 680px) {
            .npi-module .stages-grid {
                flex-direction: column;
            }
            .npi-module .goal-grid {
                flex-direction: column;
            }
            .npi-module .section-title {
                font-size: 1.3rem;
            }
        }
    