.mg-hero {
  background: #0A1A0F;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 600px;
  width: 100%;
  border-radius: 0;
  font-family: 'Satoshi', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.mg-hero * { box-sizing: border-box; }
.mg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(43,168,74,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(27,107,58,.15) 0%, transparent 55%);
  pointer-events: none;
}
.mg-hero-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
}
.mg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,199,98,.12);
  border: 1px solid rgba(61,199,98,.25);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #6FD98A;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.mg-badge-dot {
  width: 6px;
  height: 6px;
  background: #3DC762;
  border-radius: 50%;
  animation: mg-pulse 2s infinite;
}
@keyframes mg-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.mg-hero h1 {
  font-family: 'Gilroy', 'Gilroy-ExtraBold', sans-serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 20px;
}
.mg-hero h1 em { color: #3DC762; font-style: normal; }
.mg-hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  max-width: 480px;
}
.mg-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}
.mg-btn-primary {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  background: #208040;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  text-decoration: none;
  display: inline-block;
}
.mg-btn-primary:hover { background: #1B6B3A; }
.mg-btn-primary:active { transform: scale(.98); }
.mg-btn-outline {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.mg-btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.mg-hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.mg-stars { display: flex; gap: 3px; color: #FBBF24; font-size: 14px; margin-top: -20px; }
.mg-proof-text { font-size: 13px; color: rgba(255,255,255,.5); }
.mg-proof-text strong { color: rgba(255,255,255,.85); font-weight: 600; }
.mg-hero-checks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mg-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.mg-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: rgba(61,199,98,.2);
  border: 1px solid rgba(61,199,98,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mg-check-icon::before {
  content: '';
  width: 5px;
  height: 8px;
  border-right: 1.5px solid #3DC762;
  border-bottom: 1.5px solid #3DC762;
  transform: rotate(45deg) translateY(-1px);
}
.mg-hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.mg-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mg-card-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mg-card-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #6FD98A;
}
.mg-live-dot {
  width: 6px;
  height: 6px;
  background: #3DC762;
  border-radius: 50%;
  animation: mg-pulse 2s infinite;
}
.mg-product-list { display: flex; flex-direction: column; gap: 10px; }
.mg-product-item {
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mg-product-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(43,168,74,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.mg-product-info { flex: 1; min-width: 0; }
.mg-product-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mg-product-tags { display: flex; gap: 5px; margin-top: 4px; }
.mg-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(61,199,98,.15);
  color: #6FD98A;
}
.mg-product-price {
  font-size: 14px;
  font-weight: 700;
  color: #6FD98A;
  flex-shrink: 0;
}
.mg-card-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mg-card-stat { text-align: center; }
.mg-card-stat-num {
  font-family: 'Gilroy', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.mg-card-stat-label { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.mg-card-divider { width: 1px; height: 36px; background: rgba(255,255,255,.1); }

@media (max-width: 1024px) {
  .mg-hero-card { display: none; }
  .mg-hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mg-hero-inner { padding: 48px 20px; }
  .mg-hero-cta .mg-btn-primary,
  .mg-hero-cta .mg-btn-outline { flex: 1 1 auto; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .mg-badge-dot,
  .mg-live-dot { animation: none; }
}
