/* ═══════════════════════════════════════════════════════════════
   SECURITYZEAL — DESIGN SYSTEM
   Apple-inspired: Figtree, clean, spacious, highly legible
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --white:   #ffffff;
  --off:     #f5f5f7;
  --ink:     #1d1d1f;
  --ink2:    #3a3a3c;
  --ink3:    #6e6e73;
  --ink4:    #aeaeb2;
  --rule:    #d2d2d7;
  --blue:    #0071e3;
  --blue-dk: #004e9e;
  --blue-lt: #e8f1fc;
  --teal:    #00897b;
  --gold:    #bf8600;
  --green:   #1c7c4a;
  --font:    'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:   52px;
  --tb-h:    36px;
  --r:       12px;
  --r-lg:    18px;
  --r-xl:    24px;
  --sh-sm:   0 1px 4px rgba(0,0,0,.06), 0 2px 10px rgba(0,0,0,.04);
  --sh:      0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.05);
  --sh-lg:   0 12px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--ink); background: var(--white);
       line-height: 1.58; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
.wrap { width: min(1160px, 92vw); margin: 0 auto; }

/* TOPBAR */
.sz-topbar { background: var(--ink); height: var(--tb-h); display: flex; align-items: center;
  font-family: var(--font); font-size: .73rem; color: rgba(255,255,255,.55); }
.sz-topbar .sz-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sz-tb-left { letter-spacing: .01em; }
.sz-tb-left strong { color: rgba(255,255,255,.82); font-weight: 600; }
.sz-tb-right { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.sz-tb-right a { color: rgba(255,255,255,.6); font-size: .73rem; transition: color .18s; }
.sz-tb-right a:hover { color: #fff; text-decoration: none; }
.sz-tb-sep { color: rgba(255,255,255,.18); padding: 0 3px; }
.sz-tb-cta { color: #fff !important; font-weight: 600; background: var(--blue);
  padding: 3px 10px; border-radius: 20px; font-size: .71rem; transition: background .18s !important; }
.sz-tb-cta:hover { background: var(--blue-dk) !important; }

/* NAV */
.sz-nav { position: sticky; top: 0; z-index: 900; height: var(--nav-h);
  background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex; align-items: center; transition: background .3s, box-shadow .3s; }
.sz-nav.sz-scrolled { background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.05); }
.sz-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Brand */
.sz-brand { display: flex; align-items: center; gap: 8px; font-size: 1.02rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.022em; text-decoration: none; flex-shrink: 0; }
.sz-brand:hover { color: var(--ink); text-decoration: none; }
.sz-brand span { font-weight: 400; color: var(--ink3); }
.sz-brand-mark { width: 28px; height: 28px; background: var(--ink); border-radius: 7px;
  display: grid; place-items: center; flex-shrink: 0; }
.sz-brand-mark svg { width: 16px; height: 16px; }

/* Links */
.sz-nav-links { display: flex; align-items: center; flex: 1; justify-content: center; }
.sz-nav-link { font-size: .83rem; font-weight: 400; color: var(--ink3);
  padding: 6px 13px; border-radius: 6px; transition: color .18s, background .18s;
  text-decoration: none; white-space: nowrap; }
.sz-nav-link:hover { color: var(--ink); background: rgba(0,0,0,.04); text-decoration: none; }
.sz-nav-link.sz-active { color: var(--blue); font-weight: 500; }

/* Actions */
.sz-nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sz-btn-outline { font-size: .8rem; font-weight: 500; padding: 6px 14px; border-radius: 980px;
  border: 1px solid rgba(0,0,0,.2); color: var(--ink2); background: transparent;
  transition: all .18s; text-decoration: none; white-space: nowrap; }
.sz-btn-outline:hover { border-color: var(--ink); background: rgba(0,0,0,.04);
  color: var(--ink); text-decoration: none; }
.sz-btn-primary { font-size: .8rem; font-weight: 500; padding: 7px 16px; border-radius: 980px;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  transition: background .18s; text-decoration: none; white-space: nowrap; }
.sz-btn-primary:hover { background: var(--blue-dk); text-decoration: none; }

/* Hamburger */
.sz-hamburger { display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 3px; }
.sz-hamburger span { display: block; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .28s; }
.sz-hamburger.sz-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.sz-hamburger.sz-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sz-hamburger.sz-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile */
.sz-mobile-menu { display: none; flex-direction: column;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--rule); padding: 10px 14px 18px; }
.sz-mobile-menu.sz-open { display: flex; }
.sz-mobile-menu .sz-nav-link { font-size: .93rem; padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.05); border-radius: 0; }
.sz-mobile-menu .sz-nav-link:last-child { border-bottom: none; }

@media (max-width: 860px) { .sz-nav-links { display: none; } .sz-hamburger { display: flex; } }
@media (max-width: 540px) { .sz-btn-outline { display: none; } .sz-tb-left { display: none; } }
