.navbar {
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 1100;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  padding: 10px 0;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.22);
  border-radius: 12px;
}

.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 56px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.top-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.top-bar__close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn-finance-accent {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.28);
  border: none;
}

.btn-finance-accent:hover {
  background: linear-gradient(135deg, #172554, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.35);
}

.footer-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  opacity: 0.85;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: 1.2rem;
  color: #0f172a;
  font-weight: 700;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav__link {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 8px;
}

.nav__link:hover {
  color: #1e3a8a;
}

.nav__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
/*  Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 999;
  opacity: 0.9;
}

.back-to-top-btn:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-3px);
}

.back-to-top-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Shared page styles */
:root {
  --color-primary: #1e3a8a;
  --color-primary-hover: #172554;
  --color-on-primary: #ffffff;
  --font-family-head: "Playfair Display", ui-serif, Georgia, serif;
  --font-family-body: "Inter", system-ui, sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #475569;
  font-size: 0.95rem;
}

.hero__title {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  color: #0f172a;
}

.hero__subtitle {
  color: #475569;
  font-size: 1.05rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0e7ff;
  color: #1e3a8a;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.grid__count {
  color: #475569;
  font-size: 0.95rem;
}

.footer {
  margin-top: auto;
  padding: 24px 0;
  color: #475569;
  font-size: 0.95rem;
}
