/* ── Process / Parcours client section ── */
#process.sector-activity-area {
  background: var(--sdg-slate-50) !important;
}

#process .dreamit-section-title h5 {
  color: var(--sdg-red) !important;
}

#process .dreamit-section-title h5::before {
  background: var(--sdg-red) !important;
}

#process .process-eyebrow-accent {
  position: relative;
  display: inline-block;
  color: var(--sdg-red) !important;
}

#process .process-eyebrow-accent::after {
  content: "";
  position: absolute;
  left: -12px;
  top: -16px;
  background: url(../images/resource/section1.png);
  width: 63px;
  height: 63px;
  display: inline-block;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

#process .dreamit-section-title::after {
  display: none !important;
}

#process .dreamit-section-title h1 span.color2 {
  background: var(--sdg-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* ── Horizontal journey timeline (desktop) ── */
#process .process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 20px;
  padding-top: 8px;
}

#process .process-timeline__track {
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: var(--sdg-gradient);
  border-radius: 3px;
  opacity: 0.35;
  z-index: 0;
}

#process .process-timeline__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

#process .process-timeline__node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

#process .process-timeline__number {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  color: var(--sdg-muted);
}

#process .process-timeline__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--sdg-blue);
  box-shadow: 0 8px 24px rgba(48, 128, 255, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#process .process-timeline__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  z-index: 0;
}

#process .process-timeline__node {
  width: 72px;
}

#process .process-timeline__icon i {
  position: relative;
  z-index: 1;
  font-size: 30px;
  transition: color 0.35s ease;
}

#process .process-timeline__step:hover .process-timeline__icon {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(48, 128, 255, 0.18);
}

#process .process-timeline__step:hover .process-timeline__icon::before {
  transform: scale(1);
}

#process .process-timeline__step:hover .process-timeline__icon i {
  color: #ffffff !important;
}

#process .process-timeline__step:hover {
  z-index: 2;
}

#process .process-timeline__content {
  width: 100%;
}

#process .process-timeline__body {
  position: relative;
  min-height: 7.5em;
}

#process .process-timeline__content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  padding-bottom: 12px;
  position: relative;
}

#process .process-timeline__content h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 36px;
  height: 2px;
  border-radius: 1px;
}

#process .process-timeline__content p.process-timeline__description,
#process .process-timeline__benefit {
  color: var(--sdg-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

#process .process-timeline__benefit {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  text-align: center;
  color: var(--sdg-dark);
}

#process .process-timeline__benefit-label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

@media (hover: hover) {
  #process .process-timeline__step:hover .process-timeline__description {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
  }

  #process .process-timeline__step:hover .process-timeline__benefit {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

#process .process-timeline__step:focus-within .process-timeline__description {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
}

#process .process-timeline__step:focus-within .process-timeline__benefit {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#process .process-timeline__step--blue .process-timeline__benefit-label {
  color: var(--sdg-blue-dark);
}

#process .process-timeline__step--purple .process-timeline__benefit-label {
  color: var(--sdg-purple);
}

#process .process-timeline__step--red .process-timeline__benefit-label {
  color: var(--sdg-red);
}

/* Step color accents */
#process .process-timeline__step--blue .process-timeline__icon {
  border-color: var(--sdg-blue);
}

#process .process-timeline__step--blue .process-timeline__icon::before {
  background: var(--sdg-blue);
}

#process .process-timeline__step--blue .process-timeline__icon i {
  color: var(--sdg-blue);
}

#process .process-timeline__step--blue .process-timeline__content h3 {
  color: var(--sdg-blue-dark);
}

#process .process-timeline__step--blue .process-timeline__content h3::after {
  background: var(--sdg-blue);
}

#process .process-timeline__step--purple .process-timeline__icon {
  border-color: var(--sdg-purple);
}

#process .process-timeline__step--purple .process-timeline__icon::before {
  background: var(--sdg-purple);
}

#process .process-timeline__step--purple .process-timeline__icon i {
  color: var(--sdg-purple);
}

#process .process-timeline__step--purple .process-timeline__content h3 {
  color: var(--sdg-purple);
}

#process .process-timeline__step--purple .process-timeline__content h3::after {
  background: var(--sdg-purple);
}

#process .process-timeline__step--red .process-timeline__icon {
  border-color: var(--sdg-red);
}

#process .process-timeline__step--red .process-timeline__icon::before {
  background: var(--sdg-red);
}

#process .process-timeline__step--red .process-timeline__icon i {
  color: var(--sdg-red);
}

#process .process-timeline__step--red .process-timeline__content h3 {
  color: var(--sdg-red);
}

#process .process-timeline__step--red .process-timeline__content h3::after {
  background: var(--sdg-red);
}

/* ── Vertical timeline (tablet & mobile) ── */
@media (max-width: 991px) {
  #process .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 20px;
  }

  #process .process-timeline__track {
    top: 0;
    bottom: 40px;
    left: 55px;
    right: auto;
    width: 3px;
    height: auto;
  }

  #process .process-timeline__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    padding: 0 0 40px;
  }

  #process .process-timeline__step:last-child {
    padding-bottom: 0;
  }

  #process .process-timeline__node {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  #process .process-timeline__number {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    font-size: 11px;
    white-space: nowrap;
  }

  #process .process-timeline__icon {
    width: 64px;
    height: 64px;
    margin-top: 18px;
  }

  #process .process-timeline__node {
    width: 64px;
  }

  #process .process-timeline__content {
    flex: 1;
    padding-top: 18px;
    text-align: left;
  }

  #process .process-timeline__body {
    min-height: 6.5em;
  }

  #process .process-timeline__benefit {
    text-align: left;
  }

  #process .process-timeline__content h3::after {
    left: 0;
    transform: none;
  }
}

@media (max-width: 575px) {
  #process .process-timeline {
    padding-left: 8px;
  }

  #process .process-timeline__track {
    left: 39px;
  }

  #process .process-timeline__step {
    gap: 16px;
  }

  #process .process-timeline__icon {
    width: 56px;
    height: 56px;
  }

  #process .process-timeline__node {
    width: 56px;
  }

  #process .process-timeline__icon i {
    font-size: 24px;
  }
}
