/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30,95,216,0.14);
  box-shadow: 0 8px 24px rgba(11,37,89,0.06);
}
.site-nav-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 40px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.site-nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; font-size: 17px; color: #0B2559;
  text-decoration: none;
}
.site-nav-logo img { width: 36px; height: 36px; border-radius: 50%; }
.site-nav-links { display: flex; align-items: center; gap: 2px; }
.site-nav-link {
  font-size: 13px; font-weight: 500; color: #3A4D6B;
  padding: 8px 13px; border-radius: 6px;
  text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.site-nav-link:hover, .site-nav-link.active { background: linear-gradient(135deg,#EBF2FF,#DDEBFF); color: #0B2559; transform: translateY(-1px); }
.site-nav-cta {
  font-size: 13px; font-weight: 500; color: #fff;
  background: linear-gradient(135deg,#1E5FD8,#2E7CFF); padding: 9px 20px; border-radius: 8px;
  text-decoration: none; transition: background 0.15s;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(30,95,216,0.28);
}
.site-nav-cta:hover { background: #1449b0; }
.site-nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.site-nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #0B2559; border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.site-nav-mobile {
  position: fixed; inset: 0; top: 68px; z-index: 99;
  background: #fff; padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: -4px 0 20px rgba(11,37,89,0.08);
}
.site-nav-mobile .site-nav-link { font-size: 16px; padding: 14px 16px; }
.site-nav-mobile.open { transform: translateX(0); }

/* ── FOOTER ── */
.site-footer {
  background: radial-gradient(circle at 20% 10%, #1A3E84, #0B2559 60%); color: rgba(255,255,255,0.7);
  padding: 56px 40px 32px;
}
.site-footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
}
.site-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.site-footer-logo { display: flex; align-items: center; gap: 10px; }
.site-footer-logo img { width: 40px; height: 40px; border-radius: 50%; }
.site-footer-logo span { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 16px; color: #fff; }
.site-footer-desc { font-size: 13px; line-height: 1.7; max-width: 240px; }
.site-footer-col h4 { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.site-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.site-footer-col a:hover { color: #fff; }
.site-footer-bottom {
  max-width: 1140px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; flex-wrap: wrap; gap: 8px;
}
.site-footer-legal { display: flex; gap: 24px; }
.site-footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; }
.site-footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* GSAP targets */
.gsap-fade-up { opacity: 0; transform: translateY(18px); }
.gsap-fade { opacity: 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-nav-links { display: none; }
  .site-nav-cta { display: none; }
  .site-nav-burger { display: flex; }
  .site-nav-inner { padding: 0 20px; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0; }
  .site-footer { padding: 40px 20px 24px; }
}
