body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: #f4f6f8;
  color: #333;
}

.container {
  text-align: center;
  padding: 40px 20px;
}

.logo {
  font-size: 36px;
  font-weight: bold;
  color: #b04ba5; /* فوشيا هادي */
}

.subtitle {
  margin-bottom: 40px;
  font-size: 18px;
}

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

.card {
  background: #fff;
  width: 280px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card h2 {
  margin-bottom: 15px;
}

.card p {
  margin: 8px 0;
  color: #666;
}

/* زرار 3D */
.btn {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s ease;
}

/* الخطة المجانية – رمادي هادي */
.free {
  background: linear-gradient(145deg, #9e9e9e, #7e7e7e);
  box-shadow: 0 6px 0 #5f5f5f;
}

/* الخطة المدفوعة – فوشيا / موف */
.paid {
  background: linear-gradient(145deg, #c155b5, #8e3b87);
  box-shadow: 0 6px 0 #6b2c66;
}

.btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.4);
}

