* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; }
body { background: #111; color: #fff; }

nav { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 20px 80px;
  background: #000;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
nav ul { display: flex; gap: 25px; list-style: none; }
a { color: #fff; text-decoration: none; font-size: 18px; }
a:hover { color: #ff3c00; }

.hero { 
  text-align: center; 
  padding: 180px 20px 120px 20px; /* زودت فوق عشان الناف */
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1170') center/cover; 
}
.hero h1 { font-size: 55px; color: #ff3c00; margin-bottom: 10px; }
.hero p { font-size: 20px; }

.btn { 
  background: #ff3c00; 
  color: #000; 
  padding: 15px 40px;
  border-radius: 10px; 
  display: inline-block; 
  margin-top: 25px; 
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}
.btn:hover { 
  transform: scale(1.1);
  box-shadow: 0 0 20px #ff3c00;
}

.features { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  padding: 80px 50px;
  margin-top: 40px;
}
.card { 
  background: #222; 
  padding: 40px 30px;
  text-align: center; 
  border-radius: 12px; 
  font-size: 20px; 
  font-weight: bold;
  transition: 0.3s;
}
.card:hover {
  background: #ff3c00;
  transform: translateY(-10px);
  color: #000;
}

.pricing { text-align: center; padding: 60px 50px; background: #000; }
.plans { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.plan { 
  background: #1a1a1a; 
  padding: 40px; 
  border-radius: 12px; 
  min-width: 220px;
  border: 2px solid #333;
  transition: 0.3s;
  font-size: 20px;
  font-weight: bold;
}
.plan:hover {
  border-color: #ff3c00;
  transform: scale(1.05);
}

footer { text-align: center; padding: 30px; background: #000; margin-top: 50px; }

@media (max-width: 768px) {
  .features, .plans { grid-template-columns: 1fr; flex-direction: column; }
  nav { flex-direction: column; gap: 10px; }
}
