.isv-plans {
  padding: 42px 0 56px;
  color: #fff;
  background: #030303;
  text-align: center;
}

.isv-plans .isv-section-title {
  margin-bottom: 3px;
}

.isv-plans .isv-section-title span {
  color: var(--isv-magenta);
}

.isv-plans > .isv-container > p {
  margin-bottom: 28px;
  color: #d8dce9;
  font-size: 17px;
  font-weight: 700;
}

.isv-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 36px;
}

.isv-plan-card {
  padding: 31px 44px 34px;
  border: 2px solid var(--isv-blue);
  border-radius: 9px;
  text-align: left;
}

.isv-plan-card:nth-child(2) {
  border-color: var(--isv-violet);
}

.isv-plan-card:nth-child(3) {
  border-color: var(--isv-magenta);
}

.isv-plan-pill {
  width: fit-content;
  margin: 0 auto 17px;
  padding: 10px 28px;
  color: #fff;
  background: var(--isv-blue);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.isv-plan-card:nth-child(2) .isv-plan-pill,
.isv-plan-card:nth-child(2) .isv-buy-btn {
  background: var(--isv-violet);
}

.isv-plan-card:nth-child(3) .isv-plan-pill,
.isv-plan-card:nth-child(3) .isv-buy-btn {
  background: var(--isv-magenta);
}

.isv-plan-card h3 {
  margin-bottom: 22px;
  text-align: center;
  color: var(--isv-blue);
  font-size: 21px;
}

.isv-plan-card:nth-child(2) h3 {
  color: var(--isv-violet);
}

.isv-plan-card:nth-child(3) h3 {
  color: var(--isv-magenta);
}

.isv-plan-card ul {
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
  list-style: none;
  font-size: 13px;
  font-weight: 800;
}

.isv-plan-card li::before {
  content: "\2022";
  margin-right: 8px;
  color: var(--isv-blue);
}

.isv-plan-card:nth-child(2) li::before {
  color: var(--isv-violet);
}

.isv-plan-card:nth-child(3) li::before {
  color: var(--isv-magenta);
}

.isv-buy-btn {
  border: none;
  display: flex;
  justify-content: center;
  width: min(190px, 100%);
  margin: 0 auto;
  padding: 12px 18px;
  color: #fff;
  background: var(--isv-blue);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 900;
}

.isv-subscription {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  align-items: center;
  overflow: hidden;
  border: 2px solid #1b34ff;
  border-radius: 8px;
  background: linear-gradient(90deg, #101743, #151c5f);
  text-align: left;
}

.isv-infinity {
  display: grid;
  width: 180px;
  height: 180px;
  margin: 22px auto;
  place-items: center;
  border: 4px solid #243bff;
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(27, 52, 255, .75);
  font-size: 82px;
  font-weight: 900;
}

.isv-sub-copy h3 {
  color: #d7d9ff;
  font-size: 30px;
  line-height: 1;
}

.isv-sub-copy p {
  margin-bottom: 20px;
  color: #8da0ff;
  font-size: 16px;
  font-weight: 800;
}

.isv-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(95px, 1fr));
  gap: 14px 22px;
  max-width: 520px;
}

.isv-feature-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.isv-feature-list i {
  display: grid;
  flex: none;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--isv-blue);
  border-radius: 50%;
  font-style: normal;
}

.isv-sub-price {
  align-self: stretch;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 24px;
  background: rgba(0, 0, 0, .17);
  text-align: center;
}

.isv-sub-price .isv-term {
  padding: 9px 24px;
  background: #6c7ff5;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.isv-sub-price strong {
  font-size: 52px;
  line-height: 1;
}

.isv-sub-price span {
  color: #4565ff;
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .isv-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .isv-subscription {
    grid-template-columns: 1fr;
  }

  .isv-sub-copy {
    padding: 0 28px 24px;
    text-align: center;
  }

  .isv-feature-list {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .isv-plan-grid,
  .isv-feature-list {
    grid-template-columns: 1fr;
  }

  .isv-plan-card {
    padding: 27px 24px 30px;
  }

  .isv-subscription {
    text-align: center;
  }

  .isv-infinity {
    width: 145px;
    height: 145px;
    font-size: 64px;
  }

  .isv-sub-copy h3 {
    font-size: 25px;
  }
}
