:root {
  --orange1: #ff6a00;
  --orange2: #ff9a00;
  --bg: #070707;
  --card-bg: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 20% 20%, #111, #000);
  color: white;
  -webkit-font-smoothing: antialiased;
}

/* GRADIENT OVERLAY */
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, #000, transparent);
  opacity: 0.6;
  pointer-events: none;
}

/* NAVBAR PRO */
.navbar {
  position: fixed;
  width: 100%;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
  transition: 0.3s;
  z-index: 1000;
}

.logo {
  color: var(--orange2);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links a {
  margin: 0 12px;
  color: #aaa;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--orange2);
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

/* BUTTONS PRO */
.btn {
  padding: 10px 20px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 500;
}

.primary {
  background: linear-gradient(135deg, var(--orange1), var(--orange2));
  box-shadow: 0 10px 30px rgba(255,106,0,.4);
}

.primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255,106,0,.6);
}

.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: white;
}

.secondary:hover {
  border-color: var(--orange2);
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 140px 60px 100px;
  margin-top: 80px;
  position: relative;
}

/* GLOW PRO */
.bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--orange1), transparent 70%);
  filter: blur(140px);
  top: -200px;
  right: -200px;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(30px); }
}

.hero h1 {
  font-size: 68px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero p {
  font-size: 18px;
  margin: 20px 0;
  color: #bbb;
}

.hero span {
  color: var(--orange2);
}

/* HERO IMAGE */
.hero-img img {
  width: 260px;
  transition: 0.4s;
}

.hero-img img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* CARDS PRO */
.card {
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffcf8a, #ffb35c);
  color: #1a1a1a;
  text-align: center;
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(25deg);
  top: -100%;
  left: -100%;
  transition: 0.6s;
}

.card:hover::before {
  top: 100%;
  left: 100%;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* GRID */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 60px;
}

/* SECTIONS */
.steps, .orders {
  text-align: center;
  padding: 80px 20px;
}

/* FLEX GROUPS */
.steps-grid,
.categories {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

/* SEARCH PRO */
.search-box {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.search-box input {
  padding: 14px;
  width: 260px;
  border-radius: 12px 0 0 12px;
  border: none;
  outline: none;
}

.search-box button {
  background: linear-gradient(135deg, var(--orange1), var(--orange2));
  border: none;
  padding: 14px;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
}

/* APP SECTION */
.app {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
}

.phone img {
  width: 220px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #666;
  border-top: 1px solid var(--border);
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE PRO */
@media(max-width:768px){
  .hero, .app {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .steps-grid,
  .categories {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}