.hero{
  padding: 80px 0 70px;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-center{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-center::before{
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.12),
    transparent 70%
  );
  filter: blur(40px);
  z-index: 0;
}

.hero-logo{
  position: relative;
  z-index: 1;
  width: min(380px, 70vw);
  height: auto;
  display: block;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.18));
}

.hero-kicker{
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.hero-title{
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 900px;
}

.hero-subtitle{
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions{
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

.hero-actions .btn{
  min-width: 180px;
}

.steps-grid,
.features-grid,
.bottle-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.step-card,
.feature-card,
.bottle-card{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 140ms ease, background 140ms ease;
}

.step-card:hover,
.feature-card:hover,
.bottle-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
}

.step-number{
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card h3,
.feature-card h3,
.bottle-card h3{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.step-card p,
.feature-card p,
.bottle-card p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.cta-card{
  text-align: center;
  padding: 28px;
}

.cta-card .section-title{
  margin-bottom: 10px;
}

.cta-card .section-subtitle{
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

.contact-card p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.contact-card span{
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 980px){
  .hero{
    padding: 56px 0 44px;
    min-height: auto;
  }

  .hero-center::before{
    width: 420px;
    height: 420px;
  }

  .hero-logo{
    width: min(300px, 64vw);
  }

  .hero-title{
    font-size: 46px;
  }

  .hero-subtitle{
    font-size: 17px;
  }

  .steps-grid,
  .features-grid,
  .bottle-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .hero{
    padding: 34px 0 24px;
  }

  .hero-center::before{
    width: 320px;
    height: 320px;
    filter: blur(30px);
  }

  .hero-logo{
    width: min(230px, 60vw);
    margin-bottom: 18px;
  }

  .hero-kicker{
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero-title{
    font-size: 36px;
    line-height: 1;
  }

  .hero-subtitle{
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn{
    width: 100%;
  }
}

@media (max-width: 420px){
  .hero-title{
    font-size: 30px;
  }

  .hero-subtitle{
    font-size: 15px;
  }

  .hero-logo{
    width: min(180px, 54vw);
  }
}