.hero, .hero *{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.hero{
  background: #4f84f7; /* uniform */
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: stretch;
}

.hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.12fr; /* more space to image */
  gap: 10px;
}

/* LEFT */
.hero-left{
  padding: 110px 46px;
  color: #ffffff;
}

.hero-left h1{
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
}

.hero-subtitle{
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 480px;
  margin: 0 0 32px;
}

/* BUTTONS */
.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn-primary{
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.btn-secondary{
  background: #ffffff;
  color: #0f172a;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-note{
  font-size: 13px;
  opacity: 0.85;
}

/* RIGHT (BIG + CLEAN) */
.hero-right{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 20px;
}

/* Container has NO background so it blends with hero */
.hero-shot{
  width: 100%;
  max-width: 980px;           /* BIG */
  background: transparent;    /* ✅ */
  border: 0;                  /* ✅ */
  border-radius: 24px;
  overflow: visible;
  filter: drop-shadow(0 36px 90px rgba(0,0,0,.30));
}

/* Image itself */
.hero-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;

  /* helps crisp rendering */
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* OPTIONAL FALLBACK (only if your PNG background is pure white)
   Turn ON if needed by removing the comment markers.
   It can "blend" white areas but may affect colors.

.hero-img{
  mix-blend-mode: multiply;
}

*/

/* Mobile */
@media (max-width: 980px){
  .hero{
    min-height: auto;
  }

  .hero-inner{
    grid-template-columns: 1fr;
  }

  .hero-left{
    padding: 92px 24px 18px;
  }

  .hero-left h1{
    font-size: 30px;
  }

  .hero-right{
    padding: 18px 16px 60px;
  }

  .hero-shot{
    max-width: 980px;
    border-radius: 18px;
  }

  .hero-img{
    border-radius: 18px;
  }
}
