.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C42 100%);
  padding-top: 100px;
}

/* Floating light motion background */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08), transparent 70%),
              radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05), transparent 70%);
  animation: moveBackground 10s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes moveBackground {
  from { transform: translateY(0); }
  to { transform: translateY(30px); }
}

.hero-background,
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-overlay {
  background: linear-gradient(135deg, rgba(255,107,53,0.9) 0%, rgba(255,140,66,0.9) 100%);
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: #fff;
}

.tagline {
  color: #ffe5b4;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.btn-primary {
  background: linear-gradient(90deg, #ff7b00, #ff9a3d);
  border: none;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,145,77,0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}

.play-icon {
  margin-right: 8px;
}

/* Hero Stats Section */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-top: 40px;
  position: relative;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat {
  text-align: center;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}
.stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #ffd580, #ff914d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  animation: glow 2.5s ease-in-out infinite alternate;
}
.stat p {
  font-size: 1rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}
.stat:hover {
  transform: translateY(-5px);
  color: #ffd580;
}

@keyframes glow {
  from { text-shadow: 0 0 8px rgba(255,180,100,0.4); }
  to { text-shadow: 0 0 20px rgba(255,180,100,0.9); }
}
.divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  border-radius: 2px;
  opacity: 0.8;
}

/* Phone Mockup */
.hero-image {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  position: relative;
  width: 360px;
  height: 600px;
  background: white;
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: float 4s ease-in-out infinite;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #1a1a1a;
  border-radius: 0 0 15px 15px;
  z-index: 10;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(-15deg) rotateX(5deg); }
  50% { transform: translateY(-15px) rotateY(-12deg) rotateX(4deg); }
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--background-light);
  border-radius: 30px;
  overflow: hidden;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 25px;
  height: 25px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: translateX(-50%) rotate(45deg);
  animation: scrollIndicator 1.5s infinite;
}
@keyframes scrollIndicator {
  0%, 100% { transform: translate(-50%, 0) rotate(45deg); opacity: 1; }
  50% { transform: translate(-50%, 10px) rotate(45deg); opacity: 0.6; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-stats {
    justify-content: center;
  }
  .divider {
    display: none;
  }
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
}
