* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background: url("img/background.png") center center / cover no-repeat;
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.page__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, .48);
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 870px;
  padding: 48px 28px;
  text-align: center;
}

.hero__logo {
  display: block;
  max-width: 220px;
  width: 55%;
  height: auto;
  margin: 0 auto 28px;
}

.hero__title {
  margin: 0 0 34px;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero__cta {
  margin: 36px 0 18px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.4;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.btn--primary {
  background: #ff6f1a;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #e85d0c;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .3);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, .9);
  background: transparent;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.btn--whatsapp {
  border-color: #25d366;
  color: #25d366;
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn__icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    flex-shrink: 0;
}

.btn--whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff;
}

.contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 640px) {
  .page {
    padding: 24px 18px;
  }

  .hero {
    padding: 36px 0;
  }

  .hero__logo {
    width: 64%;
    max-width: 190px;
  }

  .btn {
    width: 100%;
    max-width: 340px;
    padding: 0 24px;
    font-size: 16px;
  }

  .contact {
    flex-direction: column;
    align-items: center;
  }
}