body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #070707;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  color: #ff9a00;
  font-weight: 700;
  font-size: 24px;
}

/* BUTTONS */
.btn {
  padding: 12px 20px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.primary {
  background: linear-gradient(45deg,#ff6a00,#ff9a00);
  box-shadow: 0 10px 30px rgba(255,106,0,.4);
}

.primary:hover {
  transform: translateY(-3px);
}

.secondary {
  background: transparent;
  border: 1px solid #444;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 140px 80px;
  position: relative;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ff6a00, transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(120px);
  opacity: 0.6;
}

.hero h1 {
  font-size: 72px;
}

.hero span {
  color: #ff9a00;
}

.hero p {
  color: #aaa;
}

.hero-img img {
  width: 420px;
  animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* CARDS GLASS */
.card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(12px);
  transition: .3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
}

/* STEPS */
.steps {
  text-align: center;
  padding: 100px 20px;
}

.steps-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* ORDERS */
.orders {
  text-align: center;
  padding: 100px 20px;
}

.search-box {
  display: flex;
  justify-content: center;
}

.search-box input {
  padding: 14px;
  width: 300px;
  border-radius: 12px 0 0 12px;
  border: none;
}

.search-box button {
  background: #ff6a00;
  border: none;
  padding: 14px;
}

/* CATEGORIES */
.categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

/* APP */
.app {
  display: flex;
  justify-content: space-between;
  padding: 120px 80px;
}

.phone img {
  width: 260px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero, .app {
    flex-direction: column;
    text-align: center;
  }
}