
        /* ----- isolated module, affects nothing outside ----- */
        .sm-module * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .sm-module {
            display: block;
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            line-height: 1.5;
            color: #1e293b;
            background: transparent;
            max-width: 1320px;
            margin: 0 auto;
        }

        /* ---------- #c724b1 accent ---------- */
        .sm-module .accent-clr {
            color: #c724b1;
        }
        .sm-module .accent-bg {
            background: #c724b1;
            color: white;
        }
        .sm-module .accent-border {
            border-color: #c724b1;
        }
        .sm-module hr.accent-hr {
            border: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c724b1, transparent);
            margin: 1.2rem 0;
        }

        /* main card */
        .sm-module .pcb-card {
            background: white;
            border-radius: 2.5rem;
            box-shadow: 0 25px 40px -15px rgba(0,0,0,0.15);
            padding: 2.2rem 2rem;
            border: 1px solid #f0e4f0;
        }

        /* header with minimal decoration */
        .sm-module .header-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.8rem;
        }
        .sm-module .title-badge {
            font-size: 1.6rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sm-module .title-badge i {
            font-style: normal;
            font-size: 2rem;
            color: #c724b1;
        }
        .sm-module .smiery-tag {
            background: #c724b1;
            color: white;
            border-radius: 40px;
            padding: 0.3rem 1.2rem;
            font-weight: 500;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

        /* comparison table – clean & readable */
        .sm-module .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0 2rem;
            border-radius: 1.8rem;
            border: 1px solid #ece3f0;
        }
        .sm-module table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            font-size: 0.95rem;
            min-width: 650px;
        }
        .sm-module th {
            background: #fbf2fc;
            color: #2c2c3a;
            font-weight: 600;
            padding: 1rem 0.8rem;
            text-align: center;
            border-bottom: 2px solid #c724b1;
        }
        .sm-module td {
            padding: 0.9rem 0.8rem;
            border-bottom: 1px solid #ede7f0;
            text-align: center;
        }
        .sm-module tr:last-child td {
            border-bottom: none;
        }
        .sm-module .param-left {
            text-align: left;
            font-weight: 500;
            background-color: #fcfaff;
        }
        .sm-module td:first-child {
            font-weight: 500;
            color: #2d3a4c;
        }
        .sm-module .accent-cell {
            color: #c724b1;
            font-weight: 600;
        }

        /* feature grid – 4 columns */
        .sm-module .feature-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0 1.2rem;
        }
        .sm-module .feature-item {
            flex: 1 1 180px;
            background: #fbf7fd;
            border-radius: 1.8rem;
            padding: 1.2rem 1rem;
            text-align: center;
            border: 1px solid rgba(199,36,177,0.2);
        }
        .sm-module .feature-icon {
            font-size: 2rem;
            color: #c724b1;
            margin-bottom: 0.3rem;
            font-family: 'Segoe UI', 'Arial Unicode MS', 'Apple Color Emoji', 'Bravura', 'Musical Symbols', sans-serif;
        }
        .sm-module .feature-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }
        .sm-module .feature-desc {
            font-size: 0.85rem;
            color: #4a5568;
        }

        /* pricing / combo box */
        .sm-module .pricing-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            background: #f7f0fa;
            border-radius: 2rem;
            padding: 1.8rem 2rem;
            margin: 2rem 0 1.8rem;
            align-items: center;
        }
        .sm-module .pricing-left {
            flex: 2 1 280px;
        }
        .sm-module .pricing-left h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        .sm-module .pricing-left p {
            color: #2f4052;
        }
        .sm-module .pricing-right {
            flex: 1 1 200px;
            text-align: center;
        }
        .sm-module .big-discount {
            font-size: 2.2rem;
            font-weight: 700;
            color: #c724b1;
            line-height: 1.1;
        }
        .sm-module .small-note {
            font-size: 0.8rem;
            color: #5f6b7c;
        }

        /* CTA buttons (pure, no extra) */
        .sm-module .cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: space-between;
            align-items: center;
            margin: 2rem 0 0.5rem;
        }
        .sm-module .btn {
            border: none;
            background: transparent;
            font-weight: 600;
            padding: 0.8rem 1.8rem;
            border-radius: 60px;
            cursor: default;
            font-size: 1rem;
            transition: 0.1s;
        }
        .sm-module .btn-primary {
            background: #c724b1;
            color: white;
            box-shadow: 0 8px 16px -6px rgba(199,36,177,0.4);
        }
        .sm-module .btn-outline {
            border: 2px solid #c724b1;
            color: #c724b1;
            background: white;
        }
        .sm-module .btn-outline i {
            font-style: normal;
            color: #c724b1;
            margin-right: 4px;
        }
        .sm-module .express-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            align-items: center;
            margin-top: 1rem;
        }
        .sm-module .tag {
            background: #f0e6f0;
            padding: 0.3rem 1.2rem;
            border-radius: 60px;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .sm-module .tag i {
            color: #c724b1;
            font-style: normal;
        }
        .sm-module .storage-line {
            background: white;
            border-radius: 60px;
            padding: 0.5rem 1.5rem;
            border: 1px dashed #c724b1;
            display: inline-block;
        }

        /* one po, full service */
        .sm-module .po-banner {
            background: #fcf2fb;
            border-radius: 3rem;
            padding: 1.2rem 2rem;
            margin: 1.8rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .sm-module .po-banner span {
            font-size: 1.2rem;
        }
        .sm-module .engineer-note {
            font-style: italic;
            color: #435267;
        }

        /* responsive */
        @media (max-width: 700px) {
            .sm-module .pcb-card { padding: 1.5rem; }
            .sm-module .header-row { flex-direction: column; align-items: start; gap: 0.8rem; }
        }
    