/* ==========================================================================
   Comparison Page Styles (compare/*.html)
   ========================================================================== */

body {
    background: #050B17;
    color: #eef0f5;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.cp-breadcrumb {
    padding: 24px 0 0;
    background: #050B17;
}
.cp-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6e7689;
    letter-spacing: 0.02em;
}
.cp-breadcrumb a {
    color: #99a2b8;
    transition: color .15s;
}
.cp-breadcrumb a:hover { color: #fff; }
.cp-breadcrumb-sep { color: #2a3247; }

/* Hero */
.cp-hero {
    background: #050B17;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.cp-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74,127,229,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.cp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}
.cp-hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6a98f0;
    font-weight: 600;
    margin-bottom: 18px;
    padding: 6px 12px;
    background: rgba(106,152,240,0.10);
    border-radius: 100px;
}
.cp-hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.cp-vs-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c4a8a 0%, #b03040 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 0.12em;
    vertical-align: middle;
}
.cp-hero-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #c4cad9;
    margin: 0 0 32px;
    max-width: 540px;
}
.cp-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}
.cp-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cp-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}
.cp-stat-unit {
    font-size: 22px;
    color: #6a98f0;
    margin-left: 2px;
}
.cp-stat-label {
    font-size: 13px;
    color: #99a2b8;
    line-height: 1.4;
}
.cp-hero-image {
    position: relative;
}
.cp-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* Key Points */
.cp-points {
    background: #07090f;
    padding: 100px 0;
}
.cp-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.cp-point-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all .2s;
    position: relative;
}
.cp-point-card:hover {
    transform: translateY(-3px);
    border-color: rgba(106,152,240,0.4);
    background: rgba(106,152,240,0.04);
}
.cp-point-num {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: #6a98f0;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}
.cp-point-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.35;
}
.cp-point-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #99a2b8;
    margin: 0;
}

/* Feature Image Rows */
.cp-features {
    background: #050B17;
    padding: 100px 0;
}
.cp-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 40px 0;
}
.cp-feature-row + .cp-feature-row {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-feature-row.reverse .cp-feature-text { order: 2; }
.cp-feature-row.reverse .cp-feature-image { order: 1; }
.cp-feature-text h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.cp-feature-text p {
    font-size: 16px;
    line-height: 1.75;
    color: #99a2b8;
    margin: 0 0 16px;
}
.cp-feature-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.cp-feature-text li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.6;
    color: #c4cad9;
    margin-bottom: 12px;
}
.cp-feature-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background: rgba(106,152,240,0.15);
    border-radius: 50%;
}
.cp-feature-text li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #6a98f0;
    border-bottom: 2px solid #6a98f0;
    transform: rotate(-45deg);
}
.cp-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
}
.cp-feature-image.no-bg img {
    border-radius: 0;
    background: transparent;
}

/* Gartner Scorecard (Nessus only) */
.cp-scorecard {
    background: #07090f;
    padding: 100px 0;
}
.cp-scorecard-table {
    margin-top: 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
}
.cp-scorecard-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 20px 28px;
    align-items: center;
}
.cp-scorecard-row + .cp-scorecard-row {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-scorecard-row.header {
    background: rgba(255,255,255,0.04);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #99a2b8;
}
.cp-scorecard-row.header .cp-score-winner {
    color: #6a98f0;
}
.cp-scorecard-metric {
    font-size: 16px;
    color: #c4cad9;
    font-weight: 500;
}
.cp-score-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.cp-score-winner {
    text-align: center;
    color: #6a98f0;
}
.cp-score-loser {
    text-align: center;
    color: #99a2b8;
}
.cp-scorecard-note {
    margin-top: 16px;
    font-size: 13px;
    color: #6e7689;
    text-align: center;
}

/* Detailed Feature Comparison Table */
.cp-table-section {
    background: #050B17;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-compare-table {
    margin-top: 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
}
.cp-compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 18px 28px;
    gap: 12px;
}
.cp-compare-row + .cp-compare-row {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-compare-row.header {
    background: rgba(255,255,255,0.04);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #99a2b8;
}
.cp-compare-row.header .cp-cell-invicti {
    color: #6a98f0;
}
.cp-compare-row.header .cp-cell-rival {
    color: #99a2b8;
}
.cp-cell-feature {
    font-size: 15px;
    color: #c4cad9;
    font-weight: 500;
}
.cp-cell-feature-sub {
    display: block;
    font-size: 13px;
    color: #6e7689;
    margin-top: 4px;
    font-weight: 400;
}
.cp-cell-invicti,
.cp-cell-rival {
    text-align: center;
    font-size: 14px;
    color: #c4cad9;
    line-height: 1.5;
}
.cp-cell-invicti.check::before,
.cp-cell-rival.check::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #4BD783;
    background-image: linear-gradient(135deg, transparent 35%, #fff 35%, #fff 40%, transparent 40%, transparent 50%, #fff 50%, #fff 65%, transparent 65%);
    vertical-align: middle;
    margin-right: 6px;
}
.cp-cell-invicti.check {
    color: #fff;
    font-weight: 600;
}
.cp-cell-rival.cross::before {
    content: '✕';
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.25);
    color: #ef5664;
    font-weight: 700;
    margin-right: 6px;
    vertical-align: middle;
}
.cp-cell-rival.partial::before {
    content: '−';
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #99a2b8;
    font-weight: 700;
    margin-right: 6px;
    vertical-align: middle;
}

/* Use Case Scenarios */
.cp-scenarios {
    background: #07090f;
    padding: 100px 0;
}
.cp-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.cp-scenario-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 32px 28px;
}
.cp-scenario-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: rgba(106,152,240,0.12);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: #6a98f0;
    margin-bottom: 18px;
}
.cp-scenario-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.35;
}
.cp-scenario-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #99a2b8;
    margin: 0;
}

/* Testimonial / Customer Quote */
.cp-testimonial {
    background: #050B17;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-testimonial-card {
    max-width: 880px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(74,127,229,0.06) 0%, rgba(176,48,64,0.04) 100%);
    border: 1px solid rgba(106,152,240,0.20);
    border-radius: 20px;
    padding: 56px 48px;
}
.cp-testimonial-mark {
    font-size: 56px;
    line-height: 1;
    color: #4a7fe5;
    font-family: Georgia, serif;
    margin-bottom: 12px;
    display: block;
}
.cp-testimonial-quote {
    font-size: 22px;
    line-height: 1.55;
    color: #eef0f5;
    font-weight: 500;
    margin: 0 0 28px;
    letter-spacing: -0.005em;
}
.cp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.cp-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a7fe5, #b03040);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex: 0 0 auto;
}
.cp-testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}
.cp-testimonial-role {
    font-size: 13.5px;
    color: #99a2b8;
}

/* Migration Steps */
.cp-migration {
    background: #07090f;
    padding: 100px 0;
}
.cp-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.cp-step {
    position: relative;
    padding: 28px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}
.cp-step-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2c4a8a 0%, #b03040 100%);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 16px;
}
.cp-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.35;
}
.cp-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #99a2b8;
    margin: 0;
}

@media (max-width: 1024px) {
    .cp-table-section { padding: 72px 0; }
    .cp-compare-row { grid-template-columns: 1.6fr 1fr 1fr; padding: 14px 16px; }
    .cp-cell-feature { font-size: 13.5px; }
    .cp-cell-invicti, .cp-cell-rival { font-size: 13px; }
    .cp-scenarios { padding: 72px 0; }
    .cp-scenarios-grid { grid-template-columns: 1fr; }
    .cp-testimonial { padding: 72px 0; }
    .cp-testimonial-card { padding: 40px 28px; }
    .cp-testimonial-quote { font-size: 18px; }
    .cp-migration { padding: 72px 0; }
    .cp-steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .cp-steps-grid { grid-template-columns: 1fr; }
}

/* Final CTA */
.cp-cta {
    background: #050B17;
    padding: 100px 0;
}
.cp-cta-card {
    background: linear-gradient(135deg, rgba(74,127,229,0.10) 0%, rgba(176,48,64,0.10) 100%);
    border: 1px solid rgba(106,152,240,0.25);
    border-radius: 20px;
    padding: 64px 48px;
    text-align: center;
}
.cp-cta-card h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.cp-cta-card p {
    font-size: 17px;
    color: #99a2b8;
    margin: 0 0 32px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .cp-hero { padding: 64px 0 80px; }
    .cp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .cp-hero-title { font-size: 40px; }
    .cp-hero-image { order: -1; }
    .cp-points { padding: 72px 0; }
    .cp-points-grid { grid-template-columns: 1fr; }
    .cp-features { padding: 72px 0; }
    .cp-feature-row { grid-template-columns: 1fr; gap: 32px; }
    .cp-feature-row.reverse .cp-feature-text { order: 0; }
    .cp-feature-row.reverse .cp-feature-image { order: 0; }
    .cp-feature-text h3 { font-size: 24px; }
    .cp-scorecard { padding: 72px 0; }
    .cp-scorecard-row { grid-template-columns: 1.4fr 1fr 1fr; padding: 16px 18px; gap: 8px; }
    .cp-score-value { font-size: 17px; }
    .cp-cta { padding: 72px 0; }
    .cp-cta-card { padding: 48px 24px; }
    .cp-cta-card h2 { font-size: 26px; }
}
@media (max-width: 640px) {
    .cp-hero-title { font-size: 32px; }
    .cp-hero-stats { grid-template-columns: 1fr; padding: 18px; }
    .cp-stat-num { font-size: 28px; }
}

/* ==========================================================================
   Nessus 페이지 재구성 — 신규 섹션 스타일
   ========================================================================== */

/* Hero — 2 CTA + eyebrow 강조 */
.cp-hero-eyebrow.cp-eyebrow-accent {
    background: linear-gradient(135deg, rgba(176,48,64,0.18) 0%, rgba(106,152,240,0.18) 100%);
    color: #ef8a98;
    border: 1px solid rgba(176,48,64,0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cp-hero-eyebrow.cp-eyebrow-accent .pulse-dot {
    width: 7px;
    height: 7px;
    background: #ef5664;
    border-radius: 50%;
    box-shadow: 0 0 10px #ef5664;
    animation: pulse 2s infinite;
}
.cp-hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.cp-hero-link {
    font-size: 15px;
    color: #6a98f0;
    font-weight: 600;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    transition: gap .15s, color .15s;
}
.cp-hero-link:hover {
    gap: 12px;
    color: #fff;
}

/* Section 2 — 핵심 가치 3 */
.cp-core {
    background: #07090f;
    padding: 100px 0;
}
.cp-core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.cp-core-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 36px 32px;
    transition: all .2s;
}
.cp-core-card:hover {
    border-color: rgba(106,152,240,0.4);
    background: rgba(106,152,240,0.04);
    transform: translateY(-3px);
}
.cp-core-num {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2c4a8a 0%, #b03040 100%);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 18px;
}
.cp-core-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.35;
}
.cp-core-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #99a2b8;
    margin: 0;
}

/* Section 4 — 오탐 비교 (good/bad 쌍) */
.cp-fp {
    background: #07090f;
    padding: 100px 0;
}
.cp-fp-grid {
    display: grid;
    gap: 24px;
    margin-top: 48px;
}
.cp-fp-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.cp-fp-card {
    padding: 28px 30px;
    border-radius: 14px;
    border: 1px solid;
    display: flex;
    flex-direction: column;
}
.cp-fp-card.good {
    background: rgba(75,215,131,0.06);
    border-color: rgba(75,215,131,0.30);
}
.cp-fp-card.bad {
    background: rgba(176,48,64,0.06);
    border-color: rgba(176,48,64,0.30);
}
.cp-fp-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.cp-fp-card.good .cp-fp-label { color: #4BD783; }
.cp-fp-card.bad  .cp-fp-label { color: #ef5664; }
.cp-fp-quote {
    font-size: 15.5px;
    line-height: 1.7;
    color: #eef0f5;
    margin: 0 0 16px;
    flex: 1;
}
.cp-fp-author {
    font-size: 13px;
    color: #99a2b8;
}

/* Section 5 — Social Proof (로고 placeholder) */
.cp-social {
    background: #050B17;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cp-social-headline {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.cp-social-note {
    font-size: 14px;
    color: #6e7689;
    margin: 0 0 28px;
}
.cp-social-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto;
}
.cp-social-logo-placeholder {
    padding: 16px 28px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.15);
    border-radius: 10px;
    font-size: 13px;
    color: #99a2b8;
    font-weight: 500;
}

/* Section 6 — 탐지 가능 취약점 */
.cp-vuln {
    background: #07090f;
    padding: 100px 0;
}
.cp-vuln-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 48px;
}
.cp-vuln-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 14.5px;
    color: #c4cad9;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .15s;
}
.cp-vuln-item:hover {
    border-color: rgba(106,152,240,0.4);
    color: #fff;
    background: rgba(106,152,240,0.05);
}
.cp-vuln-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6a98f0;
    flex: 0 0 auto;
    box-shadow: 0 0 12px rgba(106,152,240,0.6);
}

/* Section 7 — 자동화 */
.cp-auto {
    background: #050B17;
    padding: 100px 0;
}
.cp-auto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.cp-auto-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 4px solid #6a98f0;
    border-radius: 12px;
    padding: 28px 32px;
}
.cp-auto-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.cp-auto-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #99a2b8;
    margin: 0;
}

/* Section 8 — 통합 카테고리 */
.cp-integration-cp {
    background: #07090f;
    padding: 100px 0;
}
.cp-integration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.cp-integration-row {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px 26px;
    transition: all .15s;
}
.cp-integration-row:hover {
    border-color: rgba(106,152,240,0.3);
    background: rgba(106,152,240,0.04);
}
.cp-integration-row h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6a98f0;
    margin: 0 0 14px;
}
.cp-integration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cp-integration-tags span {
    font-size: 13px;
    color: #c4cad9;
    background: rgba(255,255,255,0.06);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Section 9 — 기술 스택 */
.cp-stack {
    background: #050B17;
    padding: 100px 0;
}
.cp-stack-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 48px auto 0;
    max-width: 900px;
}
.cp-stack-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
}
.cp-stack-icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    background: rgba(106,152,240,0.15);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6a98f0;
}
.cp-stack-item span {
    font-size: 14.5px;
    color: #c4cad9;
    line-height: 1.5;
}

/* Section 10 — 기능 12 그리드 */
.cp-features-12 {
    background: #07090f;
    padding: 100px 0;
}
.cp-fg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.cp-fg-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px 22px;
    transition: all .15s;
}
.cp-fg-card:hover {
    transform: translateY(-3px);
    border-color: rgba(106,152,240,0.4);
    background: rgba(106,152,240,0.04);
}
.cp-fg-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background .15s, border-color .15s;
}
.cp-fg-icon-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter .15s;
}
.cp-fg-card:hover .cp-fg-icon-wrap {
    background: rgba(106,152,240,0.14);
    border-color: rgba(106,152,240,0.40);
}
.cp-fg-card h4 {
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.4;
}
.cp-fg-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #99a2b8;
    margin: 0;
}

/* Section 11 — Final CTA 셀링포인트 */
.cp-cta-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 auto 32px;
    max-width: 640px;
    text-align: left;
    padding: 0;
    list-style: none;
}
.cp-cta-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: #c4cad9;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}
.cp-cta-points li svg {
    flex: 0 0 auto;
    color: #6a98f0;
}

/* Section 12 — 업계 평가 */
.cp-eval {
    background: #07090f;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-eval-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 48px auto 0;
}
.cp-eval-badge {
    background: linear-gradient(135deg, rgba(74,127,229,0.06) 0%, rgba(176,48,64,0.04) 100%);
    border: 1px solid rgba(106,152,240,0.20);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
}
.cp-eval-platform {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6a98f0;
    margin-bottom: 14px;
}
.cp-eval-score {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}
.cp-eval-score span {
    font-size: 18px;
    color: #99a2b8;
    font-weight: 600;
    margin-left: 4px;
}
.cp-eval-stars {
    font-size: 16px;
    color: #fbbf24;
    margin-top: 10px;
    letter-spacing: 0.1em;
}

/* 샘플 표시 */
.cp-sample-note {
    font-size: 11px;
    color: #6e7689;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-left: 4px;
}

/* 신규 섹션 반응형 */
@media (max-width: 1024px) {
    .cp-core, .cp-fp, .cp-vuln, .cp-auto, .cp-integration-cp,
    .cp-stack, .cp-features-12, .cp-eval { padding: 72px 0; }
    .cp-core-grid, .cp-fg-grid { grid-template-columns: 1fr 1fr; }
    .cp-vuln-grid, .cp-eval-grid { grid-template-columns: 1fr 1fr; }
    .cp-fp-pair { grid-template-columns: 1fr; }
    .cp-auto-grid, .cp-integration-grid, .cp-stack-list { grid-template-columns: 1fr; }
    .cp-cta-points { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .cp-core-grid, .cp-fg-grid, .cp-vuln-grid, .cp-eval-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Qualys 페이지 — 신규 섹션 스타일
   ========================================================================== */

/* At a glance — 4-card grid */
.cp-at-glance {
    background: #07090f;
    padding: 100px 0;
}
.cp-at-glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.cp-at-glance-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all .2s;
    display: flex;
    flex-direction: column;
}
.cp-at-glance-card:hover {
    transform: translateY(-3px);
    border-color: rgba(106,152,240,0.4);
    background: rgba(106,152,240,0.04);
}
.cp-at-glance-num {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2c4a8a 0%, #b03040 100%);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
}
.cp-at-glance-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.4;
}
.cp-at-glance-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #99a2b8;
    margin: 0 0 12px;
    flex: 1;
}
.cp-at-glance-vs {
    display: block;
    font-size: 12px;
    color: #6e7689;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* 긴 본문 섹션 (prose) */
.cp-prose {
    background: #050B17;
    padding: 100px 0;
}
.cp-prose.alt {
    background: #07090f;
}
.cp-prose-body {
    max-width: 920px;
    margin: 40px auto 0;
}
.cp-prose-body p {
    font-size: 16px;
    line-height: 1.85;
    color: #c4cad9;
    margin: 0 0 22px;
}
.cp-prose-body p:last-child { margin-bottom: 0; }
.cp-prose-body strong { color: #fff; font-weight: 700; }
.cp-prose-body ul, .cp-prose-body ol {
    margin: 26px 0;
    padding: 0;
    list-style: none;
}
.cp-prose-body ul li,
.cp-prose-body ol li {
    position: relative;
    padding-left: 36px;
    font-size: 15.5px;
    line-height: 1.75;
    color: #c4cad9;
    margin-bottom: 14px;
}
.cp-prose-body ol { counter-reset: prose-counter; }
.cp-prose-body ol li { counter-increment: prose-counter; }
.cp-prose-body ol li::before {
    content: counter(prose-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: rgba(106,152,240,0.15);
    color: #6a98f0;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cp-prose-body ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 11px;
    width: 8px;
    height: 8px;
    background: #6a98f0;
    border-radius: 50%;
}
.cp-prose-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}
.cp-prose-body th,
.cp-prose-body td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14.5px;
    line-height: 1.55;
    vertical-align: top;
}
.cp-prose-body th {
    background: rgba(255,255,255,0.04);
    color: #6a98f0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}
.cp-prose-body td:first-child {
    color: #fff;
    font-weight: 700;
    width: 60px;
    text-align: center;
}
.cp-prose-body tr:last-child td { border-bottom: none; }

/* 벤치마크 테이블 */
.cp-benchmark {
    background: #050B17;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-benchmark-table {
    margin-top: 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
}
.cp-benchmark-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    padding: 18px 28px;
    align-items: center;
    gap: 12px;
}
.cp-benchmark-row + .cp-benchmark-row {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-benchmark-row.header {
    background: rgba(255,255,255,0.04);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #99a2b8;
}
.cp-benchmark-cat { font-size: 15px; color: #c4cad9; font-weight: 500; }
.cp-benchmark-rate {
    font-size: 22px;
    font-weight: 800;
    color: #4BD783;
    text-align: center;
}
.cp-benchmark-count { font-size: 14px; color: #c4cad9; text-align: center; }
.cp-benchmark-fp { font-size: 14px; color: #99a2b8; text-align: center; }
.cp-benchmark-donuts {
    margin-top: 48px;
    text-align: center;
}
.cp-benchmark-donuts img {
    width: 100%;
    height: auto;
    max-width: 1400px;
    display: block;
    margin: 0 auto;
}
.cp-benchmark-callout {
    margin-top: 24px;
    padding: 22px 28px;
    background: linear-gradient(135deg, rgba(74,127,229,0.08) 0%, rgba(75,215,131,0.06) 100%);
    border: 1px solid rgba(106,152,240,0.25);
    border-radius: 12px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #eef0f5;
}
.cp-benchmark-callout strong { color: #fff; }

/* 고객 신뢰 섹션 */
.cp-customers {
    background: #07090f;
    padding: 100px 0;
}
/* Marquee 공통 */
@keyframes cp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
/* 로고 marquee */
.cp-customers-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    margin: 48px 0 56px;
}
.cp-customers-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: cp-marquee 50s linear infinite;
    width: max-content;
}
.cp-customers-track img {
    height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity .15s;
    flex-shrink: 0;
}
.cp-customers-track img:hover { opacity: 1; }
.cp-customers-marquee:hover .cp-customers-track { animation-play-state: paused; }

/* 인용 marquee */
.cp-quotes-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.cp-quotes-track {
    display: flex;
    gap: 22px;
    animation: cp-marquee 60s linear infinite;
    width: max-content;
}
.cp-quotes-marquee:hover .cp-quotes-track { animation-play-state: paused; }
.cp-quote-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 26px 28px;
    transition: all .15s;
    flex: 0 0 auto;
    width: 380px;
    display: flex;
    flex-direction: column;
}
.cp-quote-card:hover {
    border-color: rgba(106,152,240,0.3);
    background: rgba(106,152,240,0.04);
}
.cp-quote-source {
    font-size: 12.5px;
    color: #6a98f0;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.cp-quote-text {
    font-size: 15px;
    line-height: 1.75;
    color: #eef0f5;
    margin: 0 0 14px;
}
.cp-quote-author {
    font-size: 13px;
    color: #99a2b8;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* FAQ accordion */
.cp-faq {
    background: #050B17;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-faq-list {
    max-width: 900px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cp-faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: background .15s, border-color .15s;
}
.cp-faq-item[open] {
    background: rgba(106,152,240,0.05);
    border-color: rgba(106,152,240,0.30);
}
.cp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cp-faq-item summary::-webkit-details-marker { display: none; }
.cp-faq-item summary::after {
    content: '+';
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(106,152,240,0.15);
    color: #6a98f0;
    font-size: 18px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}
.cp-faq-item[open] summary::after { content: '−'; }
.cp-faq-body {
    padding: 0 26px 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #c4cad9;
}
.cp-faq-body strong { color: #fff; font-weight: 700; }

/* Qualys 페이지 반응형 */
@media (max-width: 1024px) {
    .cp-at-glance, .cp-prose, .cp-benchmark, .cp-customers, .cp-faq { padding: 72px 0; }
    .cp-at-glance-grid { grid-template-columns: 1fr 1fr; }
    .cp-benchmark-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; padding: 14px 18px; gap: 8px; }
    .cp-benchmark-rate { font-size: 18px; }
    .cp-quotes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .cp-at-glance-grid { grid-template-columns: 1fr; }
    .cp-customers-list span { font-size: 12.5px; padding: 6px 12px; }
}

/* Burp Suite 페이지 — 4열(5컬럼) 비교 매트릭스 */
.cp-compare-table.is-4col .cp-compare-row {
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
}
.cp-compare-table.is-4col .cp-compare-row.header .cp-cell-invicti {
    color: #6a98f0;
}
.cp-compare-table.is-4col .cp-cell-invicti {
    background: rgba(106,152,240,0.06);
    border-left: 1px solid rgba(106,152,240,0.20);
    border-right: 1px solid rgba(106,152,240,0.20);
}
.cp-compare-table.is-4col .cp-cell-invicti.check {
    color: #fff;
    font-weight: 700;
}
@media (max-width: 1024px) {
    .cp-compare-table.is-4col .cp-compare-row {
        grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr 1fr;
        padding: 12px 12px;
        gap: 4px;
    }
    .cp-compare-table.is-4col .cp-cell-rival,
    .cp-compare-table.is-4col .cp-cell-invicti { font-size: 11.5px; }
    .cp-compare-table.is-4col .cp-cell-feature { font-size: 12px; }
}
