.service-nav { position: sticky; top: 0; z-index: 60; border-bottom: 1px solid var(--hairline); background: color-mix(in srgb, var(--canvas) 88%, transparent); color: var(--text-primary); backdrop-filter: blur(18px); }
.service-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
/* Align the nav bar to the page container (.container: max-width 1280 with 16px
   gutters) so the logo and CTA sit on the same left/right edges as the hero and
   every section below it — the nav's own 1180 width made it read as inset.
   Scoped to the nav row (0,2,0 specificity) so service-page .service-container
   content blocks keep their narrower width. */
.service-nav .service-nav-inner { width: 100%; max-width: 1280px; padding-inline: 16px; box-sizing: border-box; }
.service-nav-inner { min-height: 74px; display: flex; align-items: center; gap: 30px; }
.service-logo { display: inline-flex; align-items: center; margin-right: auto; }
.service-logo-image { display: block; width: 152px; height: 48px; object-fit: contain; object-position: left center; }
.service-nav a { color: inherit; text-decoration: none; }
.service-nav-links { display: flex; align-items: center; gap: 28px; }
.service-nav-links a { color: var(--text-body); font-size: 14px; }
.service-nav-links a:hover, .service-nav-links a[aria-current='page'] { color: var(--text-primary); }
.service-nav-menu { position: relative; }
.service-nav-trigger { display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; border: 0; background: none; color: var(--text-body); font: inherit; font-size: 14px; cursor: pointer; }
.service-nav-trigger:hover, .service-nav-menu.is-open .service-nav-trigger { color: var(--text-primary); }
.service-nav-trigger svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.service-nav-menu.is-open .service-nav-trigger svg { transform: rotate(180deg); }
.service-nav-dropdown { position: absolute; top: calc(100% + 12px); left: -16px; min-width: 286px; margin: 0; padding: 10px; list-style: none; border: 1px solid var(--hairline-strong); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-elev); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .16s ease, transform .16s ease, visibility .16s; }
.service-nav-menu.is-open .service-nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.service-nav-dropdown a { display: block; padding: 10px 12px; border-radius: var(--r-md); color: var(--text-body); font-size: 14px; }
.service-nav-dropdown a:hover, .service-nav-dropdown a[aria-current='page'] { background: var(--surface-elevated); color: var(--text-primary); }
.service-nav-dropdown a[aria-current='page']::after { content: '•'; margin-left: 8px; color: var(--accent-blue-link); }
.service-nav-dropdown a[target='_blank']::after { content: '↗'; margin-left: 6px; font-size: 11px; opacity: .65; }
.service-nav-group { margin: 10px 12px 4px; color: var(--text-muted); font-family: var(--font-label); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.service-nav-group:not(:first-child) { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--hairline); }
.service-nav-mobile-only { display: none; }
/* Scoped to the nav. Unscoped, this rule loads after service-page.css and beat
   .service-button-ghost there, so every service page rendered its secondary action as a solid
   fill — one loud action too many (DESIGN.md § 1). Pre-dates the Fellow 2026 pass; ember only
   made it obvious. */
.service-nav .service-button { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--accent-ember); border-radius: var(--r-md); background: var(--accent-ember); color: var(--accent-ember-ink) !important; font-weight: 700; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.service-nav .service-button:hover { background: var(--accent-ember-hover); transform: translateY(-1px); }
/* The CTA label never wraps. `nowrap` used to be set only under 560px, which left a gap between
   561-900px: the Licensing/Insights anchors hide there but the label is still 14px, so a squeezed
   flex row broke "Talk to our team" across two lines. flex:none keeps the button at its natural
   width and makes the logo and menu absorb the squeeze instead. */
.service-nav .service-button { white-space: nowrap; flex: none; }
.service-nav .service-button-small { min-height: 42px; padding-inline: 18px; font-size: 14px; }
.service-subnav { position: sticky; top: 75px; z-index: 50; border-bottom: 1px solid var(--hairline); background: color-mix(in srgb, var(--canvas-soft) 94%, transparent); backdrop-filter: blur(14px); }
.service-subnav-inner { min-height: 42px; display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.service-subnav span { margin-right: auto; color: var(--text-muted); font-family: var(--font-label); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.service-subnav a { color: var(--text-body); font-size: 13px; text-decoration: none; }
.service-subnav a:hover { color: var(--text-primary); }
@media (max-width: 900px) {
  .service-nav-links { gap: 0; }
  .service-nav-anchor { display: none; }
  .service-nav-dropdown { left: auto; right: -8px; min-width: min(82vw, 300px); max-height: calc(100vh - 96px); overflow-y: auto; }
  .service-nav-mobile-only { display: list-item; }
}
@media (max-width: 560px) {
  .service-container { width: min(100% - 32px, 1180px); }
  .service-nav-inner { min-height: 64px; gap: 12px; }
  .service-logo-image { width: 110px; height: 40px; }
  .service-nav .service-button { padding-inline: 10px; font-size: 11px; }
  .service-nav-dropdown { position: fixed; top: 64px; left: 16px; right: 16px; width: auto; min-width: 0; }
  .service-subnav { top: 65px; }
  .service-subnav-inner { justify-content: space-between; gap: 14px; }
  .service-subnav span { display: none; }
}
