.nowrap {
    white-space: nowrap;
}

.sme-assessment-page {
    background: linear-gradient(180deg, rgba(0, 171, 142, 0.40) 0%, #003233 100%), linear-gradient(0deg, #003233 0%, #003233 100%), #FFF;
    color: #fff;
    font-family: inherit;
}

.sme-assessment-page section .container {
    padding: 48px 16px 80px;
}

.sme-assessment-page section .container .sc-inner {
    max-width: 1140px;
    padding: 0;
    margin: 0 auto;
}

.sme-assessment-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.assessment-box-container {
    background: #FAFAFA;
    border: 2px solid #EBEBEB;
    ;
    border-radius: 16px;
    padding: 40px 16px 80px;
    max-width: 1140px;
    margin: 0 auto;
    color: #003233;
}

.assessment-box-inner {
    max-width: 768px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.sme-assessment-header {
    text-align: center;
}

.sme-assessment-header h2.kc-h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    margin-bottom: 16px;
}

.sme-assessment-header p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Content paragraphs */
.sme-assessment-content {
    text-align: center;
    max-width: 1140px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-size: 18px;
    line-height: 1.6;
}

.foundation-recommend {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sme-assessment-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.sme-assessment-content img {
    max-width: 300px;
}

/* Steps block - Horizontal Accordion */
.sme-assessment-step {
    width: 100%;
    max-width: 1140px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    background: rgba(1, 51, 52, 0.50);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    border: 1px solid #EBEBEB;
    min-width: 0;
    overflow: hidden;
    height: auto;
}

/* Header layout management */
.step-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.step-info {
    order: 2;
    /* Title below icon in default */
}

.step-icon {
    order: 1;
    /* Icon at top in default */
    width: 64px;
    height: 64px;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-number {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: normal;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

.step-detail {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.step-detail ul {
    padding-left: 20px;
    margin: 0;
}

/* Desktop Interactivity - Accordion logic */
/* Desktop - Static Steps (Interactive accordion removed) */
@media screen and (min-width: 992px) {
    /* No interactivity logic needed for steps */
}

/* Consent Block */
.sme-assessment-consent {
    max-width: 900px;
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.consent-input input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    background: transparent;
    border: 1px solid #DDD;
    border-radius: 4px;
    outline: none;
    display: inline-block;
    position: relative;
}

.consent-input input[type="checkbox"]:checked {
    background: url('../img/icon/icon-checked.svg') no-repeat center;
    background-size: cover;
    border: 0;
}

.consent-text .consent-desc {
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
    color: #FFF;
}



.consent-text .policy-links {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 300;
    line-height: normal;
    color: #FFF;
}

.consent-text a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    transition: color 0.2s;
}

.consent-text a:hover {
    color: #fff;
}

.consent-action {
    text-align: center;
    margin-top: 48px;
}

.btn-submit {
    background-color: #00AB8E;
    color: #fff;
    border: 1px solid #00AB8E;
    border-radius: 16px;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:disabled {
    background-color: #F5F5F5;
    color: #CCCCCC;
    border: 1px solid #EEE;
    cursor: not-allowed;
}

.btn-submit:not(:disabled):hover {
    background-color: #00795C;
    border: 1px solid #00795C;
}

/* --------------- Industry Selection --------------- */
/* --------------- Stage Indicator (Redesigned) --------------- */
.sme-stage-indicator {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.stage-steps {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 700px;
    /* Adjusted for better spacing */
}

.stage-steps .step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Line Container logic */
.step .step-line-container {
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 8px;
}

.step .line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: #FFFFFF;
    width: 50%;
    z-index: 1;
}

.step .line.left {
    left: 0;
}

.step .line.right {
    right: 0;
}

/* Visibility logic for first/last lines */
.step:first-child .line.left,
.step:last-child .line.right {
    display: none;
}

.step .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #F0F2F5;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Active State */
.step.active .dot {
    background: #FFFFFF;
    border: 2px solid #00AB8E;
}

.step.active .label {
    font-weight: 600;
}

/* Completed State */
.step.completed .dot {
    background: #00AB8E;
    border-color: #00AB8E;
}

.step.completed .dot::after {
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/icon/icon-checkpoint.svg') no-repeat center;
}

/* Completed Lines */
.step.completed .line.right,
.step.completed .line.left,
.step.active .line.left {
    background: #00AB8E;
}

.stage-steps .step .label {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

/* Mobile adjustments for indicator */
@media screen and (max-width: 768px) {
    #sc-sme-industry-selection .container {
        padding: 48px 0 0;
    }

    .stage-steps .step .label {
        font-size: 11px;
    }

    .step .dot {
        width: 16px;
        height: 16px;
    }

    .step .step-line-container {
        height: 16px;
    }
}

/* Industry Title and Grid (Scoped) */
#sc-sme-industry-selection .industry-title {
    text-align: center;
    color: #003233;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 60px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 177px);
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.industry-item {
    display: block;
}

.industry-card {
    position: relative;
    width: 100%;
    aspect-ratio: 177 / 270;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: #E6E6E6;
    border: 2px solid #BDBDBD;
    transition: all 0.3s ease;
}

.industry-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-card:hover .industry-card-img {
    transform: scale(1.2);
}

.industry-card:hover,
.industry-item.selected .industry-card {
    border-color: #00A652;
}

.industry-card:hover {
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15);
}

.industry-card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgb(0 0 0 / 11%), transparent);
    pointer-events: none;
    z-index: 1;
}

.industry-card-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    z-index: 2;
    cursor: pointer;
    text-align: left;
}

.selection-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

/* Questions Content Styling */
.question-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.questions-header .section-pagination {
    color: #CECECE;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 4px;
}

.questions-header .section-title-main {
    color: #003233;
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 32px;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.question-number {
    font-size: 20px;
    color: #003233;
    font-weight: 600;
    line-height: 1.5;
    min-width: 32px;
    text-align: center;
}

.question-qa {
    flex: 1;
}

.question-text {
    font-size: 20px;
    color: #003233;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.badge-multiple {
    display: inline-block;
    border: 1px solid #00AB8E;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    padding: 4px 10px;
    border-radius: 99px;
    margin: 4px 0 8px 0;
}

.options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.question-error-msg {
    color: #F04438;
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
}

.option-item {
    position: relative;
}

.option-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.option-item label {
    display: flex;
    padding: 12px;
    border: 2px solid #CCC;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #555;
    background: #fff;
    height: 100%;
    gap: 8px;
}

/* Custom Checkbox/Radio Indicator */
.option-item label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #DDD;
    flex-shrink: 0;
    transition: border 0.2s ease;
    margin-top: 4px;
}

/* Radio Specific (Circle) */
.option-item input[type="radio"]+label::before {
    border-radius: 50%;
}

/* Checkbox Specific (Square) */
.option-item input[type="checkbox"]+label::before {
    border-radius: 4px;
}

/* Checked State Styles */
.option-item input:checked+label {
    border: 2px solid #00795C;
}

.option-item input[type="radio"]:checked+label::before {
    border: 5px solid #00795C;
    background-color: #ffffff;
}

.option-item input[type="checkbox"]:checked+label::before {
    background: url('../img/icon/icon-checked.svg') no-repeat center;
    background-size: 16px;
}

/* Radio Checked Dot */
/* (Currently handled by border in .option-item input[type="radio"]:checked + label::before) */

/* Checkbox Checked Mark - Removed in favor of SVG icon on ::before */

@media screen and (max-width: 768px) {
    #sc-sme-questions .container {
        padding: 48px 0 0;
    }

    .questions-header .section-title-main {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .question-item {
        gap: 8px;
    }

    .question-number {
        font-size: 18px;
        min-width: 24px;
    }

    .question-text {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .options {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 8px;
    }

    .option-item label {
        padding: 8px;
    }

    .badge-multiple {
        margin-left: 36px;
    }
}

.btn-back-outline {
    background: #fff;
    color: #00AB8E;
    border: 1px solid #00AB8E;
    border-radius: 16px;
    padding: 17px 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-back-outline:hover {
    border-color: #00795C;
    color: #00795C;
}

.btn-back-outline img {
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
    filter: invert(49%) sepia(78%) saturate(454%) hue-rotate(132deg) brightness(92%) contrast(92%);
    transition: filter 0.3s ease;
}

.btn-back-outline:hover img {
    filter: invert(61%) sepia(61%) saturate(512%) hue-rotate(133deg) brightness(89%) contrast(94%);
}

.btn-next-solid {
    width: 250px;
    background: #00AB8E;
    color: #fff;
    border: 1px solid #00AB8E;
    border-radius: 16px;
    padding: 17px 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-next-solid img {
    width: 20px;
    height: 20px;
}

.btn-next-solid:disabled {
    background: #EBEBEB;
    border-color: #EBEBEB;
    color: #AAAAAA;
    cursor: not-allowed;
}

.btn-next-solid:not(:disabled):hover {
    background: #00795C;
    border-color: #00795C;
}


/* Business Info */
#sc-sme-business-info .business-info-header {
    text-align: center;
    margin-bottom: 48px;
}

#sc-sme-business-info .business-info-header h2 {
    color: #003233;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

#sc-sme-business-info .business-info-header p {
    color: #003233;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

#sc-sme-business-info .business-info-form {
    max-width: 580px;
    margin: 0 auto;
}

#sc-sme-business-info .business-info-form .bi-field {
    margin-bottom: 24px;
    text-align: left;
}

#sc-sme-business-info .business-info-form .bi-field label {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 6px;
}

#sc-sme-business-info .business-info-form .bi-field label .required {
    color: #008743;
    margin-left: 2px;
}

#sc-sme-business-info .business-info-form input {
    width: 100%;
    height: 56px;
    padding: 16px 14px;
    border: 1px solid #DDD;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #333 !important;
    transition: all 0.3s ease;
    background-color: #FFF;
    box-sizing: border-box;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}

#sc-sme-business-info .business-info-form input:-internal-autofill-selected {
    background-color: #FFF !important;
}

#sc-sme-business-info .business-info-form input:focus {
    border-color: #00A652;
    box-shadow: 0 0 0 1px #00A652;
    outline: none;
}

#sc-sme-business-info .business-info-form input::placeholder {
    color: #AAAAAA;
}

#sc-sme-business-info .business-info-form .bi-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

#sc-sme-business-info .business-info-form .bi-row input {
    flex: 1;
}

/* Validation Styles */
#sc-sme-business-info .bi-field.invalid input {
    border-radius: 12px;
    border: 1px solid #FDA29B;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}

#sc-sme-business-info .bi-field.invalid .select-trigger {
    border-radius: 12px;
    border: 1px solid #FDA29B;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}

#sc-sme-business-info .error-message {
    color: #D92D20;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

#sc-sme-business-info .input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Custom Select Dropdown (Scoped to Business Info) */
#sc-sme-business-info .custom-select {
    position: relative;
    width: 100%;
}

#sc-sme-business-info .select-trigger {
    height: 56px;
    padding: 0 20px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

#sc-sme-business-info .custom-select.open .select-trigger {
    border-color: #00A652;
    box-shadow: 0 0 0 1px #00A652;
    outline: none;
}

#sc-sme-business-info .select-trigger span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #666;
    pointer-events: none;
}

#sc-sme-business-info .select-trigger span.placeholder {
    color: #666666;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    text-overflow: ellipsis;
    background-color: unset;
    opacity: 1;
}

#sc-sme-business-info .select-arrow {
    width: 20px;
    height: 20px;
    background: url("../img/icon/chevron-down.svg") no-repeat center;
    background-size: contain;
    transition: all 0.3s ease;
    pointer-events: none;
}

#sc-sme-business-info .custom-select.open .select-arrow {
    transform: rotate(180deg);
    filter: invert(85%) sepia(94%) saturate(1352%) hue-rotate(125deg) brightness(96%) contrast(101%);
}

/* Email Suggestions Specific */
#sc-sme-business-info .custom-select.email-suggestions {
    position: relative;
    width: 100%;
}

#sc-sme-business-info .custom-select.email-suggestions .dropdown-container {
    top: 100%;
    /* Position right under the input */
}

#sc-sme-business-info .dropdown-container {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    overflow: hidden;
    /* Clips internal content and scrollbar corners */
}

#sc-sme-business-info .options-dropdown {
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    padding: 0 6px;
}

/* Custom Scrollbar for Dropdown */
#sc-sme-business-info .options-dropdown::-webkit-scrollbar {
    width: 6px;
}

#sc-sme-business-info .options-dropdown::-webkit-scrollbar-track {
    background: unset;
}

#sc-sme-business-info .options-dropdown::-webkit-scrollbar-thumb {
    background: #D9D9D9;
    border-radius: 10px;
}

#sc-sme-business-info .options-dropdown::-webkit-scrollbar-button {
    display: none;
}

#sc-sme-business-info .option-item {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #666666;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sc-sme-business-info .option-item:hover {
    background-color: #FAFAFA;
    border-radius: 6px;
}

#sc-sme-business-info .option-item.selected::after {
    content: '';
    width: 20px;
    height: 20px;
    background: url('../img/icon/icon-option-checked.svg') no-repeat center;
    background-size: contain;
}

/* Result Score Section */
.sme-result-score-section {
    background: linear-gradient(180deg, rgba(0, 171, 142, 0.40) 0%, #003233 100%), linear-gradient(0deg, #003233 0%, #003233 100%), #FFF;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.result-header {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.result-header h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
}

.logos-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logos-container span {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}

.logos-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logos-row img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.result-card {
    background: #F5F5F6;
    border-radius: 16px;
    border: 2px solid #EBEBEB;
    padding: 40px;
    width: 100%;
    color: #003233;
}

.result-card-inner {
    max-width: 768px;
    margin: 0 auto;
}

.result-card h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 32px;
}

.score-display-container {
    width: 100%;
    display: flex;
    gap: 24px;
}

.score-total-box {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    padding: 32px 24px;
    width: 240px;
}

.score-total-box .label {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
}

.score-total-box .score-number {
    font-size: 150px;
    font-weight: 600;
    line-height: 1;
}
.score-total-box .score-number.full-score {
    font-size: 100px;
}

.score-total-box .unit {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
}

/* Result CTA Section */
.sme-result-cta-section {
    background: linear-gradient(180deg, #021E2C 0.03%, #1E5F61 49.84%, #021E2C 100%), linear-gradient(180deg, #021E2C 0.03%, #0C313C 50.48%, #277271 83.88%, #3CA398 100%), #FFF;
    width: 100%;
    text-align: center;
    color: #fff;
}

.sme-result-cta-section .container {
    padding: 80px 16px !important;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-logo {
    height: 120px;
    width: auto;
    margin-bottom: 40px;
}

.cta-content h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 48px;
}

.cta-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 24px;
}

.btn-cta-register {
    width: 250px;
    background: #00AB8E;
    color: #fff;
    border: 1px solid #00AB8E;
    border-radius: 16px;
    padding: 17px 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 auto;
    text-decoration: none;
}

.btn-cta-register:hover {
    color: #fff;
    background: #00795C;
    border-color: #00795C;
    transform: none;
}

/* Global Result Section Styles */
.sme-industry-deep-dive {
    width: 100%;
    background: linear-gradient(180deg, #003233 0%, rgba(0, 171, 142, 0.40) 100%), linear-gradient(0deg, #003233 0%, #003233 100%), #FFF;
}

.sme-industry-deep-dive .container {
    padding: 80px 16px !important;
}

.result-content-card {
    border-radius: 16px;
    border: 2px solid #EBEBEB;
    background: #F5F5F6;
    color: #003233;
    padding: 40px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
    /* Prevent slides from leaking out of the white card */
}

.solution-swiper {
    overflow: visible !important;
    /* Allow slides to be seen outside the swiper container */
}

.result-content-card-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 768px;
    margin: 0 auto;
}

.result-content-card .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

.result-content-card .sc-inner {
    padding: 0 !important;
}

.sme-result-wrapper .section-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 32px;
}

/* Result Detail Section */
.sme-result-detail-section {}

.result-detail-card {
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    background: linear-gradient(180deg, #F7F6F9 0%, #FFF 100%), linear-gradient(270deg, #FFF 65.63%, rgba(255, 255, 255, 0.00) 93.22%), #FFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.detail-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-content {
    padding: 32px 40px;
}

.detail-content h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-body p {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.content-body ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 0;
}

.content-body li {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

/* Result Analysis Section */
.sme-result-analysis-section {
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    background: linear-gradient(180deg, #F7F6F9 0%, #FFF 100%), #FAFAFA;
    padding: 32px 16px;
}

.sme-result-analysis-section .section-title {
    text-align: center;
    margin-bottom: 24px
}

.analysis-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.analysis-card {
    flex: 1;
    max-width: 232px;
    background: #fff;
    border-radius: 24px;
    padding: 16px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.analysis-card .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.analysis-card .card-icon img {
    width: 100%;
    height: 100%;
}

.analysis-card .card-label {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.analysis-card ul {
    list-style: disc;
    text-align: left;
    padding-left: 20px;
    width: 100%;
}

.analysis-card li {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}

/* Result Priority Section */
.sme-result-priority-section {
    padding: 32px 16px;
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    background: linear-gradient(180deg, #F7F6F9 0%, #FFF 100%), #FAFAFA;
}

.sme-result-priority-section .section-title {
    text-align: center;
    margin-bottom: 24px;
}

.priority-swiper-container {
    position: relative;
    margin-bottom: 24px;
}

.priority-swiper {
    width: 100%;
}

.priority-swiper .swiper-wrapper {
    justify-content: center;
}

.priority-card {
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    padding: 16px 16px 24px;
    height: 100%;
    box-sizing: border-box;
}

.priority-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}

.priority-card ul {
    list-style: disc;
    padding-left: 20px;
}

.priority-card li {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.priority-swiper .swiper-slide {
    height: auto;
}

.priority-actions {
    display: flex;
    justify-content: center;
}

.btn-download-handbook {
    background: #00AB8E;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-download-handbook img {
    width: 20px;
    height: 20px;
}

.btn-download-handbook:hover {
    background: #008f76;
    color: #fff;
}

/* Result Solutions Section */
.sme-result-solutions-section {}

.solutions-carousel-wrapper {
    position: relative;
    margin-bottom: 80px;
}

.solution-card {
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.solution-info {
    padding: 24px 16px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-info h3 {
    height: 60px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solution-info p {
    height: 71px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 37px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-solution-action {
    display: flex;
    justify-content: center;
}

.btn-solution-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #26770E;
    text-decoration: underline;
    display: flex;
    cursor: pointer;
    gap: 4px;
}

.btn-solution-link:hover {
    color: #26770E;
}

.btn-solution-link img {
    width: 16px;
    height: 16px;
}

.solutions-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-retake-assessment {
    background: #00AB8E;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-retake-assessment img {
    width: 20px;
    height: 20px;
}

.btn-retake-assessment:hover {
    background: #008f76;
}

/* Swiper Customization */
.solution-swiper .swiper-button-next,
.solution-swiper .swiper-button-prev {
    color: #111;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #00AB8E;
    box-shadow: none;
    transition: all 0.3s ease;
}

.solution-swiper .swiper-button-next {
    right: -20px;
}

.solution-swiper .swiper-button-prev {
    left: -20px;
}

.solution-swiper .swiper-button-next::after,
.solution-swiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: bold;
}

.solution-swiper .swiper-button-next:hover,
.solution-swiper .swiper-button-prev:hover {
    background: #00AB8E;
    color: #fff;
}

.solution-swiper .swiper-pagination-bullet-active {
    background: #00AB8E;
}

/* Result Section Mobile Adjustments */
@media screen and (max-width: 768px) {

    .solution-swiper .swiper-button-next,
    .solution-swiper .swiper-button-prev {
        display: none;
    }

    .result-content-card {
        padding: 24px 16px;
        border-radius: 0;
    }

    .result-content-card-inner {
        gap: 32px;
    }

    .sme-result-wrapper .section-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 24px;
        text-align: center;
    }

    .sme-result-priority-section {
        padding: 16px;
    }

    .priority-card h3 {
        font-size: 18px;
    }

    .detail-content {
        padding: 24px 16px;
    }

    .detail-content h3 {
        font-size: 20px;
    }

    .content-body p,
    .content-body li {
        font-size: 16px;
    }

    .sme-industry-deep-dive {
        background: #FAFAFA;
    }

    .sme-industry-deep-dive .container {
        padding: 0 !important;
    }

    .sme-result-analysis-section {
        padding: 16px 16px 32px;
    }

    .analysis-grid {
        flex-direction: row;
        gap: 16px;
    }

    .analysis-card {
        width: 100%;
        max-width: fit-content;
    }

    .priority-swiper-container {
        margin-bottom: 32px;
    }

    .analysis-card .card-icon {
        width: 40px;
        height: 40px;
    }

    .analysis-card ul {
        margin-bottom: 0;
    }

    .solutions-carousel-wrapper {
        margin-bottom: 56px;
        padding: 0;
    }

    .solution-info h3 {
        font-size: 20px;
    }

    .solution-info p {
        font-size: 16px;
    }

    .priority-swiper .swiper-wrapper {
        justify-content: unset;
    }
}

@media screen and (max-width: 450px) {
    .analysis-grid {
        flex-direction: column;
        align-items: center;
    }

    .analysis-card {
        max-width: 100%;
    }
}

.score-chart-box {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EBEBEB;
    padding: 24px 0 23px;
    width: 504px;
}

.score-chart-box .label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #003233;
    padding-left: 32px;
}

.chart-placeholder {
    width: 100%;
    height: 311px;
    position: relative;
}

#radarChart {
    width: 100% !important;
    height: 100% !important;
}

/* --------------- Responsive Mobile (max-width: 991px) ------------- */
@media screen and (max-width: 768px) {
    .sme-assessment-page section .container {
        padding: 48px 16px 80px;
    }

    .sme-assessment-header h2.kc-h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .sme-assessment-header p {
        font-size: 18px;
    }

    .sme-assessment-wrapper {
        gap: 24px;
    }

    .sme-assessment-content {
        gap: 40px;
    }

    .sme-assessment-content p {
        font-size: 16px;
    }

    .sme-assessment-content img {
        max-width: 260px;
    }

    .sme-assessment-step {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .step-item {
        flex: none;
        width: 100%;
        max-width: 328px;
        padding: 16px 16px 24px;
        height: auto;
        min-height: 140px;
    }

    .step-number {
        font-size: 18px;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 0;
        white-space: normal;
    }

    .step-header {
        gap: 16px;
        margin-bottom: 16px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
    }

    .step-detail {
        font-size: 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
    }

    .consent-input input[type="checkbox"] {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .consent-text {
        font-size: 12px;
    }

    .btn-submit {
        min-width: 160px;
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 12px;
    }

    .sme-stage-indicator {
        margin-bottom: 24px;
    }

    .stage-steps::before {
        top: 6px;
        left: 15%;
        right: 15%;
    }

    .stage-steps .step .dot {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }

    .stage-steps .step .label {
        font-size: 11px;
    }

    .assessment-box-container {
        padding: 40px 16px;
        border-radius: 0;
    }

    #sc-sme-industry-selection .industry-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 32px;
    }

    .industry-card {
        width: 100%;
    }

    .industry-card-label {
        font-size: 16px;
        bottom: 8px;
        left: 8px;
        right: 8px;
    }

    .selection-actions {
        flex-direction: row;
        width: 100%;
        gap: 12px;
        margin-top: 32px;
    }

    .btn-back-outline,
    .btn-next-solid {
        flex: 1;
        justify-content: center;
        padding: 10px 14px;
        font-size: 14px;
    }

    #sc-sme-business-info .container {
        padding: 48px 0 0;
    }

    #sc-sme-business-info .business-info-header h2 {
        font-size: 20px;
        line-height: 1.5;
    }

    #sc-sme-business-info .business-info-header p {
        font-size: 18px;
    }

    #sc-sme-business-info .business-info-form .bi-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    #sc-sme-business-info .business-info-form .bi-row input {
        width: 100%;
        min-width: 0;
    }

    /* Result Score Section Responsive */
    .sme-result-score-section .container {
        padding: 40px 0 0 !important;
    }

    .result-header {
        padding-inline: 16px;
        margin-bottom: 24px;
    }

    .result-header h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .result-card h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .logos-container {
        gap: 4px;
    }

    .logos-container span {
        font-size: 16px;
    }

    .logos-row {
        gap: 24px;
        flex-direction: column;
    }

    .logos-row img.logo-kclimate {
        height: 32px;
    }

    .logos-row img.logo-maefahluang {
        height: 32px;
    }

    .result-card {
        border-radius: 0;
        padding: 24px 16px;
        text-align: center;
    }

    .score-display-container {
        flex-direction: column;
        gap: 16px;
    }

    .score-total-box {
        padding: 32px 24px;
        text-align: center;
        width: 100%;
        margin: 0 auto
    }

    .score-total-box .label {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .score-total-box .score-number {
        font-size: 100px;
    }

    .score-total-box .unit {
        font-size: 30px;
    }

    .score-chart-box {
        padding: 24px 0;
        width: 100%;
    }

    .score-chart-box .label {
        font-size: 20px;
        padding-left: 24px;
        text-align: left;
        margin-bottom: 16px;
    }

    .chart-placeholder {
        height: 260px;
    }

    /* Result CTA Section Responsive */
    /* .sme-result-cta-section .container {
        padding: 60px 16px;
    } */

    .cta-logo {
        height: 80px;
        margin-bottom: 32px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .btn-cta-register {
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
    }

}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 51, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.loading-spinner-container {
    text-align: center;
    color: #FFFFFF;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #00AB8E;
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner-container p {
    font-size: 18px;
    font-weight: 500;
}