  :root {
    --pg-brand: #2545FC;
    --pg-dark: #111111;
    --pg-muted: #5b5b5b;
    --pg-bg: #ffffff;
    --pg-line: rgba(37, 69, 252, 0.35);
    --pg-grid: rgba(0, 0, 0, 0.08);
  }

 

 


  /* Sticky content - now works without tall wrapper */
  .pg-section {
    position: sticky;
    top: 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    padding: 0px 0px 120px; /* extra bottom padding to prevent content overlap */;
    background: var(--pg-bg);
    overflow: visible;
    z-index: 10; /* ensures it stays above content below */
   
  }

  .pg-container {
    width: min(1200px, 92vw);
    margin: 0 auto;
  }

  .pg-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .pg-pill {
    display: inline-block;
    background: var(--pg-brand);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 6px 20px;
    border-radius: 9999px;
    margin-bottom: 12px;
  }

  .pg-title {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    letter-spacing: -0.01em;
    color:#2545FC;
  }

  .pg-title span {
   color:#FF8806;
  }

  .pg-subtitle {
    margin-top: 12px;
    font-size: 18px;
    color: black;
    margin-left: auto;
    margin-right: auto;
  }

  /* Layout grid */
  .pg-grid {
    position: relative;
    display: grid;
    grid-template-columns: 80px repeat(5, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
    align-items: center;
  }

  /* Left axis */
  .pg-axis-left {
    grid-row: 1 / 4;
    grid-column: 1 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .pg-axis-left span {
    display: block;
    transform: rotate(-90deg);
    font-size: 13px;
    letter-spacing: 4px;
    color: black;
    font-weight: 600;
    white-space: nowrap;
  }

  /* Y-axis vertical line */
  .pg-y-axis-line {
  position: absolute;
  left: -96px;
  top: 0;
  width: 2px;
  height: 200%;
  z-index: 2;

  /* PERFECT DOTS */
  background-image: radial-gradient(circle, #2545FC 1.5px, transparent 1.5px);
  background-size: 2px 10px;
  background-repeat: repeat-y;
  background-position: center top;
}

/* Arrow ↑ */
.pg-y-axis-line::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);

  border-bottom: 10px solid #2545FC;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

  /* Top titles */
  .pg-phase-title {
    /* text-transform: uppercase; */
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #2545FC;
    text-align: center;
  }

  .pg-titles {
    grid-column: 2 / 7;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  /* Timeline row */
  .pg-timeline {
    grid-column: 2 / 7;
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
  }

  .pg-svg {
    width: 100%;
    height: 160px;
    overflow: visible;
    z-index: 2;
  }

  .pg-curve-base {
    stroke: var(--pg-line);
    stroke-width: 3.5;
    fill: none;
  }

  .pg-curve-active {
    stroke: var(--pg-brand);
    stroke-width: 4.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* Moving dot */
  .pg-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3.5px solid var(--pg-brand);
    box-shadow: 0 0 24px rgba(37, 69, 252, 0.7),
                0 0 10px rgba(37, 69, 252, 0.35);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
  }

  /* Vertical separators - exactly like the image */
  .pg-timeline-separators {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .pg-v-sep {
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;

  background-image: radial-gradient(circle, rgba(148,163,184,0.5) 1px, transparent 1px);
  background-size: 2px 10px;
  background-repeat: repeat-y;
}

  /* Services row */
  .pg-services {
    grid-column: 2 / 7;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }

  .pg-services-col {
    padding: 0 18px;
    border-right: 1px dashed var(--pg-grid);
    font-size: 13.5px;
    line-height: 1.45;
  }

  .pg-services-col:last-child {
    border-right: none;
  }

  .pg-services-col ul {
    list-style: none;
    display: grid;
    gap: 7px;
    margin-top: 8px;
  }

  .pg-services-col li {
    color: black;
    position: relative;
    padding-left: 2px;
    font-size: 15px;
    font-weight: 500;
  }

  /* .pg-services-col li:after {
    content: "→";
    position: absolute;
    right: -2px;
    color: var(--pg-brand);
    font-size: 15px;
    opacity: 0.85;
  } */

  /* Bottom X-axis */
  .pg-axis-bottom {
    grid-column: 2 / 7;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
  }

 .pg-axis-line {
  flex: 1;
  height: 2px;
  position: relative;

  /* PERFECT DOTS */
  background-image: radial-gradient(circle, #2545FC 1.5px, transparent 1.5px);
  background-size: 10px 2px; /* spacing */
  background-repeat: repeat-x;
  background-position: left center;
}

/* Arrow → */
.pg-axis-line::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);

  border-left: 10px solid #2545FC;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

  /* Vertical separators for titles */
 .pg-titles > div:not(:last-child),
.pg-services-col {
  position: relative;
}
/* custom dotted divider instead of border */
.pg-titles > div:not(:last-child)::after,
.pg-services-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;

  background: repeating-linear-gradient(
    to bottom,
    rgba(148, 163, 184, 0.35) 0px,
    rgba(148, 163, 184, 0.35) 3px,
    transparent 3px,
    transparent 9px
  );
}
.pg-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(37, 69, 252, 0.03),
    transparent
  );
  pointer-events: none;
}

  /* NEW: Bottom section (after progress) */
  .bottom-section {
    padding: 120px 24px 140px;
    background: var(--pg-bg);
    text-align: center;
  }

  .bottom-section .pg-container {
    width: min(1200px, 92vw);
    margin: 0 auto;
  }

  .bottom-section h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .bottom-section p {
    font-size: clamp(17px, 1.6vw, 22px);
    color: var(--pg-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* MOBILE */
  @media (max-width: 900px) {
    .pg-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto auto;
    }

    .pg-axis-left {
      grid-row: 1 / 2;
      grid-column: 1 / 2;
      justify-content: center;
      padding-bottom: 12px;
    }

    .pg-axis-left span {
      transform: none;
      letter-spacing: 3px;
    }

    .pg-y-axis-line {
      left: 28px;
      top: 0;
      height: 100%;
      width: 2px;
    }

    .pg-titles {
      grid-column: 1 / 2;
      grid-template-columns: 1fr;
      gap: 12px;
      text-align: left;
    }

    .pg-titles > div {
      border-right: none;
      border-bottom: 1px dashed var(--pg-grid);
      padding-bottom: 10px;
    }

    .pg-timeline {
      grid-column: 1 / 2;
      height: 320px;
      margin: 12px 0;
      padding-left: 52px;
    }

    .pg-svg {
      height: 320px;
    }

    .pg-services {
      grid-column: 1 / 2;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .pg-services-col {
      padding: 0;
      border-right: none;
      border-bottom: 1px dashed var(--pg-grid);
      padding-bottom: 18px;
    }

    .pg-services-col:last-child {
      border-bottom: none;
    }

    .pg-axis-bottom {
      grid-column: 1 / 2;
    }

    .pg-timeline-separators {
      display: none;
    }
  }

  @media (max-width: 900px) {
    .pg-section {
      position: relative;
      top: auto;
      padding: 0 0 72px;
    }

    .pg-container {
      width: min(100%, calc(100vw - 24px));
    }

    .pg-header {
      margin-bottom: 24px;
    }

    .brand-gradient-title {
      font-size: clamp(28px, 8vw, 38px);
      line-height: 1.08;
    }

    .pg-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto auto;
      gap: 12px;
    }

    .pg-axis-left {
      display: none;
    }

    .pg-titles {
      grid-column: 1 / 2;
      grid-template-columns: 1fr;
      gap: 10px;
      text-align: left;
    }

    .pg-titles > div {
      border-right: none;
      border-bottom: none;
      padding: 12px 14px;
      border-radius: 14px;
      background: #f7f9ff;
      border: 1px solid rgba(37, 69, 252, 0.08);
      box-shadow: 0 8px 20px rgba(15, 30, 120, 0.04);
    }

    .pg-titles > div:not(:last-child)::after,
    .pg-services-col:not(:last-child)::after {
      display: none;
    }

    .pg-timeline {
      grid-column: 1 / 2;
      height: 160px;
      margin: 6px 0 0;
      padding-left: 0;
    }

    .pg-svg {
      height: 160px;
    }

    .pg-services {
      grid-column: 1 / 2;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .pg-services-col {
      padding: 14px 14px 12px;
      border-right: none;
      border-bottom: none;
      border-radius: 14px;
      background: #ffffff;
      border: 1px solid rgba(37, 69, 252, 0.08);
      box-shadow: 0 8px 20px rgba(15, 30, 120, 0.04);
    }

    .pg-axis-bottom {
      grid-column: 1 / 2;
      margin-top: 4px;
    }

    .pg-timeline-separators {
      display: none;
    }

    .pg-dot {
      width: 16px;
      height: 16px;
      border-width: 3px;
    }

    .pg-y-axis-line {
      left: 16px;
      top: 0;
      height: 100%;
      width: 2px;
    }
  }

  @media (max-width: 640px) {
    .pg-section {
      padding: 0 0 56px;
    }

    .brand-gradient-title {
      font-size: clamp(24px, 8.8vw, 32px);
    }

    .pg-subtitle {
      font-size: 15px;
      line-height: 1.5;
      padding: 0 8px;
    }

    .pg-timeline {
      height: 120px;
    }

    .pg-svg {
      height: 120px;
    }

    .pg-y-axis-line {
      left: 12px;
      background-size: 2px 8px;
    }

    .pg-dot {
      width: 14px;
      height: 14px;
      border-width: 2px;
    }

    .pg-timeline-separators {
      display: none;
    }

    .pg-phase-title {
      font-size: 15px;
    }

    .pg-services-col li {
      font-size: 14px;
    }
  }
