.pluto-erp-assessment,
.pluto-erp-report {
    width: 100%;
    box-sizing: border-box;
    color: var(--pluto-text) !important;
    font-family: inherit;
}

.pluto-erp-assessment *,
.pluto-erp-assessment *::before,
.pluto-erp-assessment *::after,
.pluto-erp-report *,
.pluto-erp-report *::before,
.pluto-erp-report *::after {
    box-sizing: border-box;
}

.pluto-erp-assessment .pluto-erp-shell {
    width: 100%;
    max-width: var(--pluto-max-width) !important;
    margin: 0 auto !important;
    padding: var(--pluto-container-padding) !important;
    background: var(--pluto-bg) !important;
    border: var(--pluto-container-border-width) solid var(--pluto-border) !important;
    border-radius: var(--pluto-card-radius) !important;
    box-shadow: var(--pluto-container-shadow) !important;
}

.pluto-erp-assessment .pluto-erp-topline {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 0 0 12px !important;
}

.pluto-erp-assessment .pluto-erp-section-label,
.pluto-erp-assessment .pluto-erp-progress-text {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    font-family: var(--pluto-label-font) !important;
    font-size: var(--pluto-label-size) !important;
    font-weight: var(--pluto-label-weight) !important;
    line-height: 1.3 !important;
    letter-spacing: var(--pluto-label-letter-spacing) !important;
    text-transform: var(--pluto-label-transform) !important;
}

.pluto-erp-assessment .pluto-erp-section-label { color: var(--pluto-section-label) !important; }
.pluto-erp-assessment .pluto-erp-progress-text { color: var(--pluto-progress-text) !important; }

.pluto-erp-assessment .pluto-erp-progress {
    width: 100% !important;
    height: var(--pluto-progress-height) !important;
    margin: 0 0 var(--pluto-progress-bottom-spacing) !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: var(--pluto-progress-inactive) !important;
    border: 0 !important;
    border-radius: var(--pluto-progress-radius) !important;
}

.pluto-erp-assessment .pluto-erp-progress-fill {
    width: 0;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--pluto-progress-active) !important;
    border: 0 !important;
    border-radius: var(--pluto-progress-radius) !important;
    transition: width .25s ease;
}

.pluto-erp-assessment .pluto-erp-question {
    margin: 0 0 var(--pluto-question-bottom-spacing) !important;
    padding: 0 !important;
    color: var(--pluto-question-color) !important;
    background: transparent !important;
    font-family: var(--pluto-question-font) !important;
    font-size: var(--pluto-question-size) !important;
    font-style: normal !important;
    font-weight: var(--pluto-question-weight) !important;
    line-height: var(--pluto-question-line-height) !important;
    letter-spacing: var(--pluto-question-letter-spacing) !important;
    text-align: left !important;
    text-decoration: none !important;
    text-transform: var(--pluto-question-transform) !important;
}

.pluto-erp-assessment .pluto-erp-helper {
    margin: 0 0 28px !important;
    padding: 0 !important;
    color: var(--pluto-helper-color) !important;
    background: transparent !important;
    font-family: var(--pluto-helper-font) !important;
    font-size: var(--pluto-helper-size) !important;
    font-style: normal !important;
    font-weight: var(--pluto-helper-weight) !important;
    line-height: var(--pluto-helper-line-height) !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.pluto-erp-assessment .pluto-erp-options {
    display: grid !important;
    gap: var(--pluto-option-gap) !important;
    margin: 28px 0 0 !important;
    padding: 0 !important;
}

.pluto-erp-assessment button.pluto-erp-option {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: var(--pluto-option-padding-y) var(--pluto-option-padding-x) !important;
    color: var(--pluto-option-text) !important;
    background: var(--pluto-option-bg) !important;
    border: var(--pluto-option-border-width) solid var(--pluto-option-border) !important;
    border-radius: var(--pluto-option-radius) !important;
    box-shadow: none !important;
    font-family: var(--pluto-option-font) !important;
    font-size: var(--pluto-option-size) !important;
    font-style: normal !important;
    font-weight: var(--pluto-option-weight) !important;
    line-height: var(--pluto-option-line-height) !important;
    letter-spacing: normal !important;
    text-align: left !important;
    text-decoration: none !important;
    text-shadow: none !important;
    text-transform: var(--pluto-option-transform) !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease !important;
}

.pluto-erp-assessment button.pluto-erp-option:hover,
.pluto-erp-assessment button.pluto-erp-option:focus-visible {
    color: var(--pluto-option-hover-text) !important;
    background: var(--pluto-option-hover-bg) !important;
    border-color: var(--pluto-option-hover-border) !important;
    transform: translateY(-1px);
}

.pluto-erp-assessment button.pluto-erp-option.is-selected,
.pluto-erp-assessment button.pluto-erp-option.is-selected:hover {
    color: var(--pluto-option-selected-text) !important;
    background: var(--pluto-option-selected-bg) !important;
    border-color: var(--pluto-option-selected-border) !important;
    box-shadow: inset 0 0 0 1px var(--pluto-option-selected-border) !important;
}

.pluto-erp-assessment .pluto-erp-actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    margin: 34px 0 0 !important;
    padding: 0 !important;
}

.pluto-erp-assessment button.pluto-erp-back,
.pluto-erp-assessment button.pluto-erp-continue,
.pluto-erp-assessment button.pluto-erp-submit,
.pluto-erp-report .pluto-report-primary,
.pluto-erp-report .pluto-report-secondary {
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: var(--pluto-button-padding-y) var(--pluto-button-padding-x) !important;
    border-radius: var(--pluto-button-radius) !important;
    box-shadow: none !important;
    font-family: var(--pluto-button-font) !important;
    font-size: var(--pluto-button-size) !important;
    font-style: normal !important;
    font-weight: var(--pluto-button-weight) !important;
    line-height: 1.35 !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
    text-shadow: none !important;
    text-transform: var(--pluto-button-transform) !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.pluto-erp-assessment button.pluto-erp-continue,
.pluto-erp-assessment button.pluto-erp-submit,
.pluto-erp-report .pluto-report-primary {
    color: var(--pluto-continue-text) !important;
    background: var(--pluto-continue-bg) !important;
    border: 1px solid var(--pluto-continue-border) !important;
}

.pluto-erp-assessment button.pluto-erp-continue:not(:disabled):hover,
.pluto-erp-assessment button.pluto-erp-submit:not(:disabled):hover,
.pluto-erp-report .pluto-report-primary:hover {
    color: var(--pluto-continue-hover-text) !important;
    background: var(--pluto-continue-hover-bg) !important;
    border-color: var(--pluto-continue-hover-border) !important;
}

.pluto-erp-assessment button.pluto-erp-back,
.pluto-erp-report .pluto-report-secondary {
    color: var(--pluto-back-text) !important;
    background: var(--pluto-back-bg) !important;
    border: 1px solid var(--pluto-back-border) !important;
}

.pluto-erp-assessment button.pluto-erp-back:not(:disabled):hover,
.pluto-erp-report .pluto-report-secondary:hover {
    color: var(--pluto-back-hover-text) !important;
    background: var(--pluto-back-hover-bg) !important;
    border-color: var(--pluto-back-hover-border) !important;
}

.pluto-erp-assessment button:disabled {
    opacity: var(--pluto-disabled-opacity) !important;
    cursor: not-allowed !important;
}

.pluto-erp-assessment .pluto-erp-contact-intro { margin: 0 0 28px !important; }

.pluto-erp-assessment .pluto-erp-contact-intro h2 {
    margin: 0 0 12px !important;
    padding: 0 !important;
    color: var(--pluto-question-color) !important;
    font-family: var(--pluto-question-font) !important;
    font-size: min(var(--pluto-question-size), 38px) !important;
    font-weight: var(--pluto-question-weight) !important;
    line-height: var(--pluto-question-line-height) !important;
    text-transform: var(--pluto-question-transform) !important;
}

.pluto-erp-assessment .pluto-erp-contact-intro p {
    margin: 0 !important;
    color: var(--pluto-helper-color) !important;
    font-family: var(--pluto-helper-font) !important;
    font-size: var(--pluto-helper-size) !important;
    line-height: var(--pluto-helper-line-height) !important;
}

.pluto-erp-assessment .pluto-erp-contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
}

.pluto-erp-assessment .pluto-erp-contact-grid label {
    display: grid !important;
    gap: 7px !important;
    margin: 0 !important;
    color: var(--pluto-text) !important;
    font-family: var(--pluto-form-label-font) !important;
    font-size: var(--pluto-form-label-size) !important;
    font-weight: var(--pluto-form-label-weight) !important;
    line-height: 1.4 !important;
    text-transform: none !important;
}

.pluto-erp-assessment .pluto-erp-contact-grid input {
    width: 100% !important;
    height: var(--pluto-input-height) !important;
    min-height: var(--pluto-input-height) !important;
    margin: 0 !important;
    padding: 10px 12px !important;
    color: var(--pluto-input-text) !important;
    background: var(--pluto-input-bg) !important;
    border: var(--pluto-input-border-width) solid var(--pluto-input-border) !important;
    border-radius: var(--pluto-input-radius) !important;
    box-shadow: none !important;
    font-family: var(--pluto-input-font) !important;
    font-size: var(--pluto-input-size) !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    text-transform: none !important;
}

.pluto-erp-assessment .pluto-erp-contact-grid .pluto-full { grid-column: 1 / -1 !important; }
.pluto-erp-assessment .pluto-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.pluto-erp-assessment .pluto-erp-error { margin: 16px 0 0 !important; color: #B42318 !important; font-size: 14px !important; }


/* Matrix questions */
.pluto-erp-assessment .pluto-matrix {
    margin-top: 26px !important;
    overflow: hidden !important;
    border: var(--pluto-option-border-width) solid var(--pluto-border) !important;
    border-radius: var(--pluto-option-radius) !important;
    background: var(--pluto-bg) !important;
}
.pluto-erp-assessment .pluto-matrix-header,
.pluto-erp-assessment .pluto-matrix-row {
    display: grid !important;
    grid-template-columns: minmax(180px, 1.3fr) repeat(var(--pluto-matrix-columns), minmax(78px, 1fr)) !important;
    align-items: stretch !important;
}
.pluto-erp-assessment .pluto-matrix-header {
    background: #F7F8FB !important;
    border-bottom: 1px solid var(--pluto-border) !important;
}
.pluto-erp-assessment .pluto-matrix-header > div {
    padding: 12px 7px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: var(--pluto-muted) !important;
    font-family: var(--pluto-option-font) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}
.pluto-erp-assessment .pluto-matrix-row { border-bottom: 1px solid var(--pluto-border) !important; }
.pluto-erp-assessment .pluto-matrix-row:last-child { border-bottom: 0 !important; }
.pluto-erp-assessment .pluto-matrix-row-label {
    padding: 16px !important;
    display: flex !important;
    align-items: center !important;
    color: var(--pluto-text) !important;
    font-family: var(--pluto-option-font) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}
.pluto-erp-assessment .pluto-matrix-choices { display: contents !important; }
.pluto-erp-assessment .pluto-matrix-choice {
    min-width: 0 !important;
    min-height: 58px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
    border-left: 1px solid var(--pluto-border) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
}
.pluto-erp-assessment .pluto-matrix-dot {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    border: 2px solid var(--pluto-border) !important;
    border-radius: 50% !important;
    background: #FFFFFF !important;
    transition: all .15s ease !important;
}
.pluto-erp-assessment .pluto-matrix-choice:hover .pluto-matrix-dot { border-color: #1717D5 !important; }
.pluto-erp-assessment .pluto-matrix-choice.is-selected { background: var(--pluto-option-selected-bg) !important; }
.pluto-erp-assessment .pluto-matrix-choice.is-selected .pluto-matrix-dot {
    border: 6px solid #1717D5 !important;
}
.pluto-erp-assessment .pluto-matrix-mobile-label { display: none !important; }
@media (max-width: 820px) {
    .pluto-erp-assessment .pluto-matrix { border: 0 !important; overflow: visible !important; background: transparent !important; }
    .pluto-erp-assessment .pluto-matrix-header { display: none !important; }
    .pluto-erp-assessment .pluto-matrix-row {
        display: block !important;
        margin-bottom: 16px !important;
        padding: 16px !important;
        border: 1px solid var(--pluto-border) !important;
        border-radius: var(--pluto-option-radius) !important;
        background: var(--pluto-bg) !important;
    }
    .pluto-erp-assessment .pluto-matrix-row-label { padding: 0 0 12px !important; font-size: 15px !important; }
    .pluto-erp-assessment .pluto-matrix-choices { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
    .pluto-erp-assessment .pluto-matrix-choice {
        min-height: 44px !important;
        padding: 9px 10px !important;
        justify-content: flex-start !important;
        gap: 9px !important;
        border: 1px solid var(--pluto-border) !important;
        border-radius: 8px !important;
        color: var(--pluto-text) !important;
        font-family: var(--pluto-option-font) !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        text-align: left !important;
    }
    .pluto-erp-assessment .pluto-matrix-choice.is-selected { color: var(--pluto-option-selected-text) !important; border-color: var(--pluto-option-selected-border) !important; }
    .pluto-erp-assessment .pluto-matrix-mobile-label { display: inline !important; flex: 1 !important; }
    .pluto-erp-assessment .pluto-matrix-dot { width: 16px !important; height: 16px !important; flex: 0 0 16px !important; }
    .pluto-erp-assessment .pluto-matrix-choice.is-selected .pluto-matrix-dot { border-width: 5px !important; }
}

/* Saved report */
body.pluto-report-body {
    margin: 0 !important;
    background: #F5F7FB !important;
}

.pluto-erp-report {
    --pluto-report-primary: #1717D5;
    --pluto-report-primary-dark: #1010A8;
    --pluto-report-primary-soft: #EEF0FF;
    --pluto-report-text: #303238;
    --pluto-report-body: #474C56;
    --pluto-report-muted: #6E7480;
    --pluto-report-border: #E0E4EB;
    --pluto-report-bg: #F5F7FB;
    min-height: 100vh !important;
    background: var(--pluto-report-bg) !important;
    color: var(--pluto-report-text) !important;
    font-family: var(--pluto-result-body-font) !important;
}

.pluto-erp-report .pluto-report-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
    background: rgba(255,255,255,.96) !important;
    border-bottom: 1px solid #E8EAF0 !important;
    backdrop-filter: blur(10px) !important;
}

.admin-bar .pluto-erp-report .pluto-report-header {
    top: 32px !important;
}

.pluto-erp-report .pluto-report-header-inner {
    max-width: 1180px !important;
    min-height: 76px !important;
    margin: 0 auto !important;
    padding: 12px 28px !important;
    display: grid !important;
    grid-template-columns: auto 1fr auto auto !important;
    align-items: center !important;
    gap: 24px !important;
}

.pluto-erp-report .pluto-report-brand {
    display: flex !important;
    align-items: center !important;
    color: var(--pluto-report-primary) !important;
    font-family: Arial, sans-serif !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.pluto-erp-report .pluto-report-brand .custom-logo-link {
    display: block !important;
    line-height: 0 !important;
}

.pluto-erp-report .pluto-report-brand img {
    display: block !important;
    width: auto !important;
    max-width: 112px !important;
    max-height: 38px !important;
    object-fit: contain !important;
}

.pluto-erp-report .pluto-report-header-title {
    color: #5F6571 !important;
    font-family: Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.pluto-erp-report .pluto-report-back-link {
    color: #1717D5 !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.pluto-erp-report .pluto-report-back-link:hover {
    text-decoration: underline !important;
}

.pluto-erp-report .pluto-report-toolbar {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
}

.pluto-erp-report .pluto-report-toolbar button,
.pluto-erp-report .pluto-report-toolbar a {
    min-height: 38px !important;
    padding: 9px 13px !important;
    border: 1px solid #DDE1E8 !important;
    border-radius: 8px !important;
    background: #FFFFFF !important;
    color: #303238 !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.pluto-erp-report .pluto-report-toolbar .pluto-report-download {
    color: #FFFFFF !important;
    background: var(--pluto-report-primary) !important;
    border-color: var(--pluto-report-primary) !important;
}

.pluto-erp-report .pluto-report-toolbar button:hover,
.pluto-erp-report .pluto-report-toolbar a:hover {
    border-color: #BFC5CF !important;
    background: #F8F9FB !important;
}

.pluto-erp-report .pluto-report-toolbar .pluto-report-download:hover {
    color: #FFFFFF !important;
    background: var(--pluto-report-primary-dark) !important;
    border-color: var(--pluto-report-primary-dark) !important;
}

.pluto-erp-report .pluto-report-main {
    padding: 46px 20px 80px !important;
}

.pluto-erp-report .pluto-report-wrap {
    max-width: 1060px !important;
    margin: 0 auto !important;
}

.pluto-erp-report .pluto-report-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 220px !important;
    gap: 48px !important;
    align-items: center !important;
    padding: 52px 56px !important;
    background: #FFFFFF !important;
    border: 1px solid #E5E8EF !important;
    border-top: 5px solid var(--pluto-report-primary) !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 45px rgba(22, 28, 45, .06) !important;
}

.pluto-erp-report .pluto-report-eyebrow {
    margin: 0 0 9px !important;
    color: #5F6672 !important;
    font-family: Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .09em !important;
    text-transform: uppercase !important;
}

.pluto-erp-report .pluto-report-result-badge {
    display: inline-flex !important;
    margin: 0 0 20px !important;
    padding: 8px 12px !important;
    color: var(--pluto-report-primary-dark) !important;
    background: var(--pluto-report-primary-soft) !important;
    border: 1px solid #D8DCFF !important;
    border-radius: 999px !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.pluto-erp-report .pluto-report-title {
    max-width: 720px !important;
    margin: 0 0 14px !important;
    color: #303238 !important;
    font-family: var(--pluto-result-heading-font) !important;
    font-size: clamp(36px, 5vw, var(--pluto-result-heading-size)) !important;
    font-weight: var(--pluto-result-heading-weight) !important;
    line-height: 1.08 !important;
    letter-spacing: -.025em !important;
    text-transform: var(--pluto-result-heading-transform) !important;
}

.pluto-erp-report .pluto-report-lede {
    max-width: 720px !important;
    margin: 0 !important;
    color: #555B66 !important;
    font-family: var(--pluto-result-body-font) !important;
    font-size: 18px !important;
    line-height: 1.55 !important;
}

.pluto-erp-report .pluto-report-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px 18px !important;
    margin: 26px 0 0 !important;
    color: #68707C !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
}

.pluto-erp-report .pluto-report-meta span {
    position: relative !important;
}

.pluto-erp-report .pluto-report-meta span + span::before {
    content: "•" !important;
    position: absolute !important;
    left: -11px !important;
    color: #B0B5BF !important;
}

.pluto-erp-report .pluto-report-readiness-score {
    min-height: 220px !important;
    padding: 28px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    background: var(--pluto-report-primary) !important;
    border-radius: 16px !important;
    color: #FFFFFF !important;
}

.pluto-erp-report .pluto-report-readiness-score span {
    font-size: 13px !important;
    font-weight: 700 !important;
    opacity: .8 !important;
}

.pluto-erp-report .pluto-report-readiness-score strong {
    margin: 10px 0 0 !important;
    font-family: Arial, sans-serif !important;
    font-size: 72px !important;
    font-weight: 700 !important;
    line-height: .95 !important;
}

.pluto-erp-report .pluto-report-readiness-score em {
    margin: 5px 0 12px !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    opacity: .75 !important;
}

.pluto-erp-report .pluto-report-readiness-score small {
    max-width: 150px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    opacity: .8 !important;
}

.pluto-erp-report .pluto-report-summary-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
    margin: 16px 0 38px !important;
}

.pluto-erp-report .pluto-summary-card {
    min-height: 128px !important;
    padding: 22px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: #FFFFFF !important;
    border: 1px solid #E5E8EF !important;
    border-radius: 14px !important;
}

.pluto-erp-report .pluto-summary-label {
    margin-bottom: 8px !important;
    color: #626A76 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
}

.pluto-erp-report .pluto-summary-card strong {
    color: #303238 !important;
    font-family: Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.pluto-erp-report .pluto-summary-card small {
    margin-top: 5px !important;
    color: #6D7480 !important;
    font-size: 12px !important;
}

.pluto-erp-report .pluto-report-section {
    margin: 0 0 24px !important;
    padding: 44px 48px !important;
    background: #FFFFFF !important;
    border: 1px solid #E5E8EF !important;
    border-radius: 16px !important;
}

.pluto-erp-report .pluto-report-section-heading {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    margin: 0 0 30px !important;
}

.pluto-erp-report .pluto-report-section-heading > span {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
    display: grid !important;
    place-items: center !important;
    color: var(--pluto-report-primary) !important;
    background: var(--pluto-report-primary-soft) !important;
    border-radius: 9px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.pluto-erp-report .pluto-report-section-heading h2 {
    margin: 0 !important;
    color: #303238 !important;
    font-family: var(--pluto-result-heading-font) !important;
    font-size: 28px !important;
    font-weight: var(--pluto-result-heading-weight) !important;
    line-height: 1.15 !important;
    text-transform: none !important;
}

.pluto-erp-report .pluto-report-two-col {
    display: grid !important;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .75fr) !important;
    gap: 42px !important;
    align-items: start !important;
}

.pluto-erp-report .pluto-report-prose p {
    margin: 0 !important;
    color: #454A54 !important;
    font-family: var(--pluto-result-body-font) !important;
    font-size: var(--pluto-result-body-size) !important;
    line-height: var(--pluto-result-body-line-height) !important;
}

.pluto-erp-report .pluto-signal-panel {
    padding: 24px 26px !important;
    background: #F7F8FC !important;
    border-left: 4px solid var(--pluto-report-primary) !important;
    border-radius: 10px !important;
}

.pluto-erp-report .pluto-signal-title {
    margin: 0 0 14px !important;
    color: var(--pluto-report-text) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.pluto-erp-report .pluto-signal-list {
    margin: 0 !important;
    padding: 0 0 0 20px !important;
    display: block !important;
    color: var(--pluto-report-body) !important;
}

.pluto-erp-report .pluto-signal-list li {
    margin: 0 0 9px !important;
    padding-left: 2px !important;
    color: var(--pluto-report-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
}

.pluto-erp-report .pluto-signal-list li:last-child {
    margin-bottom: 0 !important;
}

.pluto-erp-report .pluto-signal-list li::marker {
    color: var(--pluto-report-primary) !important;
}

.pluto-erp-report .pluto-readiness-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
}

.pluto-erp-report .pluto-readiness-card {
    padding: 20px !important;
    background: #FAFAFC !important;
    border: 1px solid #E8EAF0 !important;
    border-radius: 12px !important;
}

.pluto-erp-report .pluto-readiness-card-head {
    min-height: 42px !important;
    margin: 0 0 14px !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    color: #444A54 !important;
    font-size: 13px !important;
}

.pluto-erp-report .pluto-readiness-card-head strong {
    font-weight: 700 !important;
}

.pluto-erp-report .pluto-readiness-card-head span {
    color: var(--pluto-report-primary) !important;
    font-weight: 700 !important;
}

.pluto-erp-report .pluto-dimension-track {
    height: 7px !important;
    overflow: hidden !important;
    background: #E6E8EE !important;
    border-radius: 99px !important;
}

.pluto-erp-report .pluto-dimension-fill {
    height: 100% !important;
    background: var(--pluto-report-primary) !important;
    border-radius: 99px !important;
}

.pluto-erp-report .pluto-diagnostic-card {
    min-height: 185px !important;
    display: flex !important;
    flex-direction: column !important;
}

.pluto-erp-report .pluto-diagnostic-card .pluto-readiness-card-head {
    min-height: 44px !important;
}

.pluto-erp-report .pluto-diagnostic-band {
    margin-top: 10px !important;
    color: #5B6270 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.pluto-erp-report .pluto-diagnostic-description {
    margin: 14px 0 0 !important;
    color: #646B77 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.pluto-erp-report .pluto-strategy-spectrum {
    margin-top: 2px !important;
}

.pluto-erp-report .pluto-strategy-labels {
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
    color: #626975 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

.pluto-erp-report .pluto-strategy-labels span:last-child {
    text-align: right !important;
}

.pluto-erp-report .pluto-strategy-track {
    position: relative !important;
    height: 7px !important;
    margin: 7px 4px 0 !important;
    background: linear-gradient(90deg, #C9D0FF 0%, #E4E7EE 50%, #1717D5 100%) !important;
    border-radius: 99px !important;
}

.pluto-erp-report .pluto-strategy-marker {
    position: absolute !important;
    top: 50% !important;
    width: 16px !important;
    height: 16px !important;
    transform: translate(-50%, -50%) !important;
    background: #FFFFFF !important;
    border: 4px solid var(--pluto-report-primary) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 0 2px #FFFFFF !important;
}

.pluto-erp-report .pluto-guidance-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}

.pluto-erp-report .pluto-guidance-item {
    min-height: 88px !important;
    padding: 18px 18px !important;
    display: grid !important;
    grid-template-columns: 32px 1fr !important;
    gap: 13px !important;
    align-items: start !important;
    background: #FAFAFC !important;
    border: 1px solid #E8EAF0 !important;
    border-radius: 11px !important;
}

.pluto-erp-report .pluto-guidance-number {
    width: 32px !important;
    height: 32px !important;
    display: grid !important;
    place-items: center !important;
    color: #FFFFFF !important;
    background: var(--pluto-report-primary) !important;
    border-radius: 50% !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.pluto-erp-report .pluto-guidance-item p {
    margin: 3px 0 0 !important;
    color: #4C515B !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.pluto-erp-report .pluto-report-callout {
    margin: 0 0 24px !important;
    padding: 38px 44px !important;
    color: #FFFFFF !important;
    background: var(--pluto-report-primary) !important;
    border-radius: 16px !important;
}

.pluto-erp-report .pluto-report-callout .pluto-report-eyebrow {
    color: rgba(255,255,255,.7) !important;
}

.pluto-erp-report .pluto-report-callout p {
    max-width: 800px !important;
    margin: 0 !important;
    color: #FFFFFF !important;
    font-family: var(--pluto-result-heading-font) !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
}

.pluto-erp-report .pluto-report-ctas {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 24px 0 0 !important;
}

.pluto-erp-report .pluto-report-primary,
.pluto-erp-report .pluto-report-secondary {
    min-height: 44px !important;
    padding: 11px 17px !important;
    display: inline-flex !important;
    align-items: center !important;
    border-radius: 8px !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.pluto-erp-report .pluto-report-primary {
    color: var(--pluto-report-primary) !important;
    background: #FFFFFF !important;
    border: 1px solid #FFFFFF !important;
}

.pluto-erp-report .pluto-report-secondary {
    color: #FFFFFF !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,.45) !important;
}

.pluto-erp-report .pluto-response-group {
    margin: 0 0 32px !important;
}

.pluto-erp-report .pluto-response-group:last-child {
    margin-bottom: 0 !important;
}

.pluto-erp-report .pluto-response-group h3 {
    margin: 0 0 10px !important;
    color: var(--pluto-report-primary) !important;
    font-family: Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .055em !important;
    text-transform: uppercase !important;
}

.pluto-erp-report .pluto-response-list {
    border-top: 1px solid #E7E9EF !important;
}

.pluto-erp-report .pluto-report-answer {
    display: grid !important;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, .6fr) !important;
    gap: 36px !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid #E7E9EF !important;
}

.pluto-erp-report .pluto-response-question {
    color: #4B505A !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
}

.pluto-erp-report .pluto-response-answer {
    color: var(--pluto-report-primary) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
}

.pluto-erp-report .pluto-report-footer {
    padding: 24px 4px !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 20px !important;
    color: #68707C !important;
    font-size: 12px !important;
}

.pluto-erp-report .pluto-report-footer > div {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
}

.pluto-erp-report .pluto-report-footer strong {
    color: #454B55 !important;
}

.pluto-erp-report .pluto-report-footer a {
    color: var(--pluto-report-primary) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

@media (max-width: 900px) {
    .pluto-erp-report .pluto-report-header-inner {
        grid-template-columns: auto 1fr auto !important;
    }

    .pluto-erp-report .pluto-report-back-link {
        grid-column: 3 !important;
        grid-row: 1 !important;
    }

    .pluto-erp-report .pluto-report-header-title {
        display: none !important;
    }

    .pluto-erp-report .pluto-report-toolbar {
        grid-column: 1 / -1 !important;
        justify-content: flex-start !important;
        padding-top: 4px !important;
    }

    .pluto-erp-report .pluto-report-hero {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        padding: 40px !important;
    }

    .pluto-erp-report .pluto-report-readiness-score {
        min-height: auto !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .pluto-erp-report .pluto-report-readiness-score strong {
        font-size: 58px !important;
    }

    .pluto-erp-report .pluto-report-summary-grid,
    .pluto-erp-report .pluto-readiness-grid {
        grid-template-columns: 1fr !important;
    }

    .pluto-erp-report .pluto-report-two-col {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

@media (max-width: 700px) {
    .pluto-erp-assessment .pluto-erp-shell { padding: var(--pluto-container-padding-mobile) !important; }
    .pluto-erp-assessment .pluto-erp-question { font-size: var(--pluto-question-size-mobile) !important; }
    .pluto-erp-assessment .pluto-erp-contact-grid { grid-template-columns: 1fr !important; }

    .pluto-erp-report .pluto-report-header {
        position: static !important;
    }

    .pluto-erp-report .pluto-report-header-inner {
        padding: 14px 18px !important;
    }

    .pluto-erp-report .pluto-report-main {
        padding: 24px 12px 60px !important;
    }

    .pluto-erp-report .pluto-report-hero,
    .pluto-erp-report .pluto-report-section,
    .pluto-erp-report .pluto-report-callout {
        padding: 28px 22px !important;
        border-radius: 13px !important;
    }

    .pluto-erp-report .pluto-report-title {
        font-size: var(--pluto-result-heading-size-mobile) !important;
    }

    .pluto-erp-report .pluto-report-meta {
        flex-direction: column !important;
        gap: 4px !important;
    }

    .pluto-erp-report .pluto-report-meta span + span::before {
        display: none !important;
    }

    .pluto-erp-report .pluto-guidance-grid {
        grid-template-columns: 1fr !important;
    }

    .pluto-erp-report .pluto-report-answer {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    .pluto-erp-report .pluto-report-footer {
        flex-direction: column !important;
    }
}


.pluto-erp-report .pluto-report-answer-matrix { grid-template-columns: 1fr !important; gap: 12px !important; }
.pluto-erp-report .pluto-report-matrix-responses {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 24px !important;
}
.pluto-erp-report .pluto-report-matrix-responses > div {
    display: flex !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #EEF0F4 !important;
}
.pluto-erp-report .pluto-report-matrix-responses span { color: #5C626D !important; font-size: 13px !important; font-weight: 600 !important; }
.pluto-erp-report .pluto-report-matrix-responses strong { color: var(--pluto-report-primary-dark) !important; font-size: 13px !important; font-weight: 700 !important; text-align: right !important; }
@media (max-width: 700px) { .pluto-erp-report .pluto-report-matrix-responses { grid-template-columns: 1fr !important; } }

@media print {
    @page {
        margin: 14mm;
    }

    body.pluto-report-body {
        background: #FFFFFF !important;
    }

    .pluto-erp-report .pluto-report-header,
    #wpadminbar {
        display: none !important;
    }

    html {
        margin-top: 0 !important;
    }

    .pluto-erp-report .pluto-report-main {
        padding: 0 !important;
    }

    .pluto-erp-report .pluto-report-wrap {
        max-width: none !important;
    }

    .pluto-erp-report .pluto-report-hero,
    .pluto-erp-report .pluto-report-section,
    .pluto-erp-report .pluto-report-callout,
    .pluto-erp-report .pluto-summary-card {
        box-shadow: none !important;
        break-inside: avoid !important;
    }

    .pluto-erp-report .pluto-report-summary-grid {
        break-inside: avoid !important;
    }

    .pluto-erp-report .pluto-report-footer {
        display: none !important;
    }
}
