.pricing {
  padding: 3rem 1rem;
}
.pricing__header {
  margin-bottom: 3rem;
}
.pricing__cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}
.pricing__badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #155265;
  color: white;
  font-size: 14px;
  padding: 0.25rem 20px;
  border-radius: 5px;
}
.pricing__card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 20px;
  position: relative;
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.2s ease;
}
.pricing__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.pricing__card--plus {
  border: 2px solid #0f172a;
}
.pricing__card__header {
  display: flex;
  justify-content: space-between;
}

.pricing__title {
  color: #155265;
  padding-bottom: 1.25rem;
  line-height: 130%;
}

.pricing__toggle {
  display: inline-flex;
  gap: 20px;
  background: #e2e8f0;
  margin-top: 10px;
  padding: 4px;
  border-radius: 9999px;
  font-size: 14px;
  position: relative;
}
.pricing__toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: #155265;
  border-radius: 9999px;
  transition: transform 0.3s ease;
  z-index: 0;
}
.pricing__toggle[data-active=monthly]::after {
  transform: translateX(100%);
}
.pricing__toggle-btn {
  border: none;
  background: transparent;
  padding: 0.4rem 1rem;
  font-weight: 500;
  border-radius: 9999px;
  color: #000;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  text-align: center;
}
.pricing__toggle-btn--active {
  color: #fff !important;
}

.pricing__plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing__price {
  display: flex;
  gap: 20px;
  align-items: end;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.pricing__savings {
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.pricing__per {
  display: block;
  font-size: 0.9rem;
  font-weight: normal;
  color: #64748b;
  padding-bottom: 16px;
}

.pricing__desc {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1rem;
}

.pricing__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 500;
  border: 1px solid #0f172a;
  background: white;
  color: #0f172a;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.pricing__btn--primary {
  background: #0f172a;
  color: white;
}

.pricing__features {
  list-style: none;
  padding-left: 0;
  font-weight: 300;
}
.pricing__features li {
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.margin-34 {
  margin-top: 34px;
}

.fade-in {
  animation: fadeIn 0.3s ease-in forwards;
}

.fade-out {
  animation: fadeOut 0.2s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0.2;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/*# sourceMappingURL=pricing.css.map */