.price-table-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--color-gradient-darkgrey);
  color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 992px) {
  .price-table-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.price-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 992px) {
  .price-table {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.price-table__col {
  border: 0;
  border-radius: 8px;
  padding: 24px;
  background: transparent;
  position: relative;
}

.price-table__headline {
  font-size: 56px;
  line-height: 1.25;
  margin: 0 0 40px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  z-index: 9;
}
@media (max-width: 992px) {
  .price-table__headline {
    text-align: left;
  }
}

.price-table__text {
  font-size: 18px;
  line-height: 1.6;
  color: #FFFFFF;
  position: relative;
  z-index: 9;
}

/* List styling with check icon like product compare */
.price-table__text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.price-table__text li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  -moz-column-gap: 12px;
       column-gap: 12px;
  align-items: center;
}

.price-table__text li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-top: 0px;
  background-image: url("icon-hook-b.svg");
  background-repeat: no-repeat;
  background-size: 20px 14px;
}

/* Column-specific icon colors using CSS filters */
.price-table__col .price-table__svg {
  width: 410px;
  height: 180px;
  position: absolute;
  top: -70px;
  left: 0;
  transform: rotate(-22deg);
}
.price-table__col .price-table__svg svg {
  position: absolute;
  bottom: 80px;
  left: -80px;
  width: 480px;
  height: 380px;
  z-index: 0;
  --shape-color-left: #ffcf29;
  --shape-color-right: #dd7d38;
  transform: rotate(135deg) !important;
}
.price-table__col:first-child .price-table__text li::before {
  filter: brightness(0) saturate(100%) invert(53%) sepia(27%) saturate(1066%) hue-rotate(342deg) brightness(99%) contrast(98%);
}
.price-table__col:nth-child(2) .price-table__text li::before {
  filter: brightness(0) saturate(100%) invert(50%) sepia(23%) saturate(1241%) hue-rotate(187deg) brightness(87%) contrast(84%);
}
.price-table__col:nth-child(2) .price-table__svg {
  width: 410px;
  height: 180px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-22deg);
  top: initial;
}
.price-table__col:nth-child(2) .price-table__svg svg {
  position: absolute;
  bottom: -360px;
  left: -120px;
  top: initial;
  width: 480px;
  height: 380px;
  z-index: 0;
  --shape-color-left: #5e7bcc;
  --shape-color-right: #4a52af;
  transform: rotate(395deg) !important;
}
@media (max-width: 992px) {
  .price-table__col:nth-child(2) .price-table__svg svg {
    bottom: -90px;
    left: 150px;
  }
}
.price-table__col:nth-child(3) .price-table__text li::before {
  filter: brightness(0) saturate(100%) invert(84%) sepia(97%) saturate(6979%) hue-rotate(350deg) brightness(90%) contrast(91%);
}
.price-table__col:nth-child(3) .price-table__svg {
  width: 410px;
  height: 180px;
  position: absolute;
  bottom: 0px;
  top: initial;
  left: initial;
  right: -70px;
  transform: rotate(-32deg);
}
@media (max-width: 992px) {
  .price-table__col:nth-child(3) .price-table__svg {
    right: 0px;
  }
}
.price-table__col:nth-child(3) .price-table__svg svg {
  position: absolute;
  top: initial;
  bottom: -330px;
  left: initial;
  right: -210px;
  width: 510px;
  height: 380px;
  z-index: 0;
  --shape-color-left: #f3e600;
  --shape-color-right: #b1cb2a;
  transform: rotate(15deg) !important;
}