.section_grid._4_cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  position: relative;
  padding: 10px;
}

._2-months-free {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 180px;
  z-index: 5;
}
.strikethough {
    text-decoration: line-through;
}
.card_plans-2 {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  display: flex;
}

.card_content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 24px;
}

.card_plans-2.popular {
  border: 2px solid #00ffe5;
}

.card_plans-2.growth {
  border: 2px solid #00ffe5;
}
[icon="arrow_right"] svg {
    transform: rotate(-38deg);
    width: 20px;
    fill: #9a4d00;
}
.plan_label-2 {
  display: inline-flex;
  align-self: flex-start;
  background: #111;
  color: #301b6b;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  position: absolute;
  right: 15px;
  top: 15px;
}
[icon="checkmark"] {flex: 0 0 25px;}
[icon="checkmark"] svg {fill:#00eb4f;}
.popular .plan_label-2 {
  background: #00ffe5;
}

.growth .plan_label-2 {
  background: #00ffe5;
}

.plan_icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  align-self: center;
  display: none;
}

.pricing-card-title {
  font-size: 26px;
  text-align: center;
  line-height: 1.1;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.price_content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price_content .price {
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  margin: 0;
}

.price_cents {
  font-size: 24px;
  vertical-align: super;
}

.h5-2,
.h5,
.h2,
.h6,
.p20 {
  margin: 0;
}

.top10 {
  margin-top: 10px;
}

.center {
  text-align: center;
}

.color_black100 {
  color: #111;
}

.color_gray_50,
.color_gray50 {
  color: #5f6368;
}

.color_grayspacial {
    color: #555;
    font-weight: 600;
}

.color_red {
  color: #d93025;
}

.regular {
  font-weight: 400;
}

.setup_fee {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

.pricing-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 12px;
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
  box-sizing: border-box;
}

.pricing-button:hover {
  background: #e56d00;
  transform: translateY(-1px);
}

.save-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0 24px;
  padding: 12px 14px;
  background: #fff6ee;
  border: 1px solid #ffd2ae;
  border-radius: 12px;
  font-size: 14px;
  color: #9a4d00;
}

.save-label img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.div_checks-2 {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.checkbox_content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check_icon-2 {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
}

._1-12rem {
  line-height: 1.5;
}

.margin-16 {
  height: 16px;
}

.margin-24 {
  height: 24px;
}

.margin-32 {
  height: 32px;
}

@media (max-width: 1200px) {
  .section_grid._4_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card_plans-2.popular {
    transform: none;
  }
}

@media (max-width: 767px) {
  .section_grid._4_cards {
    grid-template-columns: 1fr;
  }

  .card_content {
    padding: 24px 18px;
  }

  .pricing-card-title {
    font-size: 26px;
  }

  .price_content .price {
    font-size: 44px;
  }

  ._2-months-free {
    position: static;
    transform: none;
    margin: 0 auto 16px;
    display: block;
  }
}