.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

.price-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid #e1dfdd;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 0 2px rgba(0, 0, 0, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.price-card:hover {
  border-color: #c7e0f4;
  box-shadow: 0 8px 24px rgba(11, 37, 69, .12), 0 2px 6px rgba(0, 0, 0, .06);
  transform: translateY(-2px);
}

.price-card--featured {
  border-color: #1a78b8;
  background: linear-gradient(180deg, #f5f9fd 0%, #fff 38%);
  box-shadow: 0 8px 28px rgba(11, 37, 69, .14), 0 2px 6px rgba(0, 0, 0, .06);
}

.price-card__topline {
  display: flex;
  min-height: 1.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price-card__badge {
  padding: .35rem .7rem;
  border-radius: 9999px;
  background: #dff6e9;
  color: #0c5e31;
  font-size: 11.5px;
  font-weight: 700;
}

.price-card__features {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #edebe9;
}

.price-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
}

.price-card__amount {
  color: #0b2545;
  font-family: 'Segoe UI Variable Display', 'Segoe UI Semibold', 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
}

.price-card__period {
  color: #605e5c;
  font-size: 14px;
  font-weight: 600;
}

.price-card__setup {
  margin-top: .9rem;
  padding: .8rem .9rem;
  border-left: 3px solid #2e9bd6;
  border-radius: 0 4px 4px 0;
  background: #eff6fc;
  color: #484644;
  font-size: 13.5px;
  line-height: 1.45;
}

.price-card__setup strong {
  color: #201f1e;
  font-weight: 800;
}

.price-card__feature {
  position: relative;
  padding-left: 1.35rem;
  color: #484644;
  font-size: 14px;
  line-height: 1.55;
}

.price-card__feature::before {
  content: '';
  position: absolute;
  width: .45rem;
  height: .45rem;
  top: .45rem;
  left: 0;
  border-radius: 50%;
  background: #107c41;
}

.price-card__cta {
  margin-top: auto;
  padding-top: 2rem;
}

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

  .price-card {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .pricing-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-card {
    transition: none;
  }

  .price-card:hover {
    transform: none;
  }
}
