/* ─── HERO ─── */
.hero {
  background: var(--surface);
  padding: 25px 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--r-lg);
  min-height: 520px;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px 56px 60px;
}

.hero__title {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

@media (max-width: 900px) {
  .hero {
    padding: 16px 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: 40px 24px 36px;
  }

  .hero__image {
    justify-content: center;
    padding: 0 24px 32px;
  }

  .hero__image img {
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 12px 0;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__sub {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero__btns {
    flex-direction: column;
  }

  .hero__btns .btn {
    width: 100%;
    justify-content: center;
  }
}
