.marketing-home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf9 0%, #fff9f2 100%);
  padding: 1.75rem 0 2.25rem;
}

.marketing-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(15, 127, 115, 0.11), transparent 22%),
    radial-gradient(circle at 18% 34%, rgba(242, 165, 26, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 244, 0), rgba(255, 250, 244, 0.88));
  pointer-events: none;
}

.marketing-hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.marketing-hero-desktop {
  display: none;
}

.marketing-hero-mobile {
  position: relative;
  margin-top: 1rem;
}

.marketing-hero-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(239, 228, 216, 0.9);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 241, 0.86));
  box-shadow: 0 28px 80px rgba(38, 28, 18, 0.08);
}

.marketing-hero-stage::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 8%;
  bottom: 2%;
  height: 22%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(115, 76, 37, 0.16), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.marketing-hero-stage-glow {
  position: absolute;
  top: 4%;
  right: 8%;
  width: 34%;
  height: 30%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.marketing-hero-stage-desktop {
  padding: 0.5rem 0.25rem 0.25rem;
}

.marketing-hero-stage-mobile {
  padding: 0.55rem;
}

.marketing-hero-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.marketing-hero-image-desktop {
  max-width: none;
  transform: translateX(-4%) scale(1.05);
  transform-origin: center center;
}

.marketing-hero-image-mobile {
  border-radius: 28px;
}

.marketing-hero-note {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  max-width: 260px;
  border: 1px solid rgba(239, 228, 216, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem 1.1rem;
  box-shadow: 0 20px 42px rgba(38, 28, 18, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.marketing-feature-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .marketing-home-hero {
    padding-bottom: 3rem;
  }
}

@media (min-width: 1280px) {
  .marketing-home-hero {
    padding-bottom: 1.5rem;
  }

  .marketing-hero-grid {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 3.5rem;
  }

  .marketing-hero-desktop {
    display: block;
  }

  .marketing-hero-mobile {
    display: none;
  }

  .marketing-hero-stage {
    min-height: 650px;
  }

  .marketing-feature-wrap {
    grid-template-columns: 1fr 220px;
    align-items: center;
    margin-top: -1rem;
  }
}
