.lp-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lp-container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-logo img {
  height: 42px;
  width: auto;
  display: block;
  opacity: 1 !important;
  filter: none !important;
}

.lp-menu-btn {
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lp-link {
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 4px;
}

.lp-link:hover {
  color: #b91c1c;
}

.lp-contact-btn {
  background: #dc2626;
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.lp-contact-btn:hover {
  background: #b91c1c;
  color: white;
}

.lp-footer {
  background: #111;
  color: white;
}

.lp-footer .lp-container {
  max-width: none;
  width: 100%;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  gap: 28px;
  padding: 56px 16px 24px;
  width: 100%;
}

.lp-footer h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #10b981;
  font-weight: 800;
}

.lp-footer p,
.lp-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.85;
  text-decoration: none;
}

.lp-footer a:hover {
  color: #34d399;
}

.lp-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-footer li {
  margin: 8px 0;
}

.lp-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.lp-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.18);
  color: #a7f3d0;
}

.lp-social a:hover {
  background: rgba(16, 185, 129, 0.26);
}

.lp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

/* Hide legacy footers on these static landing pages */
.footer-section {
  display: none !important;
}

.page-footer {
  display: none !important;
}

@media (max-width: 1024px) {
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .lp-menu-btn {
    display: inline-flex;
  }

  .lp-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 16px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .lp-nav.is-open {
    display: flex;
  }

  .lp-link {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .lp-link:hover {
    background: rgba(15, 23, 42, 0.06);
  }

  .lp-contact-btn {
    display: inline-flex;
    justify-content: center;
    margin-top: 6px;
  }

  .lp-footer-grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
}
