.hero-video {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero-video .btn-cta {
  padding: 6px 16px;
  font-size: 1.4rem;
  border-radius: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--new-green2), var(--new-green));
  border: 2px solid #00ff5e;
  color: #fff !important;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.45));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 16px;
}
.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.95;
  margin: 14px 0 24px;
}
.hero-cta {
  padding: 14px 28px;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 40px;
  box-shadow: 0 0 18px rgba(0,255,94,.38);
}
.trustbar .badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}