body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

.hero {
  position: relative;
  height: 60vh;              /* ⬅ reduced from 70vh */
  min-height: 420px;         /* prevents too small hero */
  background: #ffffff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px 80px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.9;   /* 👈 controls softness */
  transition: opacity 1.2s ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero p {
  max-width: 620px;
  margin: auto;
}

.logo {
  position: absolute;
  top: 40px;
  left: 40px;
  height: 96px;      /* ⬅ ideal size */
  z-index: 3;
}
.logo {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
@media (max-width: 768px) {
  .logo {
    height: 72px;
    top: 24px;
    left: 24px;
  }
}

.cta {
  display: inline-block;
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
}

section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  text-align: center;
}

footer {
  background: #f5f5f5;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

.screenshots {
  text-align: center;
}

.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.shots img {
  width: 100%;
  max-width: 240px;
  margin: auto;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}