.spe-pricing {
  --spe-pro: #d5662f;
  --spe-startup: #7b9f43;
  --spe-btn-bg: #0b5e8e;
  --spe-btn-color: #ffffff;
  --spe-check: #7d9e43;
  --spe-gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #2f2f2f;
}

.spe-switch {
  display: flex;
  justify-content: center;
  margin: 0 0 22px;
}

.spe-tab {
  appearance: none;
  border: 1px solid #cfd3d7;
  background: #f2f2f2;
  color: #22314d;
  padding: 13px 34px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.spe-tab:first-child {
  border-radius: 6px 0 0 6px;
}

.spe-tab:last-child {
  border-radius: 0 6px 6px 0;
}

.spe-tab.is-active {
  background: #183962;
  color: #fff;
  border-color: #183962;
}

.spe-note {
  text-align: center;
  margin: 0 0 24px;
  color: #666;
  font-size: 15px;
}

.spe-panel {
  display: none;
}

.spe-panel.is-active {
  display: block;
}

.spe-grid {
  display: grid;
  gap: var(--spe-gap);
  align-items: stretch;
}

.spe-grid--1 {
  grid-template-columns: 1fr;
}

.spe-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spe-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spe-card {
  background: #e9e9e9;
  border: 1px solid #dadada;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.spe-card.is-highlighted {
  background: #ececec;
}

.spe-card-top {
  background: #2f2f31;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 12px 10px;
  font-size: 18px;
  text-transform: uppercase;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spe-card-head {
  padding: 34px 20px 30px;
  text-align: center;
  color: #fff;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.spe-head--pro {
  background: var(--spe-pro);
}

.spe-head--startup {
  background: var(--spe-startup);
}

.spe-head--white {
  background: #fff;
  color: #183962;
  border-bottom: 1px solid #dfdfdf;
}

.spe-card-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}

.spe-card-icon i,
.spe-card-icon svg {
  width: 1em;
  height: 1em;
  display: inline-block;
}

.spe-card-kicker {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.spe-card-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .5px;
}

.spe-card-sub {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
}

.spe-card-price-wrap {
  padding: 34px 24px 28px;
  text-align: center;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spe-card-price {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  color: #2f2f31;
}

.spe-card-price span {
  display: inline-block;
  margin-left: 6px;
  font-size: 22px;
  font-weight: 700;
}

.spe-card-full-price {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
}

.spe-card-save {
  margin-top: 18px;
  color: #6c9636;
  font-size: 24px;
  font-weight: 800;
}

.spe-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spe-card-features li {
  position: relative;
  padding: 14px 18px 14px 52px;
  font-size: 18px;
  font-weight: 700;
  border-top: 1px solid #f3f3f3;
  min-height: 54px;
  display: flex;
  align-items: center;
}

.spe-card-features li::before {
  content: '\f00c';
  font-family: FontAwesome;
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--spe-check);
  font-size: 20px;
  line-height: 1;
}

.spe-card-cta {
  padding: 22px;
  border-top: 1px solid #dcdcdc;
  margin-top: auto;
}

.spe-buy-btn {
  display: block;
  text-align: center;
  background: var(--spe-btn-bg);
  color: var(--spe-btn-color) !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  padding: 15px 18px;
  border-radius: 6px;
  transition: opacity .2s ease;
}

.spe-buy-btn:hover {
  opacity: .92;
}

.spe-card:not(.is-highlighted) .spe-card-price {
  font-size: 52px;
}

.spe-card:not(.is-highlighted) .spe-card-price-wrap {
  min-height: 170px;
}

.spe-card.is-highlighted .spe-card-title {
  color: #fff !important;
}

@media (max-width: 1024px) {
  .spe-grid,
  .spe-grid--1,
  .spe-grid--2,
  .spe-grid--3 {
    grid-template-columns: 1fr;
  }

  .spe-card-price {
    font-size: 48px;
  }

  .spe-card-price span {
    font-size: 18px;
  }

  .spe-card-features li {
    font-size: 17px;
  }
}
