  /* =================== AI & AUTOMATION PAGE =================== */

  .path-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  @media (max-width: 960px) { .path-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; } }

  .path-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.25s;
    position: relative;
  }
  .path-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(30,58,95,0.08);
    border-color: var(--brand);
  }

  .path-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 6px 12px; border-radius: 999px;
    margin-bottom: 18px;
  }

  .path-card h3 {
    font-size: 20px; color: var(--ink);
    margin-bottom: 12px;
  }

  .path-card > p {
    font-size: 14.5px; color: var(--muted);
    line-height: 1.6; margin-bottom: 20px;
  }

  .path-list {
    list-style: none;
    border-top: 1px solid var(--border-soft);
    padding-top: 16px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .path-list li {
    display: grid; grid-template-columns: 14px 1fr;
    gap: 10px; align-items: start;
    font-size: 13.5px; color: var(--text);
    line-height: 1.5;
  }
  .path-list li .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--brand);
    margin-top: 7px;
  }

  /* =================== "BEFORE YOU DEPLOY" (honest) =================== */

  .honest {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 22px;
    padding: 48px 44px;
  }
  @media (max-width: 820px) {
    .honest { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
  }
  .honest h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .honest p {
    color: rgba(255,255,255,0.78);
    font-size: 15.5px;
    line-height: 1.6;
  }

  .honest ul {
    list-style: none;
    display: flex; flex-direction: column; gap: 14px;
  }
  .honest li {
    display: grid; grid-template-columns: 22px 1fr;
    gap: 14px; align-items: start;
    font-size: 14.5px;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
  }
  .honest li strong { color: var(--white); }
  .honest li .hm {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(42,170,231,0.2);
    color: var(--brand-light);
    display: grid; place-items: center;
    margin-top: 2px;
    flex-shrink: 0;
  }
