.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), oklch(62% 0.22 235));
  display: grid; place-items: center;
  box-shadow: var(--shadow-blue);
  position: relative;
}
.brand-mark svg { width: 20px; height: 20px; color: white; font-size: 20px; }
.brand-mark::after {
  content: "";
  position: absolute; inset: 2px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent);
  pointer-events: none;
}
.brand .dot { color: var(--green-600); }

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
}
.nav-phone {
  display: none;
  align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--blue); }

.trust-banner {
  background: linear-gradient(90deg,
    oklch(24% 0.07 222) 0%,
    oklch(36% 0.14 188) 40%,
    oklch(40% 0.16 172) 55%,
    oklch(36% 0.14 188) 70%,
    oklch(24% 0.07 222) 100%
  );
  color: oklch(88% 0.18 145);
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-phone-pill {
  display: none;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-phone-pill:hover { background: var(--ink); color: var(--white); }
.nav-phone-pill svg { width: 16px; height: 16px; color: var(--blue); transition: color .15s; }
.nav-phone-pill:hover svg { color: var(--green); }

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-phone { display: inline-flex; }
  .nav-phone-pill { display: inline-flex; }
}

@media (max-width: 719.98px) {
  .nav-inner { padding: 10px 16px !important; gap: 10px; }
  .brand { font-size: 16px; gap: 8px; min-width: 0; }
  .brand-mark { width: 32px; height: 32px; border-radius: 10px; }
  .brand-mark svg { width: 17px; height: 17px; }

  .nav-cta { gap: 8px; flex-shrink: 0; }

  .nav-cta .nav-call {
    width: 40px;
    height: 40px;
    padding: 0;
    gap: 0;
    border-radius: 50%;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav-cta .nav-call .nav-call-label { display: none; }
  .nav-cta .nav-call svg { width: 17px; height: 17px; flex-shrink: 0; display: block; }
  .nav-burger { flex-shrink: 0; }
}
@media (max-width: 359.98px) {
  .brand span { font-size: 15px; }
  .nav-inner { padding: 10px 12px !important; }
}
