
  .nexplate-insights-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 0 auto 32px auto;
  }
  .nexplate-insights-block {
    flex: 1 1 350px;
    min-width: 600px;
    max-width: 800px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(40, 50, 70, 0.08);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .nexplate-insights-block h2 {
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #12284c;
  }
  .nexplate-accent {
    color: #3970c3; /* blue accent, matches Nexplate style */
    font-weight: 700;
  }
  .nexplate-insights-block p {
    color: #394960;
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .nexplate-demo-btn, .nexplate-card-btn {
    background: #23395d;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 11px 28px;
    font-size: 1rem;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.15s;
  }
  .nexplate-demo-btn:hover, .nexplate-card-btn:hover {
    background: #3970c3;
  }
  .nexplate-info-card {
    min-width: 270px;
    max-width: 340px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(40,50,70,0.11);
    padding: 30px 24px 20px 24px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .nexplate-info-header {
    color: #12284c;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  .nexplate-info-value {
    font-size: 2.3rem;
    color: #3970c3;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .nexplate-info-value span {
    font-size: 1.1rem;
    color: #7c8ca4;
  }
  .nexplate-info-list {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
  }
  .nexplate-info-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #3a4662;
  }
  .nexplate-info-icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    line-height: 22px;
    margin-right: 9px;
  }
  .nexplate-warn { background: #f8d7da; color: #b51d2a; }
  .nexplate-best { background: #e3f4e5; color: #237a39; }
  .nexplate-bad  { background: #f4e4e4; color: #a93737; }
  
  .nexplate-illustration {
    flex: 1 1 260px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f3f5fa;
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(40,50,70,0.06);
    padding: 34px 18px 18px 18px;
  }
  .nexplate-illustration img {
    width: 90px;
    margin-bottom: 12px;
  }
  .nexplate-cost-label {
    margin-top: 6px;
    font-size: 1rem;
    color: #23395d;
    background: #e8edf3;
    padding: 4px 18px;
    border-radius: 16px;
  }
  
  @media (max-width: 900px) {
    .nexplate-insights-grid {
      flex-direction: column;
      gap: 18px;
      align-items: stretch;
    }
    .nexplate-insights-block, .nexplate-info-card, .nexplate-illustration {
      max-width: 100%;
      margin: 0 auto;
    }
  }
  