  /* ----- Section wrapper ----- */
  .home-our-process {
    background-color: #ffffff;
    padding: 80px 0 70px;
    overflow: hidden;
  }

  /* ----- Section header ----- */
  .home-our-process .home-our-process__header {
    text-align: center;
    margin-bottom: 60px;
  }

  .home-our-process .home-our-process__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .home-our-process .home-our-process__eyebrow-bar {
    width: 4px;
    height: 18px;
    background-color: #dd6402;
    display: inline-block;
    border-radius: 2px;
  }

  .home-our-process .home-our-process__eyebrow-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #dd6402;
    margin: 0;
  }

  .home-our-process .home-our-process__heading {
    font-size: 42px;
    font-weight: 800;
    color: #0d2d3a;
    line-height: 1.2;
    margin: 0;
  }

  /* ----- Timeline row ----- */
  .home-our-process .home-our-process__timeline {
    position: relative;
    display: flex;
    align-items: flex-start;
  }

  /* Horizontal line running across all dots */
  .home-our-process .home-our-process__line {
    position: absolute;
    top: 74px; /* vertically aligns with the dot centers */
    left: 0;
    right: 0;
    height: 2px;
    background-color: #0d2d3a;
    z-index: 0;
  }

  /* ----- Individual step ----- */
  .home-our-process .home-our-process__step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
  }

  /* Step label above the line */
  .home-our-process .home-our-process__step-label {
    font-size: 14px;
    color: #0d2d3a;
    margin: 0 0 18px 0;
    display: block;
  }

  /* Red dot on the timeline */
  .home-our-process .home-our-process__dot {
    width: 16px;
    height: 16px;
    background-color: #dd6402;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* Large ghost number */
  .home-our-process .home-our-process__number {
    font-size: 90px;
    font-weight: 800;
    color: #e8e8e8;
    line-height: 1;
    margin: 18px 0 10px;
    display: block;
    letter-spacing: -4px;
  }

  /* Step title */
  .home-our-process .home-our-process__step-title {
    font-size: 17px;
    font-weight: 700;
    color: #0d2d3a;
    margin: 0 0 10px 0;
  }

  /* Step description */
  .home-our-process .home-our-process__step-text {
    font-size: 14px;
    color: #888;
    line-height: 1.65;
    margin: 0;
  }

  /* ----- Responsive ----- */
  @media (max-width: 991px) {
    .home-our-process .home-our-process__heading {
      font-size: 32px;
    }

    .home-our-process .home-our-process__number {
      font-size: 64px;
    }
  }

  @media (max-width: 767px) {
    .home-our-process {
      padding: 50px 0;
    }

    .home-our-process .home-our-process__timeline {
      flex-direction: column;
      align-items: center;
    }

    .home-our-process .home-our-process__line {
      display: none;
    }

    .home-our-process .home-our-process__step {
      width: 100%;
      max-width: 320px;
      margin-bottom: 40px;
      padding: 0;
    }

    .home-our-process .home-our-process__step:last-child {
      margin-bottom: 0;
    }
  }
