.protection-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.hero-badge {
    background: var(--red);
    color: white;
    border-radius: 999px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.protection-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.protection-kpi {
    padding: 20px;
    min-height: 160px;
}

.protection-kpi span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.protection-kpi strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.protection-kpi p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.good-card {
    background: var(--good-bg);
}

.option-card {
    background: var(--info-bg);
}

.protection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.protection-table {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.protection-table .row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px;
    align-items: start;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
}

.protection-table .row.head {
    background: #fff1f2;
    border-color: #fecdd3;
}

.protection-table .row span {
    color: var(--muted);
    font-size: 13px;
}

.protection-table .row strong {
    font-size: 14px;
    line-height: 1.45;
}

.founder-panel {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.option-highlight {
    margin-bottom: 20px;
}

.option-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.option-title p {
    color: var(--muted);
    line-height: 1.5;
    margin-top: 6px;
}

.option-badge {
    background: #111827;
    color: white;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.option-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.scenario-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    background: #f8fafc;
}

.scenario-card.success {
    background: var(--good-bg);
}

.scenario-card.warning {
    background: var(--warn-bg);
}

.scenario-card.neutral {
    background: var(--info-bg);
}

.scenario-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.scenario-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.scenario-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.scenario-card strong {
    display: block;
    color: var(--text);
    line-height: 1.35;
}

.option-note {
    margin-top: 16px;
    border-radius: 18px;
    padding: 16px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: var(--muted);
    line-height: 1.5;
}

.option-note strong {
    color: var(--red);
}

.exit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.exit-list {
    display: grid;
    gap: 12px;
}

.exit-list div {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

.exit-list b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-list span {
    color: var(--muted);
    font-size: 14px;
}

.exit-list strong {
    text-align: right;
    font-size: 14px;
}

.risk {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
    line-height: 1.45;
}

.risk strong {
    display: block;
    margin-bottom: 6px;
}

.risk.good {
    background: var(--good-bg);
}

.risk.warn {
    background: var(--warn-bg);
}

.risk.good strong {
    color: var(--green);
}

.risk.warn strong {
    color: var(--yellow);
}

.legal-note {
    background: linear-gradient(135deg, #2f333b, #111827);
    color: white;
}

.legal-note p {
    color: rgba(255,255,255,.78);
    line-height: 1.7;
    font-size: 15px;
    margin-top: 8px;
}

@media (max-width: 1500px) {
    .protection-grid,
    .exit-grid {
        grid-template-columns: 1fr;
    }

    .protection-kpi-grid,
    .option-scenarios {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .protection-hero,
    .option-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .protection-kpi-grid,
    .option-scenarios {
        grid-template-columns: 1fr;
    }

    .protection-table .row,
    .exit-list div {
        grid-template-columns: 1fr;
    }

    .exit-list strong {
        text-align: left;
    }
}