.sim-overview {
  --overview-navy: #0a2234;
  --overview-red: #ad1b32;
  --overview-ink: #18232d;
  --overview-line: #e4e7e9;
  --overview-white: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sim-overview .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 40px;
  padding-left: 40px;
}

.sim-overview .home-process-grid,
.sim-overview .home-row-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
}

.sim-overview .home-section-number {
  display: block;
  margin-bottom: 18px;
  color: var(--overview-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.sim-overview .home-section-number::after {
  content: '';
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
}

.sim-overview .home-process-title h2,
.sim-overview .home-row-title h2 {
  margin: 0 0 18px;
  color: var(--overview-ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.sim-overview .home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--overview-red);
  font-size: 13px;
  font-weight: 700;
}

.sim-overview .home-process {
  padding: 72px 0;
  border-bottom: 1px solid var(--overview-line);
  background: #fbfbfa;
}

.sim-overview .home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sim-overview .home-steps li {
  position: relative;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 15px 22px;
  border: 1px solid var(--overview-line);
  border-radius: 10px;
  background: var(--overview-white);
  text-align: center;
}

.sim-overview .home-steps li:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  top: 48%;
  right: -17px;
  z-index: 2;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fbfbfa;
  color: var(--overview-navy);
  font-size: 17px;
}

.sim-overview .home-steps li:nth-child(3n)::after {
  display: none;
}

.sim-overview .home-steps li b {
  position: absolute;
  top: -11px;
  left: 16px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--overview-navy);
  color: var(--overview-white);
  font-size: 11px;
}

.sim-overview .home-steps li i {
  margin-bottom: 15px;
  color: var(--overview-navy);
  font-size: 29px;
}

.sim-overview .home-steps li strong {
  font-size: 14px;
  font-weight: 700;
}

.sim-overview .home-steps li span {
  margin-top: 8px;
  color: #647078;
  font-size: 12px;
  line-height: 1.5;
}

.sim-overview .home-tracker {
  padding: 64px 0;
  background: var(--overview-navy);
  color: var(--overview-white);
}

.sim-overview .home-tracker .home-section-number {
  color: rgba(255, 255, 255, .58);
}

.sim-overview .home-tracker .home-row-title h2 {
  color: var(--overview-white);
}

.sim-overview .home-tracker .home-text-link {
  color: #f0a8b5;
}

.sim-overview .home-tracker-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px 34px;
  padding: 22px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.sim-overview .home-tracker-list article:last-child {
  border-bottom: 0;
}

.sim-overview .home-tracker-list article > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sim-overview .home-tracker-list article > div span {
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
  font-weight: 700;
}

.sim-overview .home-tracker-list strong {
  color: var(--overview-white);
  font-size: 14px;
  font-weight: 700;
}

.sim-overview .home-tracker-list .project-timing {
  justify-content: flex-end;
  gap: 12px;
}

.sim-overview .home-tracker-list .project-timing .project-start-date {
  color: var(--overview-white);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.sim-overview .project-start-date time {
  color: inherit;
  font: inherit;
}

.sim-overview .project-stage-track {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sim-overview .project-stage-track--detailed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 14px;
  overflow: visible;
  padding: 10px 0 0;
}

.sim-overview .project-stage-track.project-stage-track--detailed > li {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 18px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  text-align: center;
}

.sim-overview .project-stage-track--detailed > li:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--overview-navy);
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  transform: translateY(-50%);
}

.sim-overview .project-stage-track--detailed .stage-number {
  position: absolute;
  top: -12px;
  left: 16px;
  z-index: 2;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #31485a;
  color: var(--overview-white);
  font-size: 11px;
  font-weight: 800;
}

.sim-overview .project-stage-track--detailed > li.completed .stage-number {
  background: #367a9e;
}

.sim-overview .project-stage-track--detailed > li.current .stage-number {
  background: #d72d4d;
}

.sim-overview .project-stage-track--detailed .stage-icon {
  margin-bottom: 14px;
  color: #d7edf8;
  font-size: 26px;
}

.sim-overview .project-stage-track--detailed > li.current .stage-icon {
  color: #ff7890;
}

.sim-overview .project-stage-track li {
  position: relative;
  min-width: 0;
  padding-top: 11px;
  color: rgba(255, 255, 255, .36);
}

.sim-overview .project-stage-track li::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
}

.sim-overview .project-stage-track .stage-label {
  display: block;
  padding-right: 6px;
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.35;
}

.sim-overview .project-stage-track--detailed .stage-label {
  min-height: 34px;
  padding-right: 0;
  color: var(--overview-white);
  font-size: 12px;
  font-weight: 700;
}

.sim-overview .project-stage-track .stage-date,
.sim-overview .project-stage-track .stage-note {
  display: block;
  margin-top: 6px;
  line-height: 1.35;
}

.sim-overview .project-stage-track .stage-date {
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-weight: 800;
}

.sim-overview .project-stage-track .stage-note {
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 500;
}

.sim-overview .project-stage-track li.completed {
  color: rgba(204, 233, 248, .8);
}

.sim-overview .project-stage-track li.completed::before {
  background: #7eb8d6;
}

.sim-overview .project-stage-track li.completed .stage-label::before {
  content: '\2713';
  margin-right: 5px;
  color: #a7d9ef;
  font-weight: 800;
}

.sim-overview .project-stage-track li.current {
  color: var(--overview-white);
}

.sim-overview .project-stage-track li.current::before {
  background: #f04c68;
  box-shadow: 0 0 0 3px rgba(240, 76, 104, .18), 0 0 15px rgba(240, 76, 104, .5);
}

.sim-overview .project-stage-track li.current .stage-label {
  font-weight: 800;
}

.sim-overview .project-stage-track li.current .stage-label::after {
  content: 'Aktif';
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 5px;
  border-radius: 999px;
  background: rgba(240, 76, 104, .18);
  color: #ff8ca0;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.sim-overview .status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #dceefa;
  color: #1c5e8d;
  font-size: 10.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1240px) {
  .sim-overview .container {
    padding-right: 32px;
    padding-left: 32px;
  }

}

@media (max-width: 1160px) {
  .sim-overview .home-process-grid,
  .sim-overview .home-row-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sim-overview .home-process-title,
  .sim-overview .home-row-title {
    max-width: 700px;
  }
}

@media (max-width: 900px) {
  .sim-overview .home-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sim-overview .home-steps li:nth-child(3n)::after {
    display: grid;
  }

  .sim-overview .home-steps li:nth-child(even)::after {
    display: none;
  }

  .sim-overview .home-tracker-list article {
    grid-template-columns: 1fr auto;
    gap: 8px 22px;
    padding: 20px 0;
  }

  .sim-overview .home-tracker-list .project-timing {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 680px) {
  .sim-overview .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .sim-overview .home-process,
  .sim-overview .home-tracker {
    padding: 58px 0;
  }

  .sim-overview .home-process-title h2,
  .sim-overview .home-row-title h2 {
    font-size: 30px;
  }

  .sim-overview .home-steps,
  .sim-overview .project-stage-track {
    grid-template-columns: 1fr;
  }

  .sim-overview .home-steps li {
    min-height: 155px;
  }

  .sim-overview .home-steps li::after {
    display: none !important;
  }

  .sim-overview .home-tracker-list article {
    gap: 11px 14px;
    padding: 24px 0;
  }

  .sim-overview .home-tracker-list .project-timing {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .sim-overview .project-stage-track {
    gap: 6px;
  }

  .sim-overview .project-stage-track li {
    min-height: 32px;
    display: flex;
    align-items: center;
    padding: 7px 10px 7px 18px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .045);
  }

  .sim-overview .project-stage-track.project-stage-track--detailed > li {
    min-height: 0;
    flex-direction: column;
    align-items: center;
    padding: 32px 18px 20px;
  }

  .sim-overview .project-stage-track--detailed > li::after {
    display: none !important;
  }

  .sim-overview .project-stage-track li::before {
    inset: 7px auto 7px 0;
    width: 4px;
    height: auto;
  }

  .sim-overview .project-stage-track .stage-label {
    font-size: 10px;
  }

  .sim-overview .project-stage-track--detailed .stage-label {
    min-height: 0;
    font-size: 12px;
  }

  .sim-overview .project-stage-track .stage-date,
  .sim-overview .project-stage-track .stage-note {
    font-size: 9px;
  }
}

/* Nine-step single-row layout */
.sim-overview .container {
  max-width: 1440px;
}

.sim-overview .home-process-grid {
  display: block;
}

.sim-overview .home-process-title {
  max-width: none;
  margin-bottom: 38px;
}

.sim-overview .home-process-title h2 {
  margin-bottom: 0;
}

.sim-overview .home-steps {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
}

.sim-overview .home-steps li {
  min-height: 238px;
  padding: 32px 10px 20px;
}

.sim-overview .home-steps li:not(:last-child)::after {
  right: -16px;
  display: grid !important;
}

.sim-overview .home-steps li:last-child::after {
  display: none !important;
}

.sim-overview .home-steps li i {
  font-size: 25px;
}

.sim-overview .home-steps li strong {
  font-size: 11px;
  line-height: 1.35;
}

.sim-overview .home-steps li span {
  font-size: 10px;
  line-height: 1.45;
}

.sim-overview .home-tracker .home-row-layout {
  display: block;
}

.sim-overview .home-tracker .home-row-title {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0 24px;
  margin-bottom: 38px;
}

.sim-overview .home-tracker .home-row-title .home-section-number {
  grid-column: 1 / -1;
}

.sim-overview .home-tracker .home-row-title h2 {
  margin: 0;
}

.sim-overview .project-stage-track.project-stage-track--detailed {
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
}

.sim-overview .project-stage-track.project-stage-track--detailed > li {
  min-height: 230px;
  padding: 34px 9px 14px;
}

.sim-overview .project-stage-track--detailed > li:not(:last-child)::after {
  right: -17px;
  display: grid !important;
}

.sim-overview .project-stage-track--detailed > li:last-child::after {
  display: none !important;
}

.sim-overview .project-stage-track li::before {
  inset: 0 0 auto;
  width: auto;
  height: 5px;
}

.sim-overview .project-stage-track--detailed .stage-icon {
  font-size: 22px;
}

.sim-overview .project-stage-track--detailed .stage-label {
  min-height: 30px;
  font-size: 10.5px;
}

.sim-overview .project-stage-track .stage-date {
  font-size: 9px;
}

.sim-overview .project-stage-track .stage-note {
  font-size: 8.25px;
}

.sim-overview .project-stage-track.project-stage-track--detailed > li.completed {
  border-color: rgba(57, 179, 124, .4);
  background: rgba(41, 146, 99, .09);
}

.sim-overview .project-stage-track--detailed > li.completed .stage-number {
  background: #2f9a6b;
}

.sim-overview .project-stage-track--detailed > li.completed .stage-icon {
  color: #73d8aa;
}

.sim-overview .project-stage-track li.completed {
  color: #9be5c0;
}

.sim-overview .project-stage-track li.completed::before {
  background: #39ae79;
}

.sim-overview .project-stage-track li.completed .stage-label::before {
  color: #73d8aa;
}

@media (max-width: 900px) {
  .sim-overview .home-steps,
  .sim-overview .project-stage-track.project-stage-track--detailed {
    grid-template-columns: repeat(9, minmax(126px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 14px 4px 16px;
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
  }

  .sim-overview .home-steps li,
  .sim-overview .project-stage-track.project-stage-track--detailed > li {
    scroll-snap-align: start;
  }
}

@media (max-width: 680px) {
  .sim-overview .home-process-title,
  .sim-overview .home-tracker .home-row-title {
    margin-bottom: 30px;
  }

  .sim-overview .home-tracker .home-row-title {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sim-overview .home-tracker .home-row-title .home-section-number {
    grid-column: auto;
  }

  .sim-overview .home-steps li {
    min-height: 225px;
  }

  .sim-overview .project-stage-track.project-stage-track--detailed > li {
    min-height: 225px;
    padding: 34px 9px 14px;
  }
}
