.homepage-hero {
  padding: 54px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 52%, #eaf4ff 100%);
  overflow: hidden;
}

.homepage-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.homepage-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.homepage-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--color-dark);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.homepage-hero p {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.7;
}

.homepage-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.homepage-hero__visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-hero__circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(15, 76, 129, 0.08);
}

.homepage-hero__phone {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 300px;
  padding: 12px;
  border-radius: 32px;
  background: #111827;
  box-shadow: var(--shadow-lg);
}

.homepage-hero__phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.homepage-hero__phone-screen span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.homepage-hero__card {
  position: absolute;
  z-index: 3;
  max-width: 170px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.homepage-hero__card strong {
  display: block;
  color: var(--color-dark);
  font-size: 14px;
  line-height: 1.2;
}

.homepage-hero__card span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
}

.homepage-hero__card--top {
  top: 32px;
  right: 0;
}

.homepage-hero__card--bottom {
  left: 0;
  bottom: 28px;
}

@media (min-width: 768px) {
  .homepage-hero__actions {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .homepage-hero {
    padding: 78px 0;
  }

  .homepage-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }

  .homepage-hero h1 {
    font-size: 56px;
  }

  .homepage-hero__visual {
    min-height: 460px;
  }

  .homepage-hero__circle {
    width: 420px;
    height: 420px;
  }

  .homepage-hero__phone {
    width: 240px;
    height: 380px;
  }

  .homepage-hero__card--top {
    top: 70px;
    right: 24px;
  }

  .homepage-hero__card--bottom {
    left: 32px;
    bottom: 74px;
  }
}

@media (min-width: 1200px) {
  .homepage-hero h1 {
    font-size: 64px;
  }

  .homepage-hero__phone {
    width: 270px;
    height: 430px;
  }

  .homepage-hero__visual {
    min-height: 520px;
  }
}