/* ===== HERO (real image for LCP) ===== */
.hero{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* image layer */
.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  z-index: 1;
}

.hero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content{
  background: transparent;
  border-radius: 0;
  padding: 0;
  max-width: min(520px, 92vw);
}

.hero__content h1{
  font-size: clamp(34px, 6.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--green-main);
  text-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.hero__content p{
  font-size: clamp(16px, 2.4vw, 18px);
  color: rgba(32, 39, 36, 0.95);
  max-width: 44ch;
  margin: 0;
}

/* ===== STEPS ===== */
.steps { padding: 120px 0; }

.steps__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  align-items: start;
}

.step{ position: relative; padding-top: 120px; }

.step__number{
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 120px;
  font-weight: 700;
  color: rgba(22, 126, 105, 0.18);
  line-height: 1;
  z-index: 0;
}

.steps__heading h2{
  font-size: 36px;
  line-height: 1.2;
  color: var(--green-main);
}

.step h3{
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.step p{
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

.step__image{
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;

  /* keeps consistent blocks */
  aspect-ratio: 16 / 10;
}

.step:nth-child(2){ margin-top: 120px; }

.step__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== STORY ===== */
.story{
  background: var(--green);
  color: var(--white);
  padding: 120px 0;
}
.story__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__content h2{ font-size: 36px; margin-bottom: 24px; }
.story__content p{ color: rgba(255,255,255,0.8); margin-bottom: 0; }
.story__video img{ border-radius: 8px; width: 100%; height: auto; }

/* ===== PRODUCT ===== */
.product{ padding: 72px 0; }

.product__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product__content h2{
  font-size: 36px;
  color: var(--green-main);
  margin-bottom: 14px;
}

.product__content p{ color: var(--text-muted); margin: 0; }

.product__image{
  position: relative;
  width: 520px;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
}

.product__bg{
  position: absolute;
  inset: 0;
  background: #d9f2eb;
  border-radius: 24px;
  z-index: 0;
}

.product__image img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* ===== Mobile ===== */
@media (max-width: 900px){
  .hero{ min-height: 72vh; }
  .story__grid, .product__grid{ grid-template-columns: 1fr; gap: 22px; }
  .story{ text-align: center; }

  .steps{ padding: 80px 0; }
  .steps__grid{ grid-template-columns: 1fr; gap: 64px; }
  .step{ margin-top: 0 !important; padding-top: 72px; }
  .step p{ max-width: 100%; }
}

@media (max-width: 480px){
  .steps{ padding: 64px 0; }
  .story{ padding: 64px 0; }
  .product{ padding: 64px 0; }

  .steps__heading h2,
  .story__content h2,
  .product__content h2{
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.12;
  }

  .step__number{ font-size: 78px; top: -12px; }
}
