.chp-section {
    padding: 100px 0;
    background: #ffffff;
}
.chp-section__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.chp-section__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin: 0 0 30px;
    line-height: 54px;
}
.chp-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Panels */
.chp-section__panel {
    border-radius: 16px;
    padding: 30px;
}
.chp-section__panel--stockwise {
    background: rgba(48, 64, 207, 0.04);
    border: 2px solid #3040CF;
}
.chp-section__panel--cin7 {
    background: #F7F7F7;
    border: 2px solid transparent;
}
.chp-section__panel-title {
    font-size: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    margin: 0 0 12px;
    line-height: 27px;
}

/* Checklist */
.chp-section__checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.chp-section__check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
}
.chp-section__check-item:before {
    display: none;
}
.chp-section__check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.chp-section__check-icon::after {
    content: '';
    display: block;
    width: 5px;
    height: 11px;
    border-right: 2px solid #7052F1;
    border-bottom: 2px solid #7052F1;
    transform: rotate(45deg) translate(-1px, -1px);
}
.chp-section__check-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
    line-height: 20px;
}
.chp-section__check-text strong {
    font-weight: 600;
}

/* Vulnerabilities sub-section */
.chp-section__vuln {
    margin-top: 12px;
    border-radius: 8px;
    padding: 16px;
    background: linear-gradient(335.36deg, rgba(255, 255, 255, 0) 32.3%, #FFFFFF 125.79%);
}
.chp-section__vuln-title {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 14px;
    line-height: 22px;
}
.chp-section__vuln-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chp-section__vuln-item {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 22px;
}
.chp-section__vuln-item p {
    margin: 0;
}
.chp-section__vuln-item strong {
    font-weight: 600;
    color: #000000;
}

/* Responsive */
@media (max-width: 900px) {
    .chp-section__grid {
        grid-template-columns: 1fr;
    }
    .chp-section__title {
        font-size: 32px;
        margin-bottom: 36px;
    }
}
@media (max-width: 600px) {
    .chp-section {
        padding: 56px 0 72px;
    }
    .chp-section__container {
        padding: 0 20px;
    }
    .chp-section__title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 28px;
    }
    .chp-section__panel {
        padding: 24px 20px 20px;
    }
    .chp-section__panel-title {
        font-size: 18px;
    }
    .chp-section__check-text {
        font-size: 13px;
    }
    .chp-section__vuln {
        padding: 16px 16px;
    }
    .chp-section__vuln-item {
        font-size: 13px;
    }
}
