body {
  font-family: 'Poppins', sans-serif;
  background: #f7f9fc;
}

.pricing-section {
  padding: 70px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 36px;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.plan-type {
  color: #7b7b7b;
  font-weight: 500;
}

.plan-name {
  font-size: 24px;
  margin: 10px 0;
}

.price {
  font-size: 42px;
  color: #2f80ed;
  font-weight: 700;
  margin: 20px 0;
}

.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.features li {
  margin-bottom: 15px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2f80ed;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* Featured (Middle) Plan */
.featured {
  border: 2px solid #2f80ed;
  transform: scale(1.05);
}
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid #3b82f6;
    border-radius: 40px;
    background: #eaf2ff;
    color: #2563eb;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.call-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
