/* VertoDigital — Navigation component */
    html { scroll-padding-top: 72px; }

    .vn {
      position: sticky;
      top: 0;
      z-index: 50;
      width: 100%;
      background: rgba(255,255,255,0.92);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(6,0,38,0.08);
      transition: box-shadow 250ms ease;
    }
    .vn.vn-scrolled { box-shadow: 0 1px 18px rgba(6,0,38,0.07); }

    .vn-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    @media (min-width: 768px)  { .vn-inner { padding: 0 48px; } }
    @media (min-width: 1280px) { .vn-inner { padding: 0 80px; } }

    /* ── Logo ── */
    .vn-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
    .vn-logo img { height: 44px; width: auto; display: block; }

    /* ── Desktop links ── */
    .vn-links {
      display: none;
      align-items: center;
      gap: 2px;
      flex: 1;
      justify-content: center;
      margin: 0 16px;
    }
    @media (min-width: 1024px) { .vn-links { display: flex; } }

    .vn-link {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 6px 11px;
      font-size: 14px;
      font-weight: 500;
      font-family: inherit;
      color: #060026;
      border-radius: 7px;
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: color 140ms ease, background-color 140ms ease;
      line-height: 1.4;
    }
    .vn-link:hover { color: #0099FF; background: rgba(0,153,255,0.05); }
    .vn-link.vn-active { color: #0099FF; }
    .vn-link.vn-active:hover { color: #0077cc; background: rgba(0,153,255,0.05); }

    .vn-chevron {
      width: 13px; height: 13px;
      flex-shrink: 0;
      opacity: 0.55;
      transition: transform 200ms ease, opacity 150ms ease;
    }
    .vn-item.vn-open > .vn-link .vn-chevron { transform: rotate(180deg); opacity: 0.85; }

    /* ── Dropdown ── */
    .vn-item { position: relative; }

    .vn-drop {
      position: absolute;
      top: 100%;
      left: 50%;
      padding-top: 10px;
      transform: translateX(-50%) translateY(-8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 170ms ease, transform 170ms ease, visibility 0s 170ms;
      z-index: 200;
    }
    .vn-item.vn-open > .vn-drop {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
      transition: opacity 170ms ease, transform 170ms ease;
    }

    /* Industries: right-align since it's toward the right side of the nav */
    .vn-item[data-item="industries"] > .vn-drop {
      left: auto;
      right: 0;
      transform: translateX(0) translateY(-8px);
    }
    .vn-item[data-item="industries"].vn-open > .vn-drop {
      transform: translateX(0) translateY(0);
    }

    .vn-drop-inner {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 32px rgba(6,0,38,0.10), 0 0 0 1px rgba(6,0,38,0.05);
      padding: 6px;
      min-width: 220px;
      overflow: hidden;
    }

    .vn-drop-hub {
      display: block;
      padding: 9px 12px;
      font-size: 13.5px;
      font-weight: 500;
      color: #060026;
      text-decoration: none;
      border-radius: 8px;
      white-space: nowrap;
      transition: background 140ms ease;
    }
    .vn-drop-hub:hover { background: rgba(6,0,38,0.04); color: #060026; }

    .vn-drop-div {
      height: 1px;
      background: rgba(6,0,38,0.07);
      margin: 4px 6px;
    }

    .vn-drop-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 8px 12px;
      font-size: 13.5px;
      font-weight: 500;
      color: #060026;
      text-decoration: none;
      border-radius: 8px;
      white-space: nowrap;
      transition: color 140ms ease, background 140ms ease;
    }
    .vn-drop-link:hover { color: #0099FF; background: rgba(0,153,255,0.06); }
    .vn-drop-link.vn-active { color: #0099FF; background: rgba(0,153,255,0.06); }

    .vn-drop-tag {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(6,0,38,0.32);
      flex-shrink: 0;
      transition: color 140ms ease;
    }
    .vn-drop-link:hover .vn-drop-tag { color: rgba(0,153,255,0.55); }

    .vn-drop-cta {
      display: block;
      padding: 9px 12px;
      font-size: 12.5px;
      font-weight: 500;
      color: #0099FF;
      text-decoration: none;
      border-radius: 8px;
      white-space: nowrap;
      transition: background 140ms ease;
    }
    .vn-drop-cta:hover { background: rgba(0,153,255,0.07); color: #0077cc; }

    /* ── Right side ── */
    .vn-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

    /* ── CTA button ── */
    .vn-cta {
      display: none;
      align-items: center;
      gap: 7px;
      padding: 8px 18px;
      background: #E1F77E;
      color: #060026;
      font-size: 13.5px;
      font-weight: 500;
      font-family: inherit;
      border-radius: 9px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background-color 200ms ease;
    }
    @media (min-width: 1024px) { .vn-cta { display: inline-flex; } }
    .vn-cta:hover { background: #d4eb6c; }

    .vn-cta-arrow { width: 15px; height: 15px; flex-shrink: 0; }
    .vn-cta-stem {
      stroke-dasharray: 14;
      stroke-dashoffset: 14;
      transition: stroke-dashoffset 200ms ease;
    }
    .vn-cta:hover .vn-cta-stem { stroke-dashoffset: 0; }

    /* ── Mobile toggle ── */
    .vn-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: none;
      border: none;
      cursor: pointer;
      color: #060026;
      transition: background-color 140ms ease;
    }
    @media (min-width: 1024px) { .vn-toggle { display: none; } }
    .vn-toggle:hover { background: rgba(6,0,38,0.05); }

    /* Hamburger → X morph */
    .vn-ham {
      position: relative;
      width: 22px; height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .vn-ham-lines {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
    }
    .vn-ham-line {
      display: block;
      height: 2px;
      width: 100%;
      background-color: currentColor;
      border-radius: 2px;
      transition: transform 280ms cubic-bezier(0.22,1,0.36,1), opacity 200ms ease;
      transform-origin: center;
    }
    .vn-toggle[aria-expanded="true"] .vn-ham-line:first-child { transform: translateY(3.5px) rotate(45deg); }
    .vn-toggle[aria-expanded="true"] .vn-ham-line:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

    /* ── Mobile panel ── */
    .vn-mob {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 300ms cubic-bezier(0.22,1,0.36,1), opacity 220ms ease;
      border-top: 1px solid transparent;
      transition-property: max-height, opacity, border-color;
      transition-duration: 300ms, 220ms, 220ms;
      transition-timing-function: cubic-bezier(0.22,1,0.36,1), ease, ease;
    }
    .vn-mob.vn-open {
      max-height: 82vh;
      opacity: 1;
      overflow-y: auto;
      border-top-color: rgba(6,0,38,0.08);
    }

    .vn-mob-inner {
      padding: 4px 24px 24px;
      display: flex;
      flex-direction: column;
    }
    @media (min-width: 768px) { .vn-mob-inner { padding: 4px 48px 24px; } }

    /* Mobile direct link */
    .vn-mob-link {
      display: flex;
      align-items: center;
      min-height: 48px;
      font-size: 15px;
      font-weight: 500;
      color: #060026;
      text-decoration: none;
      border-bottom: 1px solid rgba(6,0,38,0.06);
      transition: color 140ms ease;
    }
    .vn-mob-link:hover { color: #0099FF; }
    .vn-mob-link.vn-active { color: #0099FF; }

    /* Mobile accordion */
    .vn-mob-acc { border-bottom: 1px solid rgba(6,0,38,0.06); }

    .vn-mob-acc-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      min-height: 48px;
      padding: 0;
      font-size: 15px;
      font-weight: 500;
      color: #060026;
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      text-align: left;
      transition: color 140ms ease;
    }
    .vn-mob-acc-btn:hover { color: #0099FF; }
    .vn-mob-acc.vn-open .vn-mob-acc-btn { color: #0099FF; }

    .vn-mob-acc-chevron {
      width: 16px; height: 16px;
      opacity: 0.45;
      flex-shrink: 0;
      transition: transform 220ms ease;
    }
    .vn-mob-acc.vn-open .vn-mob-acc-chevron { transform: rotate(180deg); opacity: 0.75; }

    .vn-mob-acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 260ms cubic-bezier(0.22,1,0.36,1);
    }
    .vn-mob-acc.vn-open .vn-mob-acc-body { max-height: 440px; }

    .vn-mob-acc-inner {
      padding: 0 0 14px 12px;
      border-left: 2px solid rgba(0,153,255,0.2);
      margin-left: 2px;
    }

    .vn-mob-acc-hub {
      display: flex;
      align-items: center;
      min-height: 42px;
      padding: 2px 8px;
      font-size: 14px;
      font-weight: 500;
      color: #060026;
      text-decoration: none;
      border-radius: 6px;
      transition: color 140ms ease, background 140ms ease;
    }
    .vn-mob-acc-hub:hover { color: #0099FF; background: rgba(0,153,255,0.05); }

    .vn-mob-acc-label {
      display: block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(0,153,255,0.7);
      padding: 10px 8px 3px;
    }

    .vn-mob-acc-link {
      display: flex;
      align-items: center;
      min-height: 42px;
      padding: 2px 8px;
      font-size: 14px;
      font-weight: 500;
      color: #060026;
      text-decoration: none;
      border-radius: 6px;
      transition: color 140ms ease, background 140ms ease;
    }
    .vn-mob-acc-link:hover { color: #0099FF; background: rgba(0,153,255,0.06); }
    .vn-mob-acc-link.vn-active { color: #0099FF; background: rgba(0,153,255,0.06); }

    .vn-mob-acc-cta {
      display: flex;
      align-items: center;
      min-height: 40px;
      padding: 2px 8px;
      font-size: 13px;
      font-weight: 500;
      color: #0099FF;
      text-decoration: none;
      border-radius: 6px;
      margin-top: 2px;
      transition: background 140ms ease;
    }
    .vn-mob-acc-cta:hover { background: rgba(0,153,255,0.07); color: #0077cc; }

    /* Mobile CTA button */
    .vn-mob-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 18px;
      padding: 14px 24px;
      background: #E1F77E;
      color: #060026;
      font-size: 15px;
      font-weight: 500;
      font-family: inherit;
      border-radius: 10px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background-color 200ms ease;
    }
    .vn-mob-cta:hover { background: #d4eb6c; }
  

/* Skip to main content link (accessibility) */
.vn-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.vn-skip:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 10px 20px;
  background: #060026;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  z-index: 99999;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  outline: 2px solid #0099FF;
  outline-offset: 2px;
}
