/* Hero Section */
.hero {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-left {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 260px;
  height: auto;
  border-radius: 10px;
}

.hero-right {
  flex: 1;
  color: #EAFBF3;
}

.hero-right h1 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-right .lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 14px;
}

.btn {
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.btn.primary {
  background: #10B981;
  color: #02120E;
  transition: background 0.3s ease;
}

.btn.primary:hover {
  background: #07a36a;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #EAFBF3;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    margin-bottom: 20px;
  }

  .hero-right h1 {
    font-size: 28px;
  }
}