.reason {
  padding-left: 24px;
  position: relative;
}

.reason::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  display: block;
  width: 16px;
  height: 16px;
  background: url('/images/homepage/green-tick.svg') center/contain no-repeat;
}

hr {
  border: 1px dashed #6D6E71;
  background: none;
  padding: 0;
  margin: 0;
}

.how-card {
  padding: 16px 24px 32px;
  background: #FFFFFF;
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.how-card img {
  width: 100%;
}

.how-card ul {
  padding: 0;
  list-style-type: none;
  margin-bottom: 24px;
}

.how-card li {
  padding-left: 15px;
  position: relative;
}

.how-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  display: block;
  width: 5px;
  height: 8px;
  background: url('/images/homepage/list-arrow.svg') center/contain no-repeat;
}

.sliding-btn {
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 2px solid #194276;
  border-radius: 60px;
  padding-right: 30px;
  transition: all .2s ease-in-out;
  margin-top: auto;
}

.sliding-btn span {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  transition: all .15s ease-in-out;
  padding-left: 30px;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.sliding-btn svg {
  position: absolute;
  right: -2px;
  z-index: 2;
}

.how-card:hover .sliding-btn {
  width: 172px;
}

.how-card:hover .sliding-btn span {
  color: #194276;
}

.how-card:hover .sliding-btn:hover {
  background: #194276;
  text-decoration: none;
  transition: none;
}

.how-card:hover .sliding-btn:hover span {
  color: #fff;
  transition: none;
}

.how-card:hover .sliding-btn:hover svg path {
  fill: #fff;
}

.blue-cta-line {
  position: relative;
  background: #194276;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  border-radius: 0 25px;
  padding: 22px 47px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blue-cta-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 24px;
  height: 100%;
  background: #F47C20;
}

.blue-cta-line .h2 {
  color: #fff;
}

.blue-cta-line .btn-mc-outline-primary {
  background: transparent;
  color: #fff;
  border-color: #fff;
  width: 306px;
  max-width: 100%;
}

.blue-cta-line .btn-mc-outline-primary:hover {
  background: #fff;
  color: #00569A;
}

@media only screen and (min-width: 992px) {
  .blue-cta-line {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .blue-cta-line .h2 {
    margin-right: 32px;
  }
}

@media only screen and (min-width: 1200px) {

  .blue-cta-line {
    padding-right: 110px;
  }
}

/*--- CUSTOMERS ---*/
.customers {
  padding: 68px 12px;
  margin-top: 48px;
  background: linear-gradient(121deg, #001C43 8.21%, #015C6C 75.6%);
  color: #fff;
}

  .customers .customer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

    .customers .customer .customer__text {
      position: relative;
      padding: 32px 0 24px;
    }

      .customers .customer .customer__text p {
        margin-bottom: 0;
        color: #00FFD2;
      }

    .customers .customer .customer__img {
      position: relative;
      padding-top: 32px;
      text-align: center;
    }

      /*--- quote ---*/
      .customers .customer .customer__text::before,
      .customers .customer .customer__img::before {
        content: url('/images/plg-lp/quotemark.svg');
        position: absolute;
        width: 50px;
        height: 32px;
        top: -17px;
        left: 0;
      }

      .customers .customer .customer__img::before {
        left: calc(100% - 50px);
        transform: rotate(180deg);
      }


      .customers .customer .customer__text::after,
      .customers .customer .customer__img::after {
        content: '';
        position: absolute;
        width: calc(100% - 55px);
        border-top: 2px dashed #00FFD2;
        top: 0;
      }

      .customers .customer .customer__text::after {
        right: 0;
      }

      .customers .customer .customer__img::after {
        left: 0;
      }


      .customers .customer .customer__img img {
        margin: 0 auto 4px;
      }

      .customers .customer .customer__img p {
        margin: 0;
      }

        .customers .customer .customer__img p.name {
          font-weight: 500;
        }

        .customers .customer .customer__img p,
        .customers .customer .customer__img p.name,
        .customers .customer .customer__img p a {
          color: #fff !important;
        }
html {
      scroll-behavior: smooth;
      scroll-padding-top: 140px; /* adjust for your actual navbar height */
     }

     
     /* Pricing  */

     .pricing-tier {
      font-size: 1.5rem;
      font-weight: 700;
      color: #194276;
      margin-bottom: 0.5rem;
    }
    
    .pricing-price {
      font-size: 2rem;
      font-weight: 700;
      color: #F47C20;
    }

    .pricing-btn {
      background: linear-gradient(88.99deg, #00569a 0.86%, #207ab6 92.9%);
      color: #fff;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 30px;
      border: none;
      display: block;
      text-align: center;
      width: 100%;
      transition: background 0.3s ease, color 0.3s ease;
      text-decoration: none;
    }
    
    .pricing-btn:hover {
      background: #001C43;
      color: #fff;
      text-decoration: none;
    }

    #pricing {
      padding-top: 140px;
    }