 /* ─── RESET & BASE ─── */
        *, *::before, *::after { box-sizing: border-box; }

        body {
            margin: 0;
            padding: 0;
            background: #E7E6E6;
            /* font-family: "Inter", sans-serif; */
            font-family: "prometo";
            font-size: 17px;
            color: #fff;
        }

        /* ─── WRAPPER ─── */
        .calc-shell {
            width: 100%;
            padding: 40px 20px 60px;
        }

        .calc-wrap {
            max-width: 980px;
            margin: 0 auto;
        }

        .calc-title {
            text-align: center;
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin: 0 0 36px;
            color: #000000;
        }

        .calc-title span {
            color: #E14525;
        }

        /* ─── TWO-COLUMN GRID ─── */
        .calc-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 32px;
            align-items: start;
        }

        /* ─── SECTION HEADINGS ─── */
        .section-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #2E3642;
            margin: 0 0 20px;
        }

        /* ─── INPUT GROUP ─── */
        .input-group {
            margin-bottom: 24px;
        }

        .input-group label,
        .input-group .field-label {
            display: block;
            font-weight: 600;
            font-size: 16px;
            color: #E14525;
            margin-bottom: 8px;
        }

        /* ─── TEXT / NUMBER INPUTS ─── */
        .m__group {
            position: relative;
            width: 100%;
        }

        .m__group input[type="text"],
        .m__group input[type="number"] {
            width: 100%;
            background: rgb(255 255 255);
            border-radius: 4px;
            border: 1px solid rgb(209, 213, 219);
            height: 48px;
            padding: 5px 36px 5px 12px;
            font-size: 17px;
            color: #000000;
            font-weight: 600;
            font-family: "Inter", sans-serif;
            transition: box-shadow .4s;
            outline: none;
        }

        .m__group input:focus,
        .m__group:hover input {
            box-shadow: 0 0 0 4px rgb(183 183 183 / 30%), 0 0 0 16px rgb(202 235 48 / 0%);
        }

        /* ─── SELECT ─── */
        .m__group select {
            width: 100%;
            background: rgb(255 255 255);
            border-radius: 4px;
            border: 1px solid rgb(202 204 206);
            height: 48px;
            padding: 5px 12px;
            font-size: 15px;
            color: #000000;
            font-weight: 600;
            font-family: "Inter", sans-serif;
            outline: none;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='%23000'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            transition: box-shadow .4s;
        }

        .m__group select:hover,
        .m__group select:focus {
            box-shadow: 0 0 0 4px rgb(183 183 183 / 30%);
        }

        /* ─── +/- BUTTONS ─── */
        .btn-helper {
            border: 0;
            border-radius: 4px;
            position: absolute;
            right: 4px;
            height: 19px;
            width: 28px;
            font-family: monospace;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgb(69 192 192 / 24%);
            transition: background-color .2s;
        }

        .btn-helper:hover {background-color: #b9e4e4;}

        .btn-plus {
            top: 5px;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23ffffff%22%3E%3C%2Fpath%3E%3C%2F%3C%2Fsvg%3E");
            background-size: 10px;
            background-position: center;
            background-repeat: no-repeat;
            transform: rotate(180deg);
        }

        .btn-minus {
            bottom: 5px;
            top: auto;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23ffffff%22%3E%3C%2Fpath%3E%3C%2F%3C%2Fsvg%3E");
            background-size: 10px;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* ─── CUSTOM RADIO TOGGLE ─── */
        .radio-toggle {
            display: flex;
            background: #ffffff;
            padding: 4px;
            border-radius: 6px;
            width: fit-content;
            border: 1px solid #d1d5db;
            gap: 4px;
        }

        .radio-toggle input[type="radio"] { display: none; }

        .radio-toggle label {
            margin: 0;
            padding: 8px 22px;
            cursor: pointer;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            color: #3d3d3d;
            transition: all 0.2s;
        }

        .radio-toggle input[type="radio"]:checked + label {
            background: #005D64;
            color: #ffffff;
            /* box-shadow: 0 2px 6px rgba(202,235,48,0.35); */
        }

        /* ─── SLIDER LABEL ROW ─── */
        .slider-label-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 8px;
        }

        .slider-label-row .field-label {
            font-weight: 600;
            font-size: 16px;
            color: #E14525;
        }

        .slider-val {
            font-size: 18px;
            font-weight: 700;
            color: #005d64;
        }

        /* ─── noUiSlider OVERRIDES (matching style.css) ─── */
        .noUi-horizontal {
            height: 6px;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .noUi-target {
            background: rgb(178 178 178);
            border: 0;
            border-radius: 4px;
            box-shadow: none;
        }

        .noUi-connect {
            background: linear-gradient(90deg, #45c0c0 0%, rgb(0 93 100) 100%);
            box-shadow: none;
            border-radius: 10px;
            transition: none !important;
        }

        @keyframes pulse-white {
            0%   {transform: scale(0.95);box-shadow: 0 0 0 0 rgb(32 33 33 / 26%);}
            70%  { transform: scale(1);    box-shadow: 0 0 0 10px rgba(255,255,255,0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,255,255,0); }
        }

        .noUi-horizontal .noUi-handle {
            width: 32px;
            height: 32px;
            left: -12px;
            top: -13px;
            border: 7px solid #fff;
            border-radius: 50%;
            background-color: rgb(0 93 100);
            box-shadow: rgba(0,0,0,.95) 0 .5px 4px, rgba(0,0,0,.83) 0 6px 13px;
            cursor: pointer;
            animation: pulse-white 2s infinite;
        }

        .noUi-handle::before,
        .noUi-handle::after { display: none; }

        .noUi-tooltip { display: none; }

        /* ─── DIVIDER ─── */
        .divider {
            border: none;
            border-top: 1px solid #dad8d8;
            margin: 8px 0 24px;
        }

        /* ─── HIDDEN ─── */
        .hidden { display: none; }

        /* ─── RIGHT: RESULT CARD ─── */
        .result-sticky {
            position: sticky;
            top: 24px;
        }

        .result-card {
            /* background: #45c0c0; */
            /* border: 1px solid #222; */
            border-radius: 4px;
            padding: 28px 24px;
            /* box-shadow: 0 20px 40px rgba(0,0,0,.6); */
            background-color: #2e3642;
            background-image: url(https://www.advisa.com/wp-content/themes/advisa/img/elem/swirl-pattern.png);
            background-size: 200px auto;
            text-align: center;
        }

        .result-card h3 {
            margin: 0 0 10px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #292929;
            display: none;
        }

        .result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #ffffff;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 4px;
        }

        .result-row:last-of-type { border-bottom: none; }

        .result-row .r-label {
            font-size: 15px;
            color: #1f242b;
            font-weight: 600;
        }

        .result-row .r-value {
            font-size: 15px;
            font-weight: 700;
            color: #005d64;
        }

        /* ─── TOTAL HIGHLIGHT BOX ─── */
        .result-total-box {
            background: rgb(255 255 255 / 8%);
            /* border: 1px dashed #728710; */
            border-radius: 10px;
            padding: 18px 20px;
            /* margin-top: 20px; */
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: space-between;
            align-items: center;
        }

        .result-total-box .t-label {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: .8px;
        }

        .result-total-box .t-value {
            font-size: 60px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
        }

        /* ─── CALCULATE BTN ─── */
        .calculate-btn {
            width: 100%;
            padding: 15px;
            background: #caeb30;
            color: #000;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            margin-top: 20px;
            font-family: "Inter", sans-serif;
            letter-spacing: .3px;
            transition: background .2s, transform .1s;
        }

        .calculate-btn:hover { background: #d6f040; }
        .calculate-btn:active { transform: scale(.98); }

        .result-note {
            font-size: 12px;
            color: #4b5563;
            text-align: center;
            margin: 12px 0 0;
            line-height: 1.5;
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 720px) {
            .calc-grid {
                grid-template-columns: 1fr;
            }
            .result-sticky {
                position: static;
            }
        }


         .btn-plus {
    right: 4px;
    top: 5px;
    height: 18px;
    background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E);
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}
 .btn-minus {
    right: 4px;
    top: auto;
    bottom: 5px;
    height: 18px;
    background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E);
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}


button.comm-btn {
    background: #005d64;
    border: 1px solid #005d64;
    color: white;
    font-weight: 600;
    font-family: 'Inter';
    margin-top: 10px;
    min-width: 50px;
    height: 24px;
    border-radius: 4px;
    /* box-shadow: 0 2px 6px rgb(255 255 255 / 24%); */
    cursor: pointer;
}

button.comm-btn:hover {
    /* background: #caeb30; */
    /* color: black; */
}

.result-total-box.m_negatif {/* background: #ff00002b; *//* border: 1px dashed #871010; */}

.result-total-box.m_negatif #res-net-margin {
    color: #e14525;
}


.is-loading {
    opacity: 0.4;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.15; }
}

.m_hide{
    display: none;
}

.mlogo {
    text-align: right;
    margin-right: 10px;
    margin-bottom: 10px;
}

.mlogo img {
    width: 150px;
    margin-bottom: 5px;
}


#desc_title {
    font-size: 0.8rem;
    color: #666;
    margin-top: 6px;
    line-height: 1.5;
}

#desc_title p,
#desc_title ul { margin: 0; }

#desc_title ul {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Optional fade-in when content appears */
#desc_title.has-content {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

div#coachingHours_desc {
    font-size: 13px;
    color: #1f242b;
    margin-top: 4px;
}


        /* ── Read-only field display ── */
        .readonly-display {
            width: 100%;
            background: #d1d1d1;
            border-radius: 4px;
            border: 1px solid rgb(209, 213, 219);
            height: 48px;
            padding: 5px 12px;
            font-size: 17px;
            color: #444;
            font-weight: 700;
            font-family: "Inter", sans-serif;
            display: flex;
            align-items: center;
            cursor: default;
            box-sizing: border-box;
        }

        /* ── Disabled radio toggle ── */
        .radio-toggle.is-disabled label {
            opacity: 0.38;
            cursor: not-allowed;
        }
        .radio-toggle.is-disabled input[type="radio"]:checked + label {
            background: #888;
            color: #fff;
        }

        /* ── Pricebook contextual note ── */
        #pricebook-note {
            font-size: 12px;
            color: #888;
            margin-top: 6px;
            line-height: 1.5;
            font-style: italic;
            min-height: 0;
        }