/* Hard reset only for the injected chrome */
.pp-header, .pp-footer {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.25;
}

.pp-header a, .pp-footer a {
  text-decoration: none !important;
  color: inherit;
}

.pp-header a:visited, .pp-footer a:visited {
  color: inherit;
}

/* ✅ OVERRIDE: Footer links should be standard blue hyperlinks */
.pp-footer a.pp-footer-link,
.pp-footer a.pp-footer-link:visited {
  color: #00B7FF !important;
  text-decoration: none !important;
}

.pp-footer a.pp-footer-link:hover,
.pp-footer a.pp-footer-link:active {
  color: #00B7FF !important;
}

/* ===== HEADER STYLES ===== */

.pp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  width: 100%;
  display: block;
  text-align: left;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.pp-header-inner{
  width: 100%;
  max-width: 1100px;
  margin: 0;
  padding: 0;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;

  padding-left: 16px;
  padding-right: 0px;
}

.pp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111827;
}

.pp-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.pp-nav{
  display: inline-flex;
  align-items: center;
  gap: 30px;
  flex: 0 0 auto;
  margin-left: 0;
}

.pp-header .pp-nav-link {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #1E293B;
  transition: color 0.2s ease;
}

.pp-header .pp-nav-link:hover {
  color: #111827;
}

.pp-header .pp-cta-button{
  height: 30px;
  padding: 0 20px;
  border-radius: 30px;
  background: #1E293B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #fff !important;
  white-space: nowrap;
  transform: translateY(-1px);
}

.pp-header .pp-cta-button:hover{
  opacity: 0.9;
}

/* ===== MOBILE TOGGLE ICON (2 lines -> X) ===== */

.pp-menu-btn {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pp-menu-icon {
  width: 22px;
  height: 14px;
  display: block;
  position: relative;
  background: transparent;
}

.pp-menu-icon::before,
.pp-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.5);
  transition: transform 180ms ease, top 180ms ease, bottom 180ms ease;
}

.pp-menu-icon::before { top: 2px; }
.pp-menu-icon::after  { bottom: 2px; }

.pp-header.is-open .pp-menu-icon::before {
  top: 6px;
  transform: rotate(45deg);
}

.pp-header.is-open .pp-menu-icon::after {
  bottom: 6px;
  transform: rotate(-45deg);
}

/* ===== MOBILE DROPDOWN (auto height, NOT fullscreen) ===== */

.pp-mobile-menu {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;

  height: auto;
  background: #ffffff;
  z-index: 2000;

  display: none;
  flex-direction: column;

  padding: 16px 16px 20px;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ensure hidden always wins */
.pp-mobile-menu[hidden] {
  display: none !important;
}

/* show only when JS toggles class */
.pp-mobile-menu.is-open {
  display: flex;
}

.pp-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pp-mobile-link {
  font-size: 20px;
  font-weight: 500;
  color: #1E293B;
  text-decoration: none;
}

.pp-cta-mobile {
  width: fit-content;
}

/* Scroll lock when menu open */
html.pp-menu-open,
body.pp-menu-open {
  overflow: hidden;
}

/* ===== DESKTOP/TABLET RESPONSIVE ===== */

@media (max-width: 1100px) {
  .pp-header-inner{
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===== MOBILE BREAKPOINT ===== */

@media (max-width: 768px) {
  .pp-nav {
    display: none !important;
  }

  .pp-cta-desktop {
    display: none !important;
  }

  .pp-menu-btn {
    display: inline-flex;
  }

  .pp-header-inner{
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===== FOOTER STYLES ===== */

.pp-footer {
  background: #1f2937;
  color: #d1d5db;
  border-top: 1px solid #374151;
  margin-top: 0px;
  width: 100%;
}

.pp-footer-inner {
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.pp-footer-title {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.pp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
}

.pp-footer-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.pp-footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #d1d5db;
  align-self: end;
}

.pp-footer-spacer {
  width: 100%;
}

@media (max-width: 768px) {
  .pp-footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: 24px;
    justify-items: center;
    text-align: center;
  }

  .pp-footer-contact {
    align-items: center;
  }

  .pp-footer-link {
    justify-content: center;
  }

  .pp-footer-copyright {
    text-align: center;
    align-self: center;
    opacity: 0.9;
  }
}
