/* Header */
.lp-header {
  width: 100%;
  padding: 12px 32px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 0;
  border-radius: 0;
}

.lp-header-wrap {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.lp-header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.lp-header-logo img {
  display: block;
  height: 35px;
  width: auto;
}

/* Button */
.lp-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  background: #ff5500;
  color: #fff;
  transition: all .2s ease-in-out;
  white-space: nowrap;
}
.lp-header-btn:hover { background: #e14e00; }

/* Small screens */
@media (max-width: 1024px) {
  .lp-header { padding: 12px 16px; }
  .lp-header-logo img { height: 30px; }
  .lp-header-btn { padding: 10px 12px; font-size: 14px; height: 36px; }
}
@media (max-width: 480px) {
  .lp-header-wrap { gap: 16px; }
  .lp-header-logo img { height:
