.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 45%, rgba(0, 0, 0, 0.15) 100%),
    url("../assets/images/hero-bg.png") center center / cover no-repeat;
  color: var(--color-white);
}

.hero-content {
  max-width: 560px;
  padding: 40px 0;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--color-brand-green);
}

.hero-description {
  max-width: 440px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.hero-features {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.rating-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-product {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: min(100%, 520px);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
}

.hero-badge {
  position: absolute;
  top: 40px;
  right: 80px;
  width: 140px;
  height: 140px;
  border: 3px solid var(--color-brand-green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--color-brand-green);
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(11, 74, 67, 0.15);
}

.hero-note {
  position: absolute;
  right: 24px;
  bottom: 80px;
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 6px;
  background: #e9cfae;
  color: #4b2c14;
  font-weight: 700;
  transform: rotate(3deg);
  box-shadow: var(--shadow-soft);
}

.how-it-works {
  position: relative;
}

.benefits {
  position: relative;
}

.product-copy {
  position: relative;
}

.product-features {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.product-features li {
  position: relative;
  padding-left: 22px;
  font-size: 1.05rem;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-brand-green);
  font-weight: 800;
}

.price-block {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.price {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  color: var(--color-brand-orange);
}

.price-note {
  color: var(--color-text-soft);
}

.round-badge {
  margin-top: 28px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--color-brand-green);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--color-brand-green);
  font-weight: 800;
  text-transform: uppercase;
}

.product-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-packshot {
  width: min(100%, 420px);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.16));
}

.site-footer {
  background: linear-gradient(180deg, var(--color-brand-dark) 0%, var(--color-brand-dark-2) 100%);
  padding: 24px 0;
}
