.hero-visual.has-hero-image {
  position: relative;
  isolation: isolate;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(167, 119, 32, .25);
}
.hero-visual .hero-image-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: var(--hero-image-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  border-radius: inherit;
  image-rendering: -webkit-optimize-contrast;
  will-change: transform;
}
.hero-visual.has-hero-image .gold-coin,
.hero-visual.has-hero-image .balance-card,
.hero-visual.has-hero-image .float-card {
  z-index: 2;
}
.hero-visual.has-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .05),
      rgba(0, 0, 0, .18));
  pointer-events: none;
}
.packages-home-section {
  background: #faf7f9;
}
.packages-home-section .package-progress-note {
  max-width: none;
  margin-bottom: 24px;
}
@media (max-width: 760px) {
  .hero-visual.has-hero-image {
    border-radius: 20px;
  }
  .hero-visual .hero-image-layer {
    opacity: 1;
  }
}
.hero-visual.hero-chart-visual {
  height: auto;
  min-height: 560px;
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 16px 45px rgba(19, 13, 4, .12);
  display: flex;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
}
.hero-chart-visual .gold-price-banner {
  position: static;
  margin: 0 0 12px;
  max-width: none;
  flex: 0 0 auto;
}
.hero-chart-visual .tradingview-widget-container {
  flex: 1 1 auto;
  min-height: 460px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.hero-chart-visual .tradingview-widget-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-chart-visual .chart-credit {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
  flex: 0 0 auto;
}
@media (max-width: 760px) {
  .hero-visual.hero-chart-visual {
    height: auto;
    min-height: 440px;
    margin: 32px 5px 0;
  }
  .hero-chart-visual {
    padding: 12px;
  }
  .hero-chart-visual .tradingview-widget-container {
    min-height: 340px;
  }
}
.hero-visual .balance-card strong {
  font: 800 26px/1.15 Inter;
  margin: 6px 0;
}
@media (max-width: 760px) {
  .hero-visual .balance-card strong {
    font-size: 22px;
  }
}
