.banner-page {
  min-height: 100vh;
  background: #f5f7fd;
}

.banner-hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  background: #eef3ff;
}

.banner-hero-content {
  padding: 64px 0;
}

.banner-visual {
  position: relative;
  width: min(1000px, 100%);
  margin: 0 auto;
}

.banner-hero-copy {
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: min(86%, 760px);
  text-align: center;
  color: #1f2329;
}

.banner-hero-copy h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.banner-hero-copy p {
  font-size: clamp(16px, 2.2vw, 22px);
  color: #4a5670;
  margin-bottom: 30px;
}

.banner-actions {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 36px;
}

.banner-hero-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .banner-hero {
    min-height: 520px;
  }

  .banner-hero-content {
    padding: 36px 0;
  }

  .banner-hero-copy {
    top: 24px;
    width: 92%;
  }

  .banner-hero-copy h1 {
    font-size: clamp(26px, 8vw, 34px);
    margin-bottom: 10px;
  }

  .banner-hero-copy p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .banner-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }

  .banner-actions .btn {
    width: 100%;
  }
}
