.hero {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: calc(100vh - 4rem);
  padding: 0 2rem;
  background: linear-gradient(135deg, var(--color-mint-pink), var(--color-mint-pink-dark));
  color: var(--color-black);
  transition: padding 0.3s ease, width 0.3s ease;
}
.hero__title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.4;
}
.hero__btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero__btn:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
}
@media (max-width: 992px) {
  .hero {
    width: 80%;
    padding: 0 1.5rem;
    align-items: center;
    text-align: center;
  }
  .hero__title {
    font-size: 3rem;
  }
  .hero__subtitle {
    font-size: 1.25rem;
    max-width: 100%;
  }
  .hero__btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
  }
}
@media (max-width: 768px) {
  .hero {
    width: 100%;
    padding: 0;
    justify-content: center;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
  .hero__btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 0;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero__btn {
    text-align: center;
    font-size: 0.9rem;
    width: 50%;
  }
}
