.no1-scope-inner {
    width: 100%;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    color: #1e293b;
  }
  /* Section Header */
  .no1-scope-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px auto;
  }
  .no1-scope-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: #fdf4ff;
    color: #9424a5;
    border: 1px solid #f3e8ff;
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    margin-bottom: 14px;
  }
  .no1-scope-title {
    font-family: Titilliumweb, Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 14px 0;
  }
  .no1-scope-subtitle {
    font-family: Poppins, sans-serif;
    font-size: 16.5px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
  }
  /* 3-Column Grid */
  .no1-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
  }
  /* Category Card */
  .no1-scope-card {
    background-color: #ffffff;
    border: 1px solid #ede9fe;
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-sizing: border-box;
  }
  .no1-scope-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(148, 36, 165, 0.08);
    border-color: #d8b4fe;
  }
  /* Featured Middle Card */
  .no1-card-featured {
    border: 2px solid #9424a5;
    background: linear-gradient(180deg, #ffffff 0%, #fdf4ff 100%);
    box-shadow: 0 6px 20px rgba(148, 36, 165, 0.08);
  }
  .no1-featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #9424a5;
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 9999px;
  }
  /* Card Header */
  .no1-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
  }
  .no1-cat-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .no1-icon-purple {
    background-color: #fdf4ff;
    border: 1px solid #f3e8ff;
  }
  .no1-icon-green {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
  }
  .no1-cat-info {
    display: flex;
    flex-direction: column;
  }
  .no1-cat-tag {
    font-family: Poppins, sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #9424a5;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
  }
  .no1-tag-green {
    color: #49a64a;
  }
  .no1-cat-title {
    font-family: Titilliumweb, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.25;
  }
  /* Items List */
  .no1-items-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-grow: 1;
  }
  .no1-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .no1-check-icon {
    width: 22px;
    height: 22px;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .no1-item-content {
    flex: 1;
  }
  .no1-item-title {
    font-family: Titilliumweb, Arial, sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px 0;
    line-height: 1.3;
  }
  .no1-item-desc {
    font-family: Poppins, sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
  }
  /* Responsive Breakpoints */
  @media (max-width: 991px) {
    .no1-scope-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .no1-scope-title {
      font-size: 30px;
    }
  }
  @media (max-width: 767px) {
    .no1-scope-header {
      margin-bottom: 36px;
    }
    .no1-scope-title {
      font-size: 26px;
    }
    .no1-scope-subtitle {
      font-size: 15px;
    }
    .no1-scope-card {
      padding: 24px 18px;
    }
  }
