/* Animated gradient hero bg */
.gradient-anim {
  position: relative;
  background: linear-gradient(120deg, #001f3f, #013b6b, #0e7490);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
  padding: 80px 0;
  overflow: hidden;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%;}
  50% { background-position: 100% 50%;}
  100% { background-position: 0% 50%;}
}

/* Soft card for chart */
.chart-side .wpb_wrapper {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Headline & body text polish */
.hero-copy h1 {
  line-height: 1.1;
  margin-bottom: 10px;
  color: #ffffff;
}
.hero-copy p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}

/* Big animated number for average savings */
.save-metric .avg-save {
  display: inline-block;
  font-size: 48px;
  font-weight: 800;
  color: #a7f3d0; /* mint */
  margin-right: 8px;
}
.save-metric {
  margin: 12px 0 24px;
  color: #e5e7eb;
}

/* CTA button glow */
a.vc_btn3.cta-glow,
a.cta-glow {
  position: relative;
  font-weight: 700 !important;
  border-radius: 9999px !important;
  box-shadow: 0 10px 20px rgba(16,185,129,0.35);
}
a.cta-glow:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(16,185,129,0.5);
}

/* Floating badge */
.floating-badge {
  position: absolute;
  right: -10px; bottom: -10px;
  animation: floatUp 6s ease-in-out infinite;
  opacity: 0.9;
}
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .gradient-anim { padding: 48px 0; }
  .chart-side .wpb_wrapper { margin-top: 24px; }
}