.hero-home {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.hero-home__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-24);
  align-items: center;
}

.hero-home__content p {
  color: var(--color-text-muted);
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-12);
  margin-bottom: var(--space-8);
}

.hero-home__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}

.hero-home__meta-link {
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.8);
}

.hero-home__trust {
  max-width: 32rem;
}

.hero-home__figure {
  max-width: 480px;
  margin-left: auto;
}

.home-section {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.home-section__header {
  max-width: 44rem;
  margin-bottom: var(--space-16);
}

.home-section__header p {
  color: var(--color-text-muted);
}

.home-section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-grid {
  display: grid;
  gap: var(--space-20);
}

.home-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-grid--reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-product__header {
  margin-bottom: var(--space-4);
}

.home-product__body p {
  color: var(--color-text-muted);
}

.home-figure {
  align-self: center;
}

.home-list {
  margin-top: var(--space-8);
  margin-bottom: var(--space-12);
  padding-left: var(--space-16);
}

.home-list li {
  position: relative;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.home-list li::before {
  content: "";
  position: absolute;
  left: -var(--space-8);
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background-color: var(--color-primary-strong);
}

.home-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.home-section__actions--left {
  justify-content: flex-start;
}

.home-promo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-promo__title {
  margin-bottom: var(--space-6);
}

.home-testimonials {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.home-testimonial p {
  color: var(--color-text-muted);
}

.home-trust-grid,
.home-benefits-grid {
  align-items: stretch;
}

.home-trust-item__title,
.home-benefit__title {
  margin-bottom: var(--space-6);
}

.home-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-8);
  font-size: var(--font-size-xs);
}

.home-highlight p {
  color: var(--color-text-muted);
}

.home-section--newsletter {
  padding-top: var(--space-32);
  padding-bottom: var(--space-40);
}

.home-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-20);
  align-items: center;
}

.home-newsletter__content p {
  color: var(--color-text-muted);
}

.home-newsletter__form {
  display: flex;
  flex-direction: column;
}

.home-newsletter__field {
  margin-bottom: var(--space-8);
}

@media (max-width: 960px) {
  .hero-home__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-home__figure {
    margin-left: 0;
    max-width: 100%;
  }

  .home-grid--2,
  .home-grid--3,
  .home-grid--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-newsletter {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }

  .home-section {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }

  .home-section__header {
    margin-bottom: var(--space-12);
  }

  .hero-home__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
