     .card-soft {
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            padding: 16px;
            background: #fff
        }
    
    card,
    h3 {
        /* color: black; */
        font-weight: bolder;
    }

    .badges {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        opacity: 0.8;
    }

    .small {
        font-size: 14px;
        color: #334155;
    }

    .kpis {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .kpi {
        background: #0f172a;
        color: #fff;
        padding: 10px 12px;
        border-radius: 10px;
        font-weight: 600;
    }

    input,
    select {
        width: 100%;
        padding: 10px;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
    }

    .muted {
        color: var(--muted);
        font-size: 14px;
    }

    .toggle {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .switch {
        position: relative;
        width: 48px;
        height: 26px;
        display: inline-block;
    }

    .switch input {
        display: none;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #cbd5e1;
        border-radius: 26px;
        transition: .2s;
    }

    .slider:before {
        position: absolute;
        content: '';
        height: 22px;
        width: 22px;
        left: 2px;
        top: 2px;
        background: #fff;
        border-radius: 50%;
        transition: .2s;
    }

    input:checked+.slider {
        background: #0ea5e9;
    }

    input:checked+.slider:before {
        transform: translateX(22px);
    }

    .sum {
        font-size: 22px;
        font-weight: 800;
    }

    .note {
        background: #ecfeff;
        border: 1px solid #06b6d4;
        color: #0e7490;
        padding: 10px 12px;
        border-radius: 10px;
    }
    

    .calc {
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr;
    }

    @media(min-width: 800px) {
        .calc {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .price h3 {
            margin-bottom: .25rem
        }

        .price .num {
            font-size: 1.8rem;
            font-weight: 800
        }

        .icon-bullet {
            list-style: none;
            padding-left: 0
        }

        .icon-bullet li::before {
            content: "✓";
            color: #16a34a;
            font-weight: 800;
            margin-right: .5rem
        }

        .badge-sla {
            background: #dbeafe;
            color: #1d4ed8
        }