.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;            /* ðŸ‘ˆ IMPORTANT */
}

.site-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: #111827;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.95rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-size: 0.88rem;
}

.nav-links a:hover {
  color: #2563eb;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  text-decoration: none;
}

.btn.primary {
  background: #2563eb;
  color: #fff;
}

.btn.secondary {
  border: 1px solid #cbd5f5;
  color: #1e3a8a;
}
.hidden {
  display: none !important;
}

/* =========================
   LOGO IMAGE Ã¢â‚¬â€œ BASELINE
========================= */

.site-logo-image {
  width: auto;
  height: 58px;
  max-width: 100%;
  display: block;

  transform-origin: left center;

  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

/* =========================
   NAV CTA – Calculator
========================= */

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;

  padding: 0.45rem 0.9rem;
  border-radius: 10px;

  background: #2563eb;
  color: #ffffff !important;

  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1;

  text-decoration: none;
  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.nav-links a.nav-cta:hover {
  background: #1e4ed8;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

.nav-links a.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.85rem;
  text-decoration: none;
  color: #374151;
}

.footer-links a:hover {
  color: #2563eb;
}
/* =========================================================
   STATIC PAGES (ABOUT / TERMS)
========================================================= */

.page-static {
  max-width: 760px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.page-static .hero {
  text-align: center;
  margin-bottom: 3rem;
}

.page-static .hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.page-static .hero .subtitle {
  color: #6b7280;
}

.static-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.static-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
  color: #111827;
}

.about-nav-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.55rem 0.9rem;
  margin: 0.75rem 0 0;
  padding: 0;
}

.about-nav-list a {
  display: inline-block;
  text-decoration: none;
  color: #1d4ed8;
  font-weight: 600;
}

.about-nav-list a:hover {
  text-decoration: underline;
}
