.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: var(--theme-color);
  border: 2px solid var(--theme-color);
  color: #fff !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition:
    box-shadow 0.3s ease,
    border-color 0.5s ease;
}
.hero-video .btn-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--accent-orange);
  transform: translate(-50%, -50%);
  transition:
    width 0.5s ease,
    height 0.5s ease;
  z-index: -1;
}
.hero-video .btn-cta:hover::before {
  width: 400px;
  height: 400px;
}
.hero-video .btn-cta:hover {
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.5);
  border-color: var(--accent-orange);
}
.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, 0.6),
    rgba(0, 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-video .btn-cta:hover {
  background-position: center;
  box-shadow: 0 0 18px rgba(255, 152, 0, 0.6);
}
.hero-cta {
  padding: 14px 28px;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 40px;
  background: linear-gradient(
    90deg,
    var(--accent-orange) 0%,
    var(--primary-blue) 50%,
    var(--accent-orange) 100%
  );
  background-size: 200% 100%;
  background-position: 100% center;
  border: 2px solid var(--primary-blue);
  color: #fff !important;
  transition:
    background-position 0.5s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 0 18px rgba(45, 48, 142, 0.5);
}
.hero-cta:hover {
  background-position: center;
  box-shadow: 0 0 22px rgba(255, 152, 0, 0.6);
}
.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;
}
