/* ==========================================================
   BUSINESS GROWTH EXPERT - ROADMAP
   ========================================================== */

.bge-roadmap-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* The rail is positioned from the exact left edge
   of the roadmap list. */
.bge-roadmap-list::before {
  content: "";
  position: absolute;

  /* 48px node -> exact center = 24px */
  left: 24px;

  top: 24px;
  bottom: 24px;

  width: 2px;
  background: #6A58E4;

  border-radius: 999px;
  z-index: 0;
}

.bge-roadmap-node {
  position: absolute;
  left: 0;
  top: 0;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 2;

  box-sizing: border-box;

  border: 2px solid #6A58E4;
  border-radius: 50%;

  background: #F7FAFD;
  color: #6A58E4;

  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}

.bge-roadmap-node--final {
  background: #6A58E4;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .bge-roadmap-list::before {
    /* 40px node -> exact center = 20px */
    left: 20px;

    top: 20px;
    bottom: 20px;
  }

  .bge-roadmap-node {
    width: 40px;
    height: 40px;
  }
}







/* BGE - Week One compact execution list */
.bge-week-list{list-style:none;margin:0;padding:0;max-width:54rem;margin-inline:auto;border:1px solid #E6ECF5;border-radius:1.25rem;background:#fff;overflow:hidden;box-shadow:0 20px 50px -12px rgba(106,88,228,.05)}
.bge-week-item{display:flex;align-items:flex-start;gap:1rem;padding:1.1rem 1.5rem;border-bottom:1px solid #EEF1F8;transition:background-color .25s ease}
.bge-week-item:last-child{border-bottom:none}
.bge-week-item:hover{background:#FAFBFF}
.bge-week-day{flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;margin-top:.1rem;border-radius:.75rem;background:rgba(106,88,228,.08);color:#6A58E4;font:800 12px/1 "Inter",monospace;letter-spacing:.02em}
.bge-week-body{display:flex;flex-direction:column;gap:.2rem;min-width:0}
.bge-week-label{font:700 13px/1.3 "Inter",sans-serif;color:#6A58E4;text-transform:uppercase;letter-spacing:.06em}
.bge-week-text{font-size:.9375rem;line-height:1.6;color:#111827}

@media (max-width:639px){
  .bge-week-item{padding:.9rem 1.1rem;gap:.75rem}
  .bge-week-day{width:2rem;height:2rem;font-size:11px}
  .bge-week-text{font-size:.875rem}
}