/* ── Site Header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0D1B2A;
  flex-shrink: 0;
}

.site-brand img {
  border-radius: 50%;
  object-fit: cover;
}

.site-brand strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #1E3A8A;
  line-height: 1.1;
}

.site-brand small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #5C6E82;
  letter-spacing: .03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 13px;
  font-weight: 600;
  color: #5C6E82;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .12s, color .12s;
  white-space: nowrap;
}

.site-nav a:hover {
  background: #EFF6FF;
  color: #1E3A8A;
}

.site-header-cta {
  flex-shrink: 0;
  background: #2563EB;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

.site-header-cta:hover { background: #1E3A8A; }

@media (max-width: 700px) {
  .site-nav { display: none; }
  .site-header-cta { font-size: 12px; padding: 7px 12px; }
}

/* ── Site Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: #0D1B2A;
  color: #94A3B8;
  margin-top: 64px;
  border-top: 1px solid #1E293B;
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 24px 40px;
  display: grid;
  grid-template-columns: 260px repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .site-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .site-footer-inner { grid-template-columns: 1fr; }
}

.site-footer-brand .site-brand {
  color: #fff;
  margin-bottom: 12px;
}

.site-footer-brand .site-brand strong { color: #fff; font-size: 15px; }
.site-footer-brand .site-brand small  { color: #94A3B8; }

.site-footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: #64748B;
}

.site-footer-cta {
  display: inline-flex;
  align-items: center;
  background: #2563EB;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
}

.site-footer-cta:hover { background: #1E3A8A; }

.site-footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #475569;
  margin-bottom: 12px;
}

.site-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer-col a {
  font-size: 13px;
  color: #64748B;
  text-decoration: none;
  line-height: 1.4;
  transition: color .12s;
}

.site-footer-col a:hover { color: #E2E8F0; }

.site-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #475569;
}

.site-footer-bottom-links {
  display: flex;
  gap: 16px;
}

.site-footer-bottom-links a {
  color: #475569;
  text-decoration: none;
}

.site-footer-bottom-links a:hover { color: #94A3B8; }
