.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #0e2f19 0%, #1a793d 100%);
  isolation: isolate;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 0 24px;
}

.hero__content {
  max-width: 100%;
  padding: 1rem 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 20px;
  letter-spacing: 0;
  text-transform: none;
}

.hero__title .t-accent {
  color: var(--c-accent);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
  max-width: 580px;
  line-height: 1.5;
}

.hero__cta {
  margin-bottom: 44px;
}

.hero__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hero__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__feature-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.hero__feature-text h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--c-text);
}

.hero__feature-text p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__visual-link {
  display: inline-flex;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.hero__visual-link:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.hero__visual-img {
  width: 100%;
  max-width: 520px;
  max-height: 560px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    justify-items: center;
  }
  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__features {
    width: 100%;
    text-align: left;
  }
  .hero__visual {
    order: 2;
    justify-content: center;
    width: 100%;
  }
  .hero__visual-img {
    max-height: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero__feature {
    justify-content: center;
    text-align: left;
  }
  .hero__visual-img {
    max-height: 240px;
  }
}
