.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.hero .container {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #171717;
}

.hero-copy p {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.02em;
  color: #555555;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 1199px) {
  .hero,
  .hero .container {
    min-height: 680px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy p {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .hero,
  .hero .container {
    min-height: 640px;
  }

  .hero-copy {
    max-width: 600px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p {
    max-width: 560px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 620px;
    padding: 0;
  }

  .hero .container {
    min-height: 620px;
    align-items: flex-start;
    padding-top: 88px;
  }

  .hero-bg {
    background-position: center bottom;
    background-size: 132% auto;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.18;
  }

  .hero-copy p {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    height: 62px;
    justify-content: center;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero,
  .hero .container {
    min-height: 580px;
  }

  .hero .container {
    padding-top: 84px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-copy p {
    font-size: 15px;
  }
}
