  .scenario-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
  }

  .scenario-summary-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  }

  .scenario-summary-card:nth-child(1) {
    border-color: #bbf7d0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  }

  .scenario-summary-card:nth-child(2) {
    border-color: #bfdbfe;
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  }

  .scenario-summary-card:nth-child(3) {
    border-color: #ddd6fe;
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
  }

  .scenario-summary-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .scenario-summary-label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  .scenario-grid {
    display: grid;
    gap: 16px;
  }

  .scenario-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
  }

  .scenario-card:nth-child(1) {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  }

  .scenario-card:nth-child(2) {
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  }

  .scenario-card:nth-child(3) {
    background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
  }

  .scenario-card:nth-child(4) {
    background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 100%);
  }

  .scenario-card:nth-child(5) {
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  }

  .scenario-card:nth-child(6) {
    background: linear-gradient(180deg, #ecfeff 0%, #ffffff 100%);
  }

  .scenario-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }

  .scenario-head-main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .scenario-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    flex-shrink: 0;
  }

  .scenario-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
  }

  .scenario-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
  }

  .scenario-tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    white-space: nowrap;
  }

  .scenario-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 14px;
  }

  .scenario-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .scenario-panel {
    border-radius: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
  }

  .scenario-panel:first-child {
    border-color: #dbeafe;
    background: #f8fbff;
  }

  .scenario-panel:last-child {
    border-color: #ddd6fe;
    background: #faf7ff;
  }

  .scenario-panel strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 8px;
  }

  .scenario-panel ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
  }

  .scenario-panel li {
    margin: 0 0 6px 0;
    padding: 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.75;
    position: static;
  }

  .scenario-panel li:last-child {
    margin-bottom: 0;
  }

  .scenario-panel li::before {
    content: none;
  }

  .fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 8px;
  }

  .fit-card {
    border: 1px solid var(--border);
    background: var(--bg-alt);
    border-radius: 10px;
    padding: 14px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
  }

  .fit-card strong {
    color: var(--text);
  }

  .fit-card:nth-child(1) {
    border-color: #bfdbfe;
    background: #eff6ff;
  }

  .fit-card:nth-child(2) {
    border-color: #c7d2fe;
    background: #eef2ff;
  }

  .fit-card:nth-child(3) {
    border-color: #fde68a;
    background: #fffbeb;
  }

  .fit-card:nth-child(4) {
    border-color: #bbf7d0;
    background: #f0fdf4;
  }

  @media (max-width: 900px) {
    .scenario-points {
      grid-template-columns: 1fr;
    }

    .scenario-header {
      flex-direction: column;
    }
  }
