  /* ===== SLIDE 6: CRISIS ===== */
  .crisis-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
  }

  .crisis-quote {
    background: #2A1E1E;
    border: 1px solid #f5c6c6;
    border-left: 4px solid var(--red);
    border-radius: 0;
    padding: 1.1rem 1.4rem;
    grid-column: 1 / -1;
  }

  .crisis-quote-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--red);
    line-height: 1.4;
    margin-bottom: 0.35rem;
  }

  .cost-compare {
    display: flex;
    align-items: center;
    gap: 1rem;
    background:#1E1E1E;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
  }

  .cost-item { flex: 1; text-align: center; }

  .cost-val {
    font-family: var(--font-mono);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .cost-val.low { color: var(--red); }
  .cost-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
  .vs-divider { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700; color: var(--border); }

  .gap-statement {
    background:#1E1E1E;
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: 0;
    padding: 1.1rem 1.4rem;
    box-shadow: none;
    display: flex;
    align-items: center;
  }
