.hero-home{
  padding: 42px 0 70px;
  background:
    radial-gradient(circle at 10% 10%, rgba(229,17,14,0.06) 0, rgba(229,17,14,0) 26%),
    radial-gradient(circle at 90% 18%, rgba(0,143,50,0.06) 0, rgba(0,143,50,0) 24%),
    linear-gradient(180deg, #FFFCFB 0%, #F8F5F1 100%);
}

.hero-home__grid{
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 280px;
  gap: 38px;
  align-items: center;
}

.hero-home__side{
  display: grid;
  gap: 28px;
}

.hero-home__media-card{
  border-radius: 34px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(23,23,23,0.06);
}

.hero-home__media-card img{
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

.hero-home__content{
  text-align: center;
  padding: 10px 24px;
}

.hero-home__badge{
  margin: 0 auto 26px;
  width: fit-content;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(23,23,23,0.06);
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  font-size: 16px;
  color: var(--color-text);
}

.hero-home__badge-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 8px rgba(229,17,14,0.10);
}

.hero-home__title{
  margin: 0;
  font-size: clamp(62px, 7vw, 118px);
  line-height: 1;
  color: var(--color-text);
  text-transform: uppercase;
}
.hero-home__title{
	color: var(--brand-green);
}
.hero-home__title span{
    font-family: 'Shnobel', Arial, sans-serif;
}

.hero-home__title span{
  color: var(--brand-red);
}

.hero-home__text{
  margin: 26px auto 0;
  max-width: 720px;
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-muted);
}

.hero-home__actions{
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-home__btn{
  min-height: 60px;
  padding: 0 30px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-home__btn:hover{
  transform: translateY(-2px);
}

.hero-home__btn--primary{
  background: linear-gradient(135deg, var(--brand-red) 0%, #ff3a38 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(229,17,14,0.18);
}

.hero-home__btn--secondary{
  background: var(--brand-green);
  color: #fff;
}

.hero-socials{
  margin-top: 100px;
}

.hero-socials__title{
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(38px, 3.4vw, 58px);
  line-height: .95;
  color: var(--color-text);
}

.hero-socials__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-socials__item{
  min-height: 108px;
  padding: 18px 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(23,23,23,0.08);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hero-socials__item:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

.hero-socials__icon{
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-socials__icon svg{
  width: 28px;
  height: 28px;
}

.hero-socials__content{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hero-socials__content strong{
  font-size: 22px;
  line-height: 1;
  color: var(--color-text);
}

.hero-socials__content span{
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-muted);
  overflow-wrap: anywhere;
}

.hero-socials__arrow{
  font-size: 20px;
  line-height: 1;
  color: rgba(23,23,23,0.35);
}

.hero-socials__item--max .hero-socials__icon{
  background: linear-gradient(135deg, #7A35FF 0%, #5B1EDB 100%);
}

.hero-socials__item--telegram .hero-socials__icon{
  background: linear-gradient(135deg, #38BDF8 0%, #2084FF 100%);
}

.hero-socials__item--vk .hero-socials__icon{
  background: linear-gradient(135deg, #4EA1FF 0%, #2D6DFF 100%);
}

.hero-benefits{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-benefits__item{
  min-height: 100%;
  padding: 28px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 24px;
}

.hero-benefits__icon{
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(229,17,14,0.08);
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-benefits__icon svg{
  width: 28px;
  height: 28px;
}

.hero-benefits__item h3{
  margin: 18px 0 10px;
font-size: 22px;
    line-height: 1;
    color: var(--color-text);
  font-family: 'Evolventa', Arial, sans-serif;
}

.hero-benefits__item p{
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-muted);
}

@media (max-width: 1300px){
  .hero-home__grid{
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    gap: 26px;
  }

  .hero-home__text{
    font-size: 19px;
  }
}

@media (max-width: 1100px){
  .hero-home__grid{
    grid-template-columns: 1fr;
  }

  .hero-home__content{
    order: 1;
    padding: 0;
  }

  .hero-home__side{
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-home__side--left{
    order: 2;
  }

  .hero-home__side--right{
    order: 3;
  }

  .hero-socials__grid,
  .hero-benefits{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  .hero-home{
    padding: 28px 0 50px;
  }

  .hero-home__grid{
    gap: 20px;
  }

  .hero-home__badge{
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
    margin-bottom: 18px;
  }

  .hero-home__title{
    font-size: clamp(42px, 12vw, 62px);
  }

  .hero-home__text{
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-home__actions{
    margin-top: 24px;
    gap: 12px;
  }

  .hero-home__btn{
    width: 100%;
    min-height: 54px;
  }

  .hero-home__side{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-socials{
    margin-top: 34px;
  }

  .hero-socials__title{
    font-size: 34px;
    margin-bottom: 18px;
  }

  .hero-socials__item{
    grid-template-columns: 54px 1fr;
    padding: 16px;
  }

  .hero-socials__arrow{
    display: none;
  }

  .hero-socials__icon{
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .hero-socials__content strong{
    font-size: 19px;
  }

  .hero-socials__content span{
    font-size: 14px;
  }

  .hero-benefits__item{
    padding: 22px;
  }

  .hero-benefits__item h3{
    font-size: 28px;
  }

  .hero-benefits__item p{
    font-size: 15px;
  }
}