:root {
  --primary: #ff7300;
  --primary-dark: #f06700;
  --secondary: #1f3557;
  --text: #4a5568;
  --bg: #f6f7fb;
  --white: #ffffff;
  --border: #e8e8e8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.topbar {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid #ececec;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.logo-text h1 {
  font-size: 34px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}

.logo-text span {
  font-size: 12px;
  color: #8a94a6;
  letter-spacing: 0.8px;
  font-weight: bold;
}

.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
}

.hero-container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h2 {
  font-size: 62px;
  line-height: 1.05;
  color: var(--secondary);
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-content h2 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 21px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #667085;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 115, 0, 0.12);
  color: var(--primary);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 28px;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: bold;
  transition: 0.3s ease;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 25px rgba(255, 115, 0, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid #dfe4ea;
  color: var(--secondary);
  background: white;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-card {
  background: white;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--primary);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.stat-box {
  background: #fff5ed;
  border-radius: 18px;
  padding: 22px;
}

.stat-box h3 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-box p {
  color: #7a7a7a;
  font-size: 15px;
}

.map-preview {
  border-radius: 22px;
  background:
    linear-gradient(
      rgba(31, 53, 87, 0.8),
      rgba(31, 53, 87, 0.8)
    ),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  padding: 50px 30px;
  text-align: center;
  color: white;
}

.map-preview h4 {
  font-size: 30px;
  margin-bottom: 14px;
}

.map-preview p {
  opacity: 0.9;
  line-height: 1.7;
}

footer {
  text-align: center;
  padding: 30px 20px 40px;
  color: #98a2b3;
  font-size: 14px;
}

@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }

  .hero-content h2 {
    font-size: 46px;
  }
}

@media (max-width: 600px) {
  .topbar {
    padding: 18px 20px;
  }

  .logo-text h1 {
    font-size: 28px;
  }

  .hero-content h2 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 25px;
  }
}