/* ZonForge Sentinel — shared enterprise shell (header + footer)
   Extracted from landing/index.html so every public page shares one identical
   navigation and footer. Scoped under .zf-site-nav / .zf-site-footer. */
:root{
  --bg:#050914;--bg2:#07111f;--bg3:#0b1828;
  --glass:rgba(11,22,42,.72);--glass2:rgba(15,28,52,.80);
  --line:rgba(148,189,255,.13);--line2:rgba(56,189,248,.24);
  --text:#f0f6ff;--muted:#8faac4;--dim:#5e7a96;
  --cyan:#38d5ff;--blue:#2f80ff;--violet:#8b5cf6;
  --red:#ff4060;--amber:#ffbf69;--green:#34d399;--orange:#fb923c;
  --shadow:0 32px 80px rgba(0,0,0,.48);--radius:10px;
}

:root{--nav-height:88px}
.zf-site-nav{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(5, 9, 20, 0.55); /* Improved transparency/readability balance */
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04); /* Thin subtle separation */
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease;
}
.zf-site-nav .nav-inner{
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  min-height: var(--nav-height);
  height: var(--nav-height);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.zf-site-nav .brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.zf-site-nav .nav-links{
  display: flex;
  align-items: center;
  gap: 26px; /* Optimized spacing for mid-size laptop viewports */
  height: 100%;
  position: static;
}
.zf-site-nav .nav-item{
  position: static;
  display: flex;
  align-items: center;
  height: 100%;
}
.zf-site-nav .nav-link{
  border: 0;
  background: transparent;
  padding: 0 8px;
  color: #cbd5e1; /* slate-300 contrast */
  font-size: 13.5px; /* Refined font size */
  font-weight: 600; /* Cleaner weight */
  letter-spacing: 0.02em;
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color .2s ease;
}
.zf-site-nav .nav-link:hover,.zf-site-nav .nav-link:focus-visible,.zf-site-nav .nav-item.is-open > .nav-link{
  color: #ffffff; /* Crisp white on hover */
  outline: none;
}
.zf-site-nav .nav-link.active{
  color: #ffffff;
  position: relative;
}
.zf-site-nav .nav-link.active::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #38d5ff; /* Subtle clean active indicator bar */
  border-radius: 2px;
}
.zf-site-nav .chev{
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -1px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: .7;
}
.zf-site-nav .nav-item.is-open .chev{
  transform: rotate(225deg);
  margin-top: 2px;
}
.mega-menu{
  position: absolute;
  top: 100%;
  left: 40px; /* Align menu boundaries with nav-inner padding */
  right: 40px;
  width: auto;
  max-width: 1360px;
  padding: 32px;
  border: 1px solid rgba(56, 213, 255, 0.12);
  border-radius: 12px;
  background: rgba(6, 12, 24, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.65), 0 0 48px rgba(34, 211, 238, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 220ms cubic-bezier(0.16, 1, 0.3, 1), visibility 220ms ease;
  z-index: 1001;
}
.zf-site-nav .nav-item.is-open > .mega-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.zf-site-nav .nav-item:not(.is-open) > .mega-menu .mega-link{
  display: none;
}
.mega-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.mega-grid.two-cols{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.mega-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mega-group-title{
  margin: 0 0 8px;
  color: #5d7890;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(148, 189, 255, 0.08);
  padding-bottom: 6px;
}
.mega-link{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #dcecff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.mega-link:hover,.mega-link:focus-visible{
  background: linear-gradient(135deg, rgba(125, 249, 255, 0.08), rgba(47, 128, 255, 0.04));
  border-color: rgba(125, 249, 255, 0.15);
  transform: translateY(-1.5px);
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.06);
  outline: none;
}
.mega-icon{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #94a3b8; /* Flat slate-400 color */
  background: rgba(255, 255, 255, 0.03); /* Flat subtle backdrop plate */
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.mega-link:hover .mega-icon{
  color: #38d5ff; /* Slick accent on link hover */
  background: rgba(56, 213, 255, 0.08);
  border-color: rgba(56, 213, 255, 0.25);
}
.mega-icon svg{
  width: 20px;
  height: 20px;
  stroke-width: 2;
  fill: none;
}
.mega-title{
  display: block;
  color: #eef8ff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.mega-desc{
  display: block;
  margin-top: 4px;
  color: #7590a8;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}
.zf-site-nav .nav-right{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.zf-site-nav .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.zf-site-nav .btn-demo{
  color: #f5fbff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 189, 255, 0.20);
}
.zf-site-nav .btn-demo:hover{
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(56, 213, 255, 0.35);
  transform: translateY(-1px);
}
.zf-site-nav .btn-start{
  background: #2f80ff; /* Solid premium corporate blue */
  color: #ffffff;
  border: 1px solid #2f80ff;
  box-shadow: none; /* Removed heavy consumer-style glow */
}
.zf-site-nav .btn-start:hover{
  background: #1d68d9; /* Subtle darken on hover */
  border-color: #1d68d9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(47, 128, 255, 0.2); /* Flat clean shadow */
}
.zf-site-nav .btn:active{
  transform: scale(0.98);
}
.mobile-menu-button{
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(148, 189, 255, .16);
  background: rgba(255, 255, 255, .035);
  color: #f4fbff;
  align-items: center;
  justify-content: center;
}
.mobile-menu-button svg{
  width: 22px;
  height: 22px;
  stroke-width: 2;
  stroke: currentColor;
}
.mobile-panel{
  position: fixed;
  top: var(--nav-height);
  left: auto;
  right: 0;
  width: 0;
  max-width: 100vw;
  height: calc(100dvh - var(--nav-height));
  z-index: 9998;
  display: none;
  border-top: 1px solid rgba(125, 249, 255, .10);
  background: rgba(5, 9, 20, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .2s ease, opacity .2s ease, width .2s ease;
  overflow: auto;
}
.mobile-panel-inner{
  width: min(100vw, 100%);
  min-height: calc(100dvh - var(--nav-height));
  padding: 18px 40px 120px;
  display: flex;
  flex-direction: column;
}
.mobile-panel:not(.is-open) .mobile-panel-inner{
  display: none;
}
.mobile-panel.is-open .mobile-panel-inner{
  display: flex;
}
.mobile-details{
  border-bottom: 1px solid rgba(148, 189, 255, .08);
}
.mobile-details summary{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  color: #eff8ff;
  font-weight: 800;
  cursor: pointer;
}
.mobile-details summary::-webkit-details-marker{
  display: none;
}
.mobile-details summary::after{
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: .16s;
  opacity: .65;
}
.mobile-details[open] summary::after{
  transform: rotate(225deg);
}
.mobile-link{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 44px;
  padding: 13px 0 13px 12px;
  color: #8faac4;
  font-size: 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(99, 102, 241, 0.15);
  touch-action: manipulation;
}
.mobile-link strong{
  display: block;
  color: #dcecff;
  font-size: 14px;
}
.mobile-link span{
  display: block;
  margin-top: 2px;
  color: #6f899f;
  font-size: 12px;
  line-height: 1.35;
}
.mobile-ctas{
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: auto;
  padding: 18px 0 0;
  background: linear-gradient(180deg, rgba(5, 9, 20, 0), rgba(5, 9, 20, .98) 24%);
}
.mobile-ctas .btn{
  width: 100%;
}
@media(max-width: 1120px){.zf-site-nav .nav-links,.zf-site-nav .nav-right{
    display: none;
  }
.mobile-menu-button{
    display: inline-flex;
  }
.zf-site-nav .nav-inner{
    height: 72px;
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    padding-left: 32px;
    padding-right: 32px;
  }
.zf-site-nav .brand{
    min-width: 0;
    width: auto;
  }
.mobile-panel{
    display: block;
    height: calc(100dvh - 72px);
  }
.mobile-panel.is-open{
    width: 100%;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }}
@media(max-width: 560px){.zf-site-nav .brand span:not(.sr-only){
    display: none;
  }}
@media(prefers-reduced-motion: reduce){.mega-menu,.mega-link,.zf-site-nav .nav-link,.zf-site-nav .btn{
    transition: none;
  }}
@media(max-width:768px){.zf-site-nav{background:rgba(3,8,18,.94);border-bottom:1px solid rgba(119,166,219,.14);box-shadow:0 12px 36px rgba(0,0,0,.34)}
.zf-site-nav .nav-inner{height:64px;min-height:64px;padding-left:16px;padding-right:16px}
.mobile-menu-button{width:40px;height:40px;border-radius:8px;border-color:rgba(119,166,219,.24);background:rgba(9,19,35,.78)}
.mobile-panel{top:64px;height:calc(100dvh - 64px);background:linear-gradient(180deg,rgba(3,8,18,.99),rgba(5,13,27,.99));border-top:1px solid rgba(56,213,255,.16)}
.mobile-panel-inner{min-height:calc(100dvh - 64px);padding:18px 16px 112px}
.mobile-details{border:1px solid rgba(119,166,219,.14);border-radius:8px;background:rgba(8,18,34,.72);margin-bottom:10px;overflow:hidden}
.mobile-details summary{min-height:50px;padding:0 14px;color:#f3f8ff;font-size:13px;letter-spacing:.08em;text-transform:uppercase}
.mobile-link{min-height:48px;margin:0 12px 10px;padding:10px 12px;border:1px solid rgba(119,166,219,.1);border-radius:7px;background:rgba(255,255,255,.025)}
.mobile-link strong{font-size:13.5px}
.mobile-link span{font-size:12px;color:#8aa0b7}
.mobile-ctas{gap:10px;padding:16px 0 0;background:linear-gradient(180deg,rgba(3,8,18,0),rgba(3,8,18,.98) 30%)}}

footer.zf-site-footer .footer-ai-node.brand-only{width:210px;height:110px;border-radius:16px;background:linear-gradient(145deg,rgba(7,18,38,.92),rgba(3,8,20,.98));border:1px solid rgba(56,213,255,.28);box-shadow:0 22px 60px rgba(0,0,0,.36),0 0 34px rgba(56,213,255,.12)}
footer.zf-site-footer .footer-ai-node.brand-only::before{display:none}
footer.zf-site-footer .footer-ai-node.brand-only img{width:64px;height:64px}
footer.zf-site-footer .footer-ai-node.brand-only span{color:#9fb7cd;font-size:10px}
footer.zf-site-footer .footer-trust.metrics-row .footer-trust-card strong{font-size:28px}
footer.zf-site-footer .footer-trust.metrics-row .footer-trust-card span span{color:#d2dfeb}
@media(max-width:560px){footer.zf-site-footer .footer-ai-node.brand-only{width:100%;max-width:260px}}
footer.zf-site-footer{position:relative;overflow:hidden;padding:28px 0 30px;border-top:1px solid rgba(47,128,255,.18);background:
  radial-gradient(ellipse 780px 480px at 50% 3%,rgba(47,128,255,.14),transparent 68%),
  radial-gradient(ellipse 560px 420px at 88% 18%,rgba(56,213,255,.08),transparent 68%),
  linear-gradient(180deg,#050816 0%,#071020 58%,#040812 100%)}
footer.zf-site-footer::before{content:"";position:absolute;inset:0;pointer-events:none;background-image:
  linear-gradient(rgba(148,189,255,.035) 1px,transparent 1px),
  linear-gradient(90deg,rgba(148,189,255,.035) 1px,transparent 1px);
  background-size:46px 46px;mask-image:linear-gradient(to bottom,black 0%,black 72%,transparent 100%)}
footer.zf-site-footer::after{content:"";position:absolute;inset:0;pointer-events:none;background:
  radial-gradient(circle at 22% 16%,rgba(56,213,255,.18) 0 1.5px,transparent 2.5px),
  radial-gradient(circle at 41% 9%,rgba(47,128,255,.22) 0 1.5px,transparent 2.5px),
  radial-gradient(circle at 63% 28%,rgba(56,213,255,.16) 0 1.5px,transparent 2.5px),
  radial-gradient(circle at 81% 12%,rgba(52,211,153,.12) 0 1.5px,transparent 2.5px);
  opacity:.75;animation:footerParticles 8s ease-in-out infinite}
footer.zf-site-footer .container{position:relative;z-index:1;width:min(1480px,calc(100% - 48px))}
footer.zf-site-footer .footer-panel{border:1px solid rgba(47,128,255,.38);border-radius:10px;background:linear-gradient(135deg,rgba(7,17,38,.78),rgba(3,8,20,.94));box-shadow:0 28px 90px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.045),0 0 70px rgba(47,128,255,.1);overflow:hidden}
footer.zf-site-footer .footer-cta{position:relative;display:grid;grid-template-columns:minmax(560px,1.1fr) minmax(340px,.72fr) minmax(320px,.62fr);gap:26px;align-items:center;padding:42px 56px 34px;border-bottom:1px solid rgba(47,128,255,.28);background:radial-gradient(ellipse at 50% 40%,rgba(47,128,255,.12),transparent 54%)}
footer.zf-site-footer .footer-cta-copy{min-width:0}
footer.zf-site-footer .footer-eyebrow{display:block;color:var(--cyan);font-size:13px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;margin-bottom:16px}
footer.zf-site-footer .footer-cta h2{font-size:clamp(32px,3.2vw,44px);line-height:1.04;letter-spacing:-.04em;margin:0 0 16px;color:#fff}
footer.zf-site-footer .footer-cta h2 span{background:linear-gradient(110deg,#31d8ff,#2f80ff 58%,#9ae7ff);-webkit-background-clip:text;background-clip:text;color:transparent;text-shadow:0 0 34px rgba(56,213,255,.22)}
footer.zf-site-footer .footer-cta p{max-width:560px;color:#dce7f3;font-size:17px;line-height:1.55;margin:0 0 28px}
footer.zf-site-footer .footer-cta-actions{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
footer.zf-site-footer .footer-cta-btn{min-height:66px;min-width:270px;padding:0 26px;border-radius:7px;font-size:16px;gap:14px}
footer.zf-site-footer .footer-cta-btn svg{width:22px;height:22px;flex:0 0 auto}
footer.zf-site-footer .footer-cta-primary{background:linear-gradient(135deg,#38d5ff 0%,#176fff 70%,#2f80ff 100%);color:#fff;border-color:rgba(56,213,255,.72);box-shadow:0 0 0 1px rgba(56,213,255,.36),0 0 36px rgba(47,128,255,.46),0 16px 44px rgba(47,128,255,.26)}
footer.zf-site-footer .footer-cta-primary:hover,footer.zf-site-footer .footer-cta-secondary:hover{transform:translateY(-2px)}
footer.zf-site-footer .footer-cta-secondary{background:rgba(6,14,30,.62);color:#f2f8ff;border-color:rgba(56,213,255,.25);box-shadow:inset 0 1px 0 rgba(255,255,255,.045)}
footer.zf-site-footer .footer-benefits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:38px}
footer.zf-site-footer .footer-benefit{display:grid;grid-template-columns:42px 1fr;gap:13px;align-items:center;min-width:0}
footer.zf-site-footer .footer-benefit-icon,footer.zf-site-footer .footer-social,footer.zf-site-footer .footer-trust-icon,footer.zf-site-footer .footer-contact-icon{display:flex;align-items:center;justify-content:center;color:#38d5ff;border:1px solid rgba(56,213,255,.42);background:rgba(56,213,255,.06);box-shadow:0 0 24px rgba(56,213,255,.14),inset 0 0 16px rgba(56,213,255,.04)}
footer.zf-site-footer .footer-benefit-icon{width:42px;height:42px;border-radius:50%}
footer.zf-site-footer .footer-benefit-icon svg{width:22px;height:22px}
footer.zf-site-footer .footer-benefit strong{display:block;color:#fff;font-size:13.5px}
footer.zf-site-footer .footer-benefit span{display:block;color:#b8c8d7;font-size:13px;margin-top:2px}
footer.zf-site-footer .footer-core{position:relative;min-height:335px;display:flex;align-items:center;justify-content:center}
footer.zf-site-footer .footer-core-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(56,213,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(56,213,255,.08) 1px,transparent 1px);background-size:28px 28px;mask-image:radial-gradient(circle,black 0%,transparent 70%)}
footer.zf-site-footer .footer-ai-node{position:relative;width:176px;height:176px;border-radius:50%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;border:1.5px solid rgba(56,213,255,.78);background:radial-gradient(circle at 42% 36%,rgba(56,213,255,.24),rgba(2,8,20,.98) 68%);box-shadow:0 0 0 14px rgba(56,213,255,.045),0 0 70px rgba(47,128,255,.45),inset 0 0 36px rgba(56,213,255,.15);animation:footerCorePulse 3s ease-in-out infinite}
footer.zf-site-footer .footer-ai-node::before,footer.zf-site-footer .footer-ai-node::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(56,213,255,.42);inset:-15px;box-shadow:0 0 26px rgba(56,213,255,.2)}
footer.zf-site-footer .footer-ai-node::after{inset:-30px;opacity:.55}
footer.zf-site-footer .footer-ai-node img{position:relative;z-index:1;width:76px;height:76px;object-fit:contain;filter:drop-shadow(0 0 18px rgba(56,213,255,.72))}
footer.zf-site-footer .footer-ai-node strong{position:relative;z-index:1;color:#fff;letter-spacing:.09em;font-size:17px;margin-top:4px}
footer.zf-site-footer .footer-ai-node span{position:relative;z-index:1;color:#dff7ff;font-size:11px;font-weight:900;letter-spacing:.12em}
footer.zf-site-footer .footer-core-links{position:absolute;right:0;top:45px;display:grid;gap:12px}
footer.zf-site-footer .footer-core-link{display:flex;align-items:center;gap:10px;color:#fff;font-size:13px;font-weight:800;text-transform:uppercase}
footer.zf-site-footer .footer-core-link svg{width:32px;height:32px;padding:7px;border-radius:50%;color:#48b9ff;border:1px solid rgba(56,213,255,.56);background:rgba(56,213,255,.06)}
footer.zf-site-footer .footer-core-link::before{content:"";width:66px;border-top:1px dashed rgba(56,213,255,.65);filter:drop-shadow(0 0 6px rgba(56,213,255,.7));animation:footerFlow 3.8s linear infinite}
footer.zf-site-footer .footer-timeline{border-left:1px solid rgba(47,128,255,.36);padding-left:24px}
footer.zf-site-footer .footer-timeline-list{display:grid;gap:13px}
footer.zf-site-footer .footer-step{display:grid;grid-template-columns:48px 1fr auto;gap:14px;align-items:center;padding:8px 10px 8px 0;border-bottom:1px solid rgba(148,189,255,.08)}
footer.zf-site-footer .footer-step:last-child{border-bottom:0}
footer.zf-site-footer .footer-step-icon{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--step-color);border:1px solid currentColor;background:color-mix(in srgb,var(--step-color) 9%,transparent);box-shadow:0 0 24px color-mix(in srgb,var(--step-color) 22%,transparent)}
footer.zf-site-footer .footer-step-icon svg{width:25px;height:25px}
footer.zf-site-footer .footer-step-copy strong{display:block;color:#fff;font-size:15.5px}
footer.zf-site-footer .footer-step-copy span{display:block;color:#c6d5e2;font-size:13px}
footer.zf-site-footer .footer-step-meta{display:grid;gap:8px;justify-items:end}
footer.zf-site-footer .footer-step-status{color:var(--step-color);border:1px solid color-mix(in srgb,var(--step-color) 38%,transparent);background:color-mix(in srgb,var(--step-color) 13%,transparent);border-radius:6px;padding:4px 11px;font-size:12px;font-weight:900}
footer.zf-site-footer .footer-step-time{color:#cbd8e5;font-size:13px;font-variant-numeric:tabular-nums}
footer.zf-site-footer .footer-main{display:grid;grid-template-columns:1.65fr repeat(5,1fr);gap:34px;padding:40px 54px 34px}
footer.zf-site-footer .footer-brand-logo{width:260px;height:auto;margin-bottom:24px}
footer.zf-site-footer .footer-tagline{color:#d4dfeb;font-size:15px;line-height:1.75;max-width:300px;margin-bottom:28px}
footer.zf-site-footer .footer-socials{display:flex;gap:16px}
footer.zf-site-footer .footer-social{width:50px;height:50px;border-radius:7px;transition:.18s}
footer.zf-site-footer .footer-social:hover{transform:translateY(-2px);color:#fff;border-color:rgba(56,213,255,.8);box-shadow:0 0 28px rgba(56,213,255,.28)}
footer.zf-site-footer .footer-social svg{width:24px;height:24px}
footer.zf-site-footer .footer-col h4{color:var(--cyan);font-size:14px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;margin:0 0 18px}
footer.zf-site-footer .footer-col a{display:block;color:#dbe4ef;font-size:15px;line-height:1.35;margin-bottom:13px;transition:.15s}
footer.zf-site-footer .footer-col a:hover{color:#38d5ff;text-shadow:0 0 14px rgba(56,213,255,.35)}
footer.zf-site-footer .footer-contact-row{display:flex;align-items:center;gap:12px;color:#dbe4ef;font-size:15px;margin-bottom:15px}
footer.zf-site-footer .footer-contact-icon{width:22px;height:22px;border:0;background:transparent;box-shadow:none;color:#38d5ff;flex:0 0 auto}
footer.zf-site-footer .footer-contact-icon svg{width:20px;height:20px}
footer.zf-site-footer .footer-trust{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));margin:8px 30px 18px;border:1px solid rgba(47,128,255,.34);border-radius:8px;background:rgba(5,15,32,.62);overflow:hidden}
footer.zf-site-footer .footer-trust-card{display:grid;grid-template-columns:62px 1fr;gap:16px;align-items:center;min-height:110px;padding:22px 28px;border-right:1px solid rgba(148,189,255,.14)}
footer.zf-site-footer .footer-trust-card:last-child{border-right:0}
footer.zf-site-footer .footer-trust-icon{width:58px;height:58px;border-radius:50%}
footer.zf-site-footer .footer-trust-icon svg{width:34px;height:34px}
footer.zf-site-footer .footer-trust-card strong{display:block;color:#fff;font-size:18px;line-height:1.15}
footer.zf-site-footer .footer-trust-card span{display:block;color:#c5d2df;font-size:14px;margin-top:4px}
footer.zf-site-footer .footer-bottom{display:grid;grid-template-columns:1fr auto 1fr;gap:22px;align-items:center;margin:0 30px;padding:24px 16px 22px;border-top:1px solid rgba(148,189,255,.12);color:#c7d4e0;font-size:14px}
footer.zf-site-footer .footer-bottom-brand{display:flex;align-items:center;gap:18px}
footer.zf-site-footer .footer-bottom-brand img{width:42px;height:42px;object-fit:contain}
footer.zf-site-footer .footer-legal{display:flex;gap:34px;align-items:center;justify-content:center;flex-wrap:wrap}
footer.zf-site-footer .footer-legal a{color:#c7d4e0;transition:.15s}
footer.zf-site-footer .footer-legal a:hover{color:#38d5ff}
footer.zf-site-footer .footer-status{justify-self:end;display:flex;align-items:center;gap:10px;color:#d8e4ee}
footer.zf-site-footer .footer-status-dot{width:11px;height:11px;border-radius:50%;background:#17d77a;box-shadow:0 0 16px rgba(23,215,122,.75);animation:footerStatusPulse 2s ease-in-out infinite}
@keyframes footerCorePulse{0%,100%{transform:scale(1);box-shadow:0 0 0 14px rgba(56,213,255,.045),0 0 70px rgba(47,128,255,.45),inset 0 0 36px rgba(56,213,255,.15)}50%{transform:scale(1.025);box-shadow:0 0 0 20px rgba(56,213,255,.06),0 0 96px rgba(47,128,255,.56),inset 0 0 42px rgba(56,213,255,.22)}}
@keyframes footerParticles{50%{transform:translateY(-10px);opacity:1}}
@keyframes footerFlow{to{filter:drop-shadow(0 0 12px rgba(56,213,255,.9))}}
@keyframes footerStatusPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.65;transform:scale(.82)}}
@media(max-width:1320px){footer.zf-site-footer .footer-cta{grid-template-columns:minmax(0,1fr) minmax(310px,.72fr);gap:30px}
footer.zf-site-footer .footer-timeline{grid-column:1/-1;border-left:0;border-top:1px solid rgba(47,128,255,.26);padding:24px 0 0}
footer.zf-site-footer .footer-timeline-list{grid-template-columns:repeat(5,minmax(0,1fr));gap:8px}
footer.zf-site-footer .footer-step{grid-template-columns:42px 1fr;align-items:start;min-height:118px;padding:12px;border:1px solid rgba(148,189,255,.1);border-radius:8px}
footer.zf-site-footer .footer-step-icon{width:42px;height:42px}
footer.zf-site-footer .footer-step-icon svg{width:22px;height:22px}
footer.zf-site-footer .footer-step-meta{grid-column:1/-1;display:flex;align-items:center;justify-content:space-between;gap:8px}}
@media(max-width:1040px){footer.zf-site-footer .footer-cta{grid-template-columns:1fr;padding:36px 32px}
footer.zf-site-footer .footer-core{min-height:300px}
footer.zf-site-footer .footer-timeline{border-left:0;padding-left:0}
footer.zf-site-footer .footer-timeline-list{grid-template-columns:1fr;gap:13px}
footer.zf-site-footer .footer-step{grid-template-columns:48px 1fr auto;min-height:0;padding:8px 10px 8px 0;border:0;border-bottom:1px solid rgba(148,189,255,.08);border-radius:0}
footer.zf-site-footer .footer-step-icon{width:48px;height:48px}
footer.zf-site-footer .footer-step-icon svg{width:25px;height:25px}
footer.zf-site-footer .footer-step-meta{grid-column:auto;display:grid;justify-content:normal}
footer.zf-site-footer .footer-main{grid-template-columns:repeat(3,1fr);padding:34px 32px}
footer.zf-site-footer .footer-brand-col{grid-column:1/-1}
footer.zf-site-footer .footer-trust{grid-template-columns:repeat(2,minmax(0,1fr))}
footer.zf-site-footer .footer-trust-card{border-top:1px solid rgba(148,189,255,.14)}
footer.zf-site-footer .footer-trust-card:nth-child(-n+2){border-top:0}
footer.zf-site-footer .footer-trust-card:nth-child(even){border-right:0}
footer.zf-site-footer .footer-trust-card:last-child{grid-column:1/-1}
footer.zf-site-footer .footer-bottom{grid-template-columns:1fr;text-align:center}
footer.zf-site-footer .footer-bottom-brand,footer.zf-site-footer .footer-status{justify-content:center;justify-self:center}}
@media(max-width:680px){footer.zf-site-footer .container{width:calc(100% - 32px)}
footer.zf-site-footer .footer-panel{border-radius:9px}
footer.zf-site-footer .footer-cta{padding:28px 18px;gap:26px}
footer.zf-site-footer .footer-cta h2{font-size:clamp(30px,10vw,40px)}
footer.zf-site-footer .footer-cta p{font-size:16px}
footer.zf-site-footer .footer-cta-actions{flex-direction:column;align-items:stretch}
footer.zf-site-footer .footer-cta-btn{width:100%;min-width:0;justify-content:center}
footer.zf-site-footer .footer-benefits{grid-template-columns:1fr;gap:16px;margin-top:28px}
footer.zf-site-footer .footer-core{min-height:390px}
footer.zf-site-footer .footer-core-links{position:relative;inset:auto;margin-top:34px;width:100%}
footer.zf-site-footer .footer-core{flex-direction:column}
footer.zf-site-footer .footer-core-link{justify-content:flex-start}
footer.zf-site-footer .footer-core-link::before{width:38px}
footer.zf-site-footer .footer-ai-node{width:156px;height:156px}
footer.zf-site-footer .footer-ai-node img{width:64px;height:64px}
footer.zf-site-footer .footer-step{grid-template-columns:44px minmax(0,1fr);padding:10px 0}
footer.zf-site-footer .footer-step-meta{grid-column:2;display:flex;align-items:center;justify-items:start;gap:10px}
footer.zf-site-footer .footer-step-icon{width:44px;height:44px}
footer.zf-site-footer .footer-main{grid-template-columns:1fr;padding:30px 20px;gap:28px}
footer.zf-site-footer .footer-brand-logo{width:230px}
footer.zf-site-footer .footer-trust{grid-template-columns:1fr;margin:0 16px 18px}
footer.zf-site-footer .footer-trust-card,footer.zf-site-footer .footer-trust-card:nth-child(-n+2){border-right:0;border-top:1px solid rgba(148,189,255,.14)}
footer.zf-site-footer .footer-trust-card:first-child{border-top:0}
footer.zf-site-footer .footer-bottom{margin:0 16px;padding:22px 0}
footer.zf-site-footer .footer-legal{gap:16px}}
@media(max-width:768px){footer.zf-site-footer .footer-cta{display:none!important}
footer.zf-site-footer{padding-top:0}
footer.zf-site-footer .footer-main{grid-template-columns:1fr!important;padding:28px 20px!important}
footer.zf-site-footer .footer-trust{grid-template-columns:1fr!important;margin:0 16px 18px!important}
footer.zf-site-footer .footer-bottom{grid-template-columns:1fr!important;text-align:center}
footer.zf-site-footer .footer-status{justify-self:center}}


/* nav elements originally defined unprefixed in index.html */
.zf-site-nav .brand-logo{
  height: 28px; /* Balanced height, not dominating header */
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: none; /* Removed heavy drop-shadow filter */
}
.zf-site-nav .brand-logo-mark{
  height: 28px; /* Balanced height */
  width: auto;
  object-fit: contain;
  filter: none; /* Removed heavy drop shadow */
}
.zf-site-nav .nav-search{
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0 12px;
  height: 38px;
  transition: all 0.2s ease;
}
.zf-site-nav .nav-search:focus-within{
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(56, 213, 255, 0.45);
  box-shadow: 0 0 10px rgba(56, 213, 255, 0.2);
}
.zf-site-nav .nav-search svg{
  width: 15px;
  height: 15px;
  color: #8faac4;
  margin-right: 8px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.zf-site-nav .nav-search input{
  background: transparent;
  border: none;
  color: #f0f6ff;
  font-size: 13px;
  outline: none;
  width: 130px;
  font-family: inherit;
}
.zf-site-nav .nav-search input:focus{
  width: 130px; /* Lock width to prevent layout shifts */
}
.zf-site-nav .nav-right-link{
  color: #a6bdd2;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.18s ease;
  padding: 8px;
}
.zf-site-nav .nav-right-link:hover{
  color: #fff;
}
@media(max-width: 1120px){.zf-site-nav .brand-logo{
    height: 40px;
    min-height: 40px;
    max-width: 260px;
  }
.zf-site-nav .brand-logo-mark{
    height: 40px;
  }}
@media(max-width:768px){.zf-site-nav .brand-logo{height:30px;max-width:190px}}

/* ── Host-page compatibility ──────────────────────────────────────────────
   The shell is injected into pages whose own stylesheets target bare
   nav/footer/.container selectors. Neutralize those so the shared header
   and footer render identically everywhere. */
nav.zf-site-nav{display:block;height:auto;min-height:0;padding:0;justify-content:normal;align-items:normal}
nav.zf-site-nav,footer.zf-site-footer{font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;line-height:1.6}
nav.zf-site-nav .container{max-width:none;padding-top:0;padding-bottom:0}
footer.zf-site-footer .container{max-width:none}
footer.zf-site-footer{margin-top:0}

/* Compact per-page related-links strip shown above the shared footer */
.zf-footer-related{border-top:1px solid var(--line);background:var(--bg2);padding:22px 0}
.zf-footer-related .container{width:min(1200px,calc(100% - 48px));max-width:none;margin:0 auto}
.zf-footer-related h2{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.09em;color:var(--dim);margin:0 0 8px;font-family:Inter,ui-sans-serif,system-ui,sans-serif}
.zf-footer-related p{font-size:13px;color:var(--dim);margin:0;line-height:2;font-family:Inter,ui-sans-serif,system-ui,sans-serif}
.zf-footer-related a{color:var(--muted);text-decoration:none}
.zf-footer-related a:hover{color:var(--cyan)}
nav.zf-site-nav a,footer.zf-site-footer a,.zf-footer-related a{text-decoration:none}
nav.zf-site-nav ul,footer.zf-site-footer ul{list-style:none;margin:0;padding:0}
