
  /* --- CORE STYLES --- */
  #noble-process-wrapper {
    background-color: #000000 !important;
    color: #e5e5e5;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding: 80px 20px;
    box-sizing: border-box;
    width: 100%;
    font-size: 18px;
  }
  #noble-process-wrapper * { box-sizing: border-box; }

  /* --- TYPOGRAPHY --- */
  #noble-process-wrapper h1 { 
    color: #ffffff;
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 3.5rem;
    margin-bottom: 20px; 
    line-height: 1.2; 
    text-align: center; 
  }
  
  #noble-process-wrapper h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
  }
  
  #noble-process-wrapper p { 
    margin-bottom: 15px; 
    color: #a3a3a3; 
    font-size: 1.1rem;
  }

  /* Gradient Text */
  .noble-gradient-text {
    background: linear-gradient(90deg, #c084fc, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* --- TIMELINE CONTAINER --- */
  .noble-timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
  }

  /* The Vertical Line */
  .noble-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px; /* Adjust for mobile alignment */
    width: 2px;
    background: #333;
  }

  /* --- TIMELINE ITEM --- */
  .noble-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 100px; /* Space for the number/icon */
  }

  /* The Number Circle */
  .noble-step-number {
    position: absolute;
    left: 15px;
    top: 0;
    width: 50px;
    height: 50px;
    background: #111;
    border: 2px solid #c084fc;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.2);
  }

  /* Content Box */
  .noble-step-content {
    background: #111;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.2s ease;
  }
  .noble-step-content:hover {
    border-color: #444;
    transform: translateY(-2px);
  }

  /* Pro Tip Highlight */
  .noble-pro-tip {
    background: rgba(192, 132, 252, 0.1);
    border-left: 3px solid #c084fc;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #e9d5ff;
  }
  .noble-pro-tip strong { color: #fff; }

  /* Split Columns for Stock/Custom */
  .noble-split-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
  }
  .noble-split-col h4 { margin: 0 0 10px 0; color: #fff; font-size: 1.1rem;}
  .noble-split-col p { font-size: 1rem; margin: 0; }

  /* --- MOBILE RESPONSIVE --- */
  @media (max-width: 768px) {
    #noble-process-wrapper { padding: 40px 15px; }
    #noble-process-wrapper h1 { font-size: 2.5rem; }
    
    .noble-timeline::before { left: 25px; }
    .noble-step { padding-left: 70px; margin-bottom: 40px; }
    .noble-step-number { left: 0; width: 50px; height: 50px; font-size: 1.2rem; }
    
    .noble-split-info { grid-template-columns: 1fr; }
    .noble-split-col { margin-bottom: 15px; }
  }
