.intro {
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
}


/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  background: radial-gradient(circle at top, #0b1e4a, #030722 70%);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.logo img {
  width: 44px;
  height: 44px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: #dbe7ff;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 64px;
  align-items: center;
}

/* ===== TEXT ===== */
.hero-text h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #55b7ff;
}

.hero-text p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: #cdd9ff;
  margin-bottom: 32px;
}

/* ===== CTA ===== */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e90ff, #00c6ff);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(30,144,255,0.45);
}

/* ===== MOCKUP AREA ===== */
.hero-mockup {
  position: relative;
}

/* Map image */
.map-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* UI overlay images */
.ui-img {
  position: absolute;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  border-radius: 16px;
}

/* Chatbot image position */
.ui-img.chatbot {
  width: 280px;
  left: -40px;
  bottom: 40px;
}

/* Location info image position */
.ui-img.location {
  width: 260px;
  right: -20px;
  bottom: 120px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .nav {
    display: none;
  }

  .ui-img {
    display: none;
  }
}
