/* Homepage about / SEO intro — oknaminsk24 */
.home-about {
  --ha-ink: #152029;
  --ha-muted: #5d6b78;
  --ha-steel: #1f3a52;
  --ha-green: #19b27f;
  --ha-green-deep: #0f8f64;
  --ha-orange: #e07a1f;
  --ha-line: rgba(31, 58, 82, 0.08);
  --ha-soft: #f3f7f5;
  max-width: 1380px;
  margin: 0.5rem auto 2.5rem;
  padding: 0 1rem;
  font-family: Manrope, system-ui, sans-serif;
}

.home-about__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .home-about__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
}

.home-about__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ha-green-deep);
}

.home-about h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ha-steel);
  line-height: 1.2;
}

.home-about__lead,
.home-about__text p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ha-muted);
  font-weight: 560;
}

.home-about__lead {
  font-size: 1.05rem;
  color: var(--ha-steel);
  font-weight: 650;
}

.home-about__text a {
  color: var(--ha-green-deep);
  font-weight: 750;
  text-decoration: none;
}

.home-about__text a:hover {
  text-decoration: underline;
}

.home-about__points {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 1.25rem;
}

@media (min-width: 560px) {
  .home-about__points { grid-template-columns: 1fr 1fr; }
}

.home-about__point {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: var(--ha-soft);
  border: 1px solid var(--ha-line);
}

.home-about__point strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ha-steel);
}

.home-about__point span {
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--ha-muted);
}

.home-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-about__btn--green {
  background: var(--ha-green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(25, 178, 127, 0.28);
}

.home-about__btn--green:hover {
  background: var(--ha-green-deep);
  transform: translateY(-1px);
}

.home-about__btn--ghost {
  background: #fff;
  color: var(--ha-steel);
  border: 1px solid var(--ha-line);
}

.home-about__btn--ghost:hover {
  border-color: rgba(25, 178, 127, 0.35);
  transform: translateY(-1px);
}

.home-about__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 1.5rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(25, 178, 127, 0.16), transparent 55%),
    linear-gradient(165deg, #eef5f1 0%, #e4ebf0 100%);
  border: 1px solid var(--ha-line);
  overflow: hidden;
}

.home-about__visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(21, 32, 41, 0.12));
}

.home-about__badge {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(21, 32, 41, 0.1);
  max-width: 11.5rem;
}

.home-about__badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ha-green-deep);
  letter-spacing: -0.02em;
}

.home-about__badge span {
  font-size: 0.78rem;
  color: var(--ha-muted);
  font-weight: 650;
  line-height: 1.3;
}

@media (max-width: 560px) {
  .home-about__visual { min-height: 240px; padding: 1.1rem; }
  .home-about__badge { left: 0.75rem; bottom: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .home-about__btn { transition: none; }
  .home-about__btn:hover { transform: none; }
}
