* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #5c539d, #343a60);
  color: #fff;
  line-height: 1.6;
}

.pricing-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 18px;
  color: #ddd;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: #1f283b;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 300px;
  max-width: 350px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.plan-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
  color: #fefefe;
}

.plan-price {
  font-size: 40px;
  text-align: center;
  margin: 15px 0;
  color: #e33058;
}

.plan-price span {
  font-size: 14px;
  color: #ccc;
}

.features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 24px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e33058;
  font-weight: bold;
}

.btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid #e33058;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn:hover {
  background: #e33058;
  color: #fff;
}

.primary {
  background: #e33058;
  color: #fff;
}

.primary:hover {
  background: #fff;
  color: #e33058;
}

.recommended {
  border: 2px solid #e33058;
  transform: scale(1.05);
  z-index: 1;
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #e33058;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
