@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: auto;
  font-family: "Poppins", sans-serif;
}

h1 {
  margin-bottom: 2rem;
  font-size: 1.55rem;
}

.container {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 1rem 16px;
}
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  height: 100%;
  align-items: stretch;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.04);
  transition: 0.3s;
  z-index: 999;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

.card_header {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.second {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
}
.third {
  background: linear-gradient(135deg, #ef4444, #f97316);
}
.card_title {
  font-size: 1.1rem;
  font-weight: 600;
}

.card_price {
  font-size: 1.75rem;
  font-weight: 700;
}

.card_period {
  font-size: 0.9rem;
  opacity: 0.9;
}

.card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.fetures {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.fetures li {
  list-style: none;
  display: flex;
  gap: 0.1rem;
  align-items: center;
  color: #6b7280;
}

.btn-wraper {
  margin: 0 8%;
}
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 8px 18px rgba(12, 74, 110, 0.08);
  transition: transform 0.18s, box-shadow 0.18s;
  background-image: linear-gradient(90deg, #7c3aed, #06b6d4);
  margin-bottom: 1rem;
}

.card.featured {
  transform: translateY(-8px);
  border: 2px solid rgba(124, 58, 237, 0.12);
}
.card.featured .card__header {
  box-shadow: inset 0 -24px 40px rgba(0, 0, 0, 0.06);
}

@media (max-width: 420px) {
  .card__price {
    font-size: 1.4rem;
  }
}
