.c4y-hcp {
  padding: 0 0 4rem;
}

.c4y-hcp__inner {
  width: 100%;
}

.c4y-hcp__title {
  margin: 0 0 2rem !important;
  text-align: center;
  color: rgb(20, 31, 56) !important;
  font-size: 24px !important;
  line-height: 32px !important;
  font-weight: 700 !important;
}

.c4y-hcp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.c4y-hcp__card {
  position: relative;
  border: 1px solid rgb(228, 231, 236);
  border-radius: 1rem;
  background: #fff;
  padding: 1.5rem;
  transition: border-color .25s ease;
}

.c4y-hcp__card:hover {
  border-color: rgb(228, 231, 236);
}

.c4y-hcp__card--highlight {
  border-color: rgba(104, 200, 81, 0.45);
  background: linear-gradient(135deg, rgba(104, 200, 81, 0.06), rgba(104, 200, 81, 0.12));
  box-shadow: 0 24px 40px -28px rgba(104, 200, 81, 0.5);
}

.c4y-hcp__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(104, 200, 81);
  color: #fff;
  border-radius: 9999px;
  padding: 0.25rem 0.85rem;
  font-size: 12px;
  line-height: 16px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.c4y-hcp__plan {
  margin: 0 0 0.5rem !important;
  color: rgb(20, 31, 56) !important;
  font-size: 20px !important;
  line-height: 28px !important;
  font-weight: 700 !important;
}

.c4y-hcp__price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.c4y-hcp__price {
  color: rgb(20, 31, 56);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

.c4y-hcp__unit {
  color: rgb(107, 114, 128);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0.1rem;
}

.c4y-hcp__features {
  list-style: none;
  margin: 0 0 1.5rem !important;
  padding: 0 !important;
  display: grid;
  gap: 0.75rem;
}

.c4y-hcp__feature {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.c4y-hcp__f-label {
  color: rgb(107, 114, 128);
  font-size: 14px;
  line-height: 20px !important;
  font-weight: 400;
}

.c4y-hcp__f-value {
  color: rgb(20, 31, 56);
  font-size: 14px;
  line-height: 20px !important;
  font-weight: 400;
  text-align: right;
}

.c4y-hcp__f-value.is-bold {
  font-style: normal;
  font-weight: 600;
  color: rgb(20, 31, 56);
  font-size: 14px;
  line-height: 20px !important;
}

.c4y-hcp__cta,
.c4y-hcp__cta:link,
.c4y-hcp__cta:visited {
  display: inline-flex !important;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border-radius: 0.75rem;
  border: 1px solid rgb(228, 231, 236);
  background: #fff;
  color: rgb(20, 31, 56) !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 600 !important;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.c4y-hcp__cta:hover {
  background: rgb(104, 200, 81);
  border-color: rgb(104, 200, 81);
  color: #fff !important;
}

.c4y-hcp__card--highlight .c4y-hcp__cta,
.c4y-hcp__card--highlight .c4y-hcp__cta:link,
.c4y-hcp__card--highlight .c4y-hcp__cta:visited {
  background: rgb(41, 54, 101);
  border-color: rgb(41, 54, 101);
  color: #fff !important;
}

.c4y-hcp__card--highlight .c4y-hcp__cta:hover {
  background: rgba(41, 54, 101, 0.92);
  border-color: rgba(41, 54, 101, 0.92);
  color: #fff !important;
  transform: scale(1.03);
}

.c4y-hcp__footer {
  margin: 1.4rem 0 0 !important;
  text-align: center;
  color: rgb(107, 114, 128) !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
}

.c4y-hcp__footer-link,
.c4y-hcp__footer-link:link,
.c4y-hcp__footer-link:visited {
  color: rgb(104, 200, 81) !important;
  text-decoration: none;
  font-weight: 500;
}

.c4y-hcp__footer-link:hover {
  text-decoration: underline;
}

.c4y-hcp__anim {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  transition: opacity .5s ease, transform .5s ease;
}

.c4y-hcp--visible .c4y-hcp__anim {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .c4y-hcp__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .c4y-hcp__plan {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .c4y-hcp__price {
    font-size: 36px;
  }

  .c4y-hcp__unit {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 768px) {
  .c4y-hcp__title {
    font-size: 30px !important;
    line-height: 36px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c4y-hcp__anim {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .c4y-hcp__card {
    transition: none;
  }
}
