
/* Shared white header + dark footer for product/legal pages */
.jh-site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid rgba(0,0,0,.08);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.jh-site-header .inner {
  max-width: 1120px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.jh-site-header .logo img { height: 28px; width: auto; display: block; }
.jh-site-header nav { display: flex; gap: 22px; margin-left: auto; }
.jh-site-header nav a {
  color: #111; text-decoration: none; font-size: 14px; font-weight: 500;
}
.jh-site-header .phone {
  color: #111; text-decoration: none; font-size: 14px; font-weight: 500;
  white-space: nowrap; display: inline-flex; align-items: center; gap: 6px;
}
.jh-site-header .cta {
  background: #2d7cff; color: #fff !important; text-decoration: none;
  font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 8px;
  white-space: nowrap;
}
.jh-site-footer {
  background: #0a0a0b; color: #fafafa;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  padding: 56px 24px 28px; border-top: 1px solid rgba(255,255,255,.08);
}
.jh-site-footer .wrap { max-width: 1120px; margin: 0 auto; }
.jh-site-footer .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
.jh-site-footer .logo img { height: 28px; width: auto; display: block; }
.jh-site-footer .tag { color: rgba(250,250,250,.7); font-size: 14px; margin: 14px 0 18px; line-height: 1.5; }
.jh-site-footer .head {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(250,250,250,.5); margin-bottom: 14px; font-weight: 600;
}
.jh-site-footer ul { list-style: none; padding: 0; margin: 0; }
.jh-site-footer li { margin: 0 0 10px; }
.jh-site-footer a { color: rgba(250,250,250,.85); text-decoration: none; font-size: 14px; }
.jh-site-footer a:hover { color: #fff; }
.jh-site-footer .base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: rgba(250,250,250,.55);
}
.jh-site-footer .disclaimer {
  margin-top: 14px; font-size: 12px; color: rgba(250,250,250,.35); line-height: 1.5;
}
.jh-legal-page { background: #f7f8fa; min-height: 50vh; }
.jh-legal-inner {
  max-width: 820px; margin: 0 auto; padding: 64px 24px 80px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #111; line-height: 1.7;
}
.jh-legal-inner h1 { font-size: 34px; margin: 0 0 24px; line-height: 1.2; }
.jh-legal-inner h2 { font-size: 20px; margin: 36px 0 12px; }
.jh-legal-inner p { margin: 0 0 14px; color: #333; }
.jh-legal-inner .meta { color: #666; font-size: 14px; margin-bottom: 28px; }
@media (max-width: 860px) {
  .jh-site-header nav { display: none; }
  .jh-site-footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .jh-site-header .phone { display: none; }
  .jh-site-footer .grid { grid-template-columns: 1fr; }
}
