.home-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 40px 24px 60px;
  text-align: center;
}

.home-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #1c1c1e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.home-logo svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.home-title {
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 10px;
}

.home-subtitle {
  font-size: 15px;
  color: #8e8e93;
  line-height: 1.55;
  max-width: 280px;
}

.home-actions {
  margin-top: 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn-yandex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: #b44c3b;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-yandex:active {
  opacity: 0.85;
}

.btn-yandex svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
  background: #f2f2f7;
  color: #1c1c1e;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-phone:active { opacity: 0.8; }
