/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;

  background-image: url("hero-venassa.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== OVERLAY (VERY SOFT, OPTIONAL) ===== */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.6)
  );
  z-index: 1;
}

/* ===== TOP TEXT ===== */
.hero-top {
  position: absolute;
  top: 8%;              /* 🔧 CONTROL TEXT HEIGHT HERE */
  left: 50%;
  transform: translateX(-50%);
  max-width: 900px;
  width: 90%;
  text-align: center;
  z-index: 2;
}

.hero-top h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-top h1 span {
  color: #e63946;
}

.hero-subheadline {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero-question {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ===== BOTTOM CTA ===== */
.hero-bottom {
  position: absolute;
  bottom: 8%;          /* 🔧 CONTROL CTA HEIGHT HERE */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.hero-cta {
  background: #1fd36b;
  color: #000;
  padding: 18px 44px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(31, 211, 107, 0.45);
  display: inline-block;
  transition: all 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(31, 211, 107, 0.6);
}

/* ===== TRUST ===== */
.hero-trust {
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: 0.9;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .hero-top {
    top: 6%;
  }

  .hero-top h1 {
    font-size: 2.2rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .hero-bottom {
    bottom: 6%;
    width: 100%;
    padding: 0 20px;
  }

  .hero-cta {
    width: 100%;
    max-width: 340px;
  }
}
