nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; background: rgba(255,255,255,.95); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(26,86,219,.08); transition: box-shadow .3s; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--azd); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo-v { background: var(--az); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; letter-spacing: 1px; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--gr); transition: .2s; }
.nav-links a:hover { color: var(--az); }
.nav-cta { background: var(--az); color: #fff !important; padding: 8px 20px; border-radius: var(--radius-sm); font-weight: 600 !important; }
.nav-cta:hover { background: var(--azd) !important; }
.ham { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; }
.ham span { width: 22px; height: 2px; background: var(--ne); border-radius: 2px; display: block; transition: .3s; }
.mob-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--gb); padding: 1.5rem 5%; z-index: 199; flex-direction: column; gap: 1.25rem; }
.mob-menu.open { display: flex; }
.mob-menu a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--gr); padding: .5rem 0; border-bottom: 1px solid var(--gl); }
.mob-cta { background: var(--az); color: #fff; text-align: center; padding: 13px; border-radius: 10px; font-weight: 700; border: none; font-size: 15px; margin-top: .5rem; }
