
        /* ----- isolated module – affects nothing outside ----- */
        .checklist-module * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .checklist-module {
            display: block;
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            max-width: 900px;
            margin: 0 auto;
            background: transparent;
            line-height: 1.5;
        }

        .checklist-card {
            background: white;
            border-radius: 2rem;
            box-shadow: 0 25px 35px -15px rgba(199, 36, 177, 0.2);
            padding: 2rem 2rem;
            border: 1px solid #f0e4f0;
        }

        .header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.8rem;
        }
        .header .note-icon {
            font-style: normal;
            font-size: 2.2rem;
            color: #c724b1;
        }
        .header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e293b;
        }
        .header h2 span {
            color: #c724b1;
        }

        .intro {
            background: #fcf2fb;
            border-radius: 1.5rem;
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
            border-left: 6px solid #c724b1;
            font-size: 1rem;
            color: #334155;
        }
        .intro .accent-note {
            color: #c724b1;
            font-weight: normal;
        }

        .checklist-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .checklist-table th {
            background: #fbf2fc;
            color: #2c2c3a;
            font-weight: 600;
            padding: 1rem 1.2rem;
            text-align: left;
            border-bottom: 2px solid #c724b1;
        }
        .checklist-table td {
            padding: 0.9rem 1.2rem;
            border-bottom: 1px solid #ede7f0;
            vertical-align: top;
        }
        .checklist-table tr:last-child td {
            border-bottom: none;
        }
        .checklist-table .param {
            font-weight: 600;
            color: #1e293b;
            width: 35%;
        }
        .checklist-table .capability {
            color: #2d3a4c;
        }
        .checklist-table .note {
            font-size: 0.85rem;
            color: #c724b1;
            margin-top: 0.2rem;
        }

        .icon-check {
            color: #c724b1;
            font-size: 1.1rem;
            margin-right: 5px;
            display: inline-block;
        }

        .footnote {
            background: #f9f2fc;
            border-radius: 1.5rem;
            padding: 1.2rem 1.5rem;
            margin-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border: 1px dashed #c724b1;
        }
        .footnote .accent-icon {
            color: #c724b1;
            font-size: 1.2rem;
            display: inline-block;
        }
        .footnote .strong {
            font-weight: 700;
            color: #c724b1;
        }

        .promo-box {
            background: #f7f0fa;
            border-radius: 2rem;
            padding: 1.2rem 1.8rem;
            margin: 1.8rem 0 1.2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            border-left: 6px solid #c724b1;
        }
        .promo-box .promo-left {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.1rem;
        }
        .promo-box .promo-left .treble-icon {
            font-size: 1.8rem;
            color: #c724b1;
            display: inline-block;
        }
        .promo-box .promo-right {
            background: #c724b1;
            color: white;
            padding: 0.4rem 1.5rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .badge {
            background: #f0e6f0;
            padding: 0.3rem 1rem;
            border-radius: 60px;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .badge .badge-icon {
            color: #c724b1;
            display: inline-block;
        }

        @media (max-width: 600px) {
            .checklist-card { padding: 1.5rem; }
            .header h2 { font-size: 1.5rem; }
        }
    