.home-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.home-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(64, 163, 105, 0.18), transparent 30%),
    linear-gradient(180deg, #1f1f1f 0%, #0f0f0f 100%);
  color: #fff;
}

.home-hero .home-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.home-hero__eyebrow,
.home-section__eyebrow,
.home-card__eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #40a369;
}

.home-hero__title {
  margin: 0 0 20px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 600;
}

.home-hero__text {
  margin: 0 0 28px;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
}

.home-btn--primary {
  background: #40a369;
  color: #fff;
}

.home-btn--primary:hover {
  background: #368d59;
}

.home-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.home-hero__media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-hero__card--main {
  overflow: hidden;
  border-radius: 28px;
  min-height: 500px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

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

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-stat {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.home-stat__value {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.home-stat__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.home-section {
  padding: 90px 0;
}

.home-section--light {
  background: #ffffff;
  color: #111;
}

.home-section--dark {
  background: #111;
  color: #fff;
}

.home-section__head {
  max-width: 760px;
  margin-bottom: 40px;
}

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

.home-section__title {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
}

.home-section__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #666;
}

.home-section--dark .home-section__text {
  color: rgba(255, 255, 255, 0.72);
}

.home-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-feature {
  padding: 28px;
  border-radius: 24px;
  background: #f5f5f5;
}

.home-feature h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
}

.home-feature p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-card {
  overflow: hidden;
  border-radius: 28px;
  background: #f5f5f5;
  color: #111;
}

.home-card__image {
  height: 260px;
  overflow: hidden;
}

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

.home-card__body {
  padding: 24px;
}

.home-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}

.home-card p {
  margin: 0 0 18px;
  line-height: 1.7;
  color: #666;
}

.home-link {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-step {
  padding: 28px;
  border-radius: 24px;
  background: #f5f5f5;
}

.home-step__number {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #40a369;
  letter-spacing: 2px;
}

.home-step h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.home-step p {
  margin: 0;
  line-height: 1.7;
  color: #666;
}

.home-cta {
  padding: 0 0 90px;
  background: #fff;
}

.home-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 34px;
  border-radius: 28px;
  background: #111;
  color: #fff;
}

.home-cta__title {
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.1;
}

.home-cta__text {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .home-hero .home-container,
  .home-features,
  .home-cards,
  .home-steps {
    grid-template-columns: 1fr;
  }

  .home-hero__card--main {
    min-height: 380px;
  }

  .home-cta__box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .home-hero {
    padding: 130px 0 70px;
  }

  .home-container {
    width: min(100% - 24px, 1200px);
  }

  .home-hero__title {
    font-size: 38px;
  }

  .home-section {
    padding: 70px 0;
  }

  .home-section__title {
    font-size: 32px;
  }

  .home-card h3,
  .home-feature h3,
  .home-step h3,
  .home-cta__title {
    font-size: 26px;
  }

  .home-hero__stats {
    grid-template-columns: 1fr;
  }
}