*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* ── Brand Palette ── */
      --navy:        #002868;   /* Primary brand navy  */
      --burgundy:    #66023C;   /* Secondary brand burgundy */
      --orange:      #FA5400;   /* Brand orange / CTA */
      --cream:       #F5F5F2;   /* Brand off-white / warm bg */

      /* ── Derived tokens ── */
      --white:           #FFFFFF;
      --bg-soft:         var(--cream);
      --bg-card:         #FAF9F7;
      --text-primary:    var(--navy);       /* headlines in navy */
      --text-body:       #1C1C1E;           /* body copy near-black */
      --text-secondary:  #5A5A60;
      --text-tertiary:   #8A8A90;
      --accent:          var(--orange);
      --accent-hover:    #E04B00;
      --accent-light:    #FFF1E8;
      --navy-dark:       #001540;
      --purple-dark:     var(--burgundy);
      --border:          rgba(0,40,104,0.07);
      --border-strong:   rgba(0,40,104,0.13);
      --radius:    20px;
      --radius-sm: 12px;
      --shadow:    0 2px 20px rgba(0,40,104,0.07);
      --shadow-md: 0 8px 40px rgba(0,40,104,0.13);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
      color: var(--text-body);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ── TYPOGRAPHY ── */
    .t-display {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
      font-size: clamp(52px, 7.5vw, 96px);
      font-weight: 700;
      letter-spacing: -0.035em;
      line-height: 1.03;
    }
    .t-title {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
      font-size: clamp(32px, 4.5vw, 56px);
      font-weight: 700;
      letter-spacing: -0.028em;
      line-height: 1.07;
    }
    .t-headline {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
      font-size: clamp(22px, 2.6vw, 30px);
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.2;
    }
    .t-body-lg { font-size: 19px; line-height: 1.65; color: var(--text-secondary); }
    .t-body { font-size: 17px; line-height: 1.65; color: var(--text-secondary); }
    .t-small { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }
    .t-caption { font-size: 13px; line-height: 1.4; color: var(--text-tertiary); }
    .t-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
    }
    em.accent { font-style: normal; color: var(--orange); }

    /* ── LAYOUT ── */
    .wrap   { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
    .wrap-sm { max-width: 760px; margin: 0 auto; padding: 0 28px; }
    section { overflow: hidden; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 13px 26px; border-radius: 980px;
      font-size: 16px; font-weight: 500; font-family: inherit;
      text-decoration: none; cursor: pointer; border: none;
      transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: scale(1.015); }
    .btn-primary   { background: var(--accent); color: #fff; }
    .btn-primary:hover { background: var(--accent-hover); }
    .btn-soft      { background: var(--bg-soft); color: var(--text-primary); border: 1px solid var(--border-strong); }
    .btn-soft:hover { background: #EAE8E3; }
    .btn-white     { background: #fff; color: var(--text-primary); }
    .btn-white:hover { background: rgba(255,255,255,0.92); }
    .btn-pop { transition: transform .18s ease, background .15s ease, box-shadow .18s ease, border-color .15s ease; }
    .btn-pop:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 26px rgba(0,0,0,0.25); }
    .btn-ghost-white {
      background: transparent; color: rgba(255,255,255,0.85);
      border: 1.5px solid rgba(255,255,255,0.28);
    }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.08); color: #fff; }
    .btn-sm { padding: 9px 18px; font-size: 14px; }

    /* ── DIVIDER ── */
    .rule {
      width: 40px; height: 3px;
      background: var(--accent); border-radius: 2px;
      margin: 20px auto 0;
    }

    /* ═══════════════════════════════
       GLOBAL NAV
    ═══════════════════════════════ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      height: 68px;
      display: flex; align-items: center;
      background: rgba(255,255,255,0.82);
      backdrop-filter: saturate(180%) blur(24px);
      -webkit-backdrop-filter: saturate(180%) blur(24px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      width: 100%; max-width: 1200px;
      margin: 0 auto; padding: 0 28px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: inline-flex; align-items: center;
      text-decoration: none; line-height: 1;
    }
    .nav-logo img { height: 48px; width: auto; display: block; }
    .nav-logo span { display: none; }
    .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
    .nav-links a {
      font-size: 14px; font-weight: 400;
      color: var(--text-secondary); text-decoration: none;
      padding: 5px 13px; border-radius: 8px;
      transition: color 0.12s, background 0.12s;
    }
    .nav-links a:hover { color: var(--navy); background: rgba(0,40,104,0.05); }
    .nav-right { display: flex; align-items: center; gap: 14px; }
    .nav-phone {
      font-size: 14px; font-weight: 600;
      color: var(--navy); text-decoration: none;
    }
    .nav-right .btn { padding: 7px 18px; font-size: 14px; }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
    .hero {
      padding: 156px 28px 100px;
      text-align: center;
      background: linear-gradient(135deg, #002868 0%, #66023C 100%);
      position: relative;
      overflow: hidden;
    }
    /* Background service montage (desktop/tablet). The gradient above is the
       fallback — shown before the video loads, on error, when the user prefers
       reduced motion, and on phones (where the video is suppressed for speed). */
    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      pointer-events: none;
    }
    /* Directional brand scrim over the footage: a lighter navy→burgundy tint
       for brand cohesion, plus a soft dark-navy pool behind the centered
       headline so text stays legible while the facilities show through. */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 92% 78% at 50% 42%, rgba(3, 15, 40, 0.36) 0%, rgba(3, 15, 40, 0) 72%),
        linear-gradient(135deg, rgba(0, 40, 104, 0.52) 0%, rgba(102, 2, 60, 0.48) 100%);
      z-index: 1;
    }
    .hero > *:not(.hero-video) {
      position: relative;
      z-index: 2;
      border-bottom: 1px solid var(--border);
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-video { display: none; }
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.15); color: var(--orange);
      font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
      padding: 6px 16px; border-radius: 980px;
      margin-bottom: 36px;
      border: 1px solid rgba(255,255,255,0.25);
    }
    .hero-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--orange);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    .hero h1 { margin-bottom: 28px; color: var(--white); }
    .hero-sub {
      max-width: 580px; margin: 0 auto 44px;
      font-size: 21px; line-height: 1.55;
      color: rgba(255,255,255,0.9);
    }
    .hero-actions {
      display: flex; align-items: center;
      justify-content: center; gap: 14px; flex-wrap: wrap;
    }
    .hero-certs {
      display: flex; align-items: center;
      justify-content: center; gap: 10px;
      margin-top: 64px; flex-wrap: wrap;
    }
    .cert-tag {
      display: flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 10px; padding: 7px 15px;
    }
    .cert-tag-dot {
      width: 7px; height: 7px; border-radius: 50%; background: #30D158;
    }
    .cert-tag span { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.01em; }
    .cap-chip {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 20px; padding: 9px 18px; border-radius: 50px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.28);
      color: rgba(255,255,255,0.92); font-size: 13px; font-weight: 600;
      letter-spacing: 0.01em; text-decoration: none;
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
      transition: background .2s ease, border-color .2s ease, color .2s ease;
    }
    .cap-chip svg { width: 15px; height: 15px; color: var(--orange); }
    .cap-chip:hover { background: rgba(250,84,0,0.16); border-color: var(--orange); color: #fff; }

    /* ═══════════════════════════════
       SECTION WRAPPERS
    ═══════════════════════════════ */
    .sec { padding: 112px 0; }
    .sec-sm { padding: 72px 0; }
    .sec-soft { background: var(--bg-soft); }
    .sec-dark { background: var(--navy); }
    .sec-navy { background: var(--navy); }

    .sec-head { text-align: center; margin-bottom: 60px; }
    .sec-head .t-eyebrow { margin-bottom: 14px; }
    .sec-head h2 { margin-bottom: 0; color: var(--navy); }
    .sec-head .rule { margin-bottom: 20px; }
    .sec-head p {
      max-width: 540px; margin: 20px auto 0;
      font-size: 19px; color: var(--text-secondary); line-height: 1.6;
    }

    /* ═══════════════════════════════
       SERVICES GRID
    ═══════════════════════════════ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border-strong);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .svc-card {
      background: var(--white);
      padding: 40px 36px 36px;
      transition: background 0.2s;
    }
    .svc-card:hover { background: #F0EDE7; }
    .svc-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--accent-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 22px;
    }
    .svc-card h3 {
      font-size: 19px; font-weight: 700;
      letter-spacing: -0.01em; margin-bottom: 10px;
      color: var(--navy);
    }
    .svc-card p {
      font-size: 15px; line-height: 1.6; color: var(--text-secondary);
    }
    .svc-link {
      display: inline-flex; align-items: center; gap: 4px;
      color: var(--orange); font-size: 15px; font-weight: 600;
      text-decoration: none; margin-top: 18px;
      transition: gap 0.15s;
    }
    .svc-link:hover { gap: 8px; }
    .svc-card-cta {
      background: var(--orange) !important;
    }
    .svc-card-cta:hover { background: var(--accent-hover) !important; }
    .svc-card-cta .svc-icon { background: rgba(255,255,255,0.2); }
    .svc-card-cta h3 { color: #fff; }
    .svc-card-cta p { color: rgba(255,255,255,0.82); }
    .svc-card-cta .svc-link { color: rgba(255,255,255,0.9); }

    /* ═══════════════════════════════
       WHY MOSAIC — 4 PILLARS
    ═══════════════════════════════ */
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 32px; margin: 56px auto 0; max-width: 1040px;
    }
    .why-item { text-align: center; padding: 32px 24px; border-radius: 16px; transition: background 0.2s; }
    .why-item:hover { background: rgba(0,40,104,0.04); }
    .why-ico {
      width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 18px;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(160deg, #ffffff, #EAEFF6);
      border: 1px solid rgba(0,40,104,0.10);
      box-shadow: 0 8px 18px rgba(0,40,104,0.10);
      color: var(--orange);
    }
    .why-ico svg { width: 30px; height: 30px; }
    .why-num {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display';
      font-size: 52px; font-weight: 700; letter-spacing: -0.04em;
      color: var(--orange); line-height: 1; margin-bottom: 14px;
    }
    .why-item h3 {
      font-size: 17px; font-weight: 700; margin-bottom: 8px;
      color: var(--navy);
    }
    .why-item p { font-size: 15px; color: var(--text-secondary); line-height: 1.55; }

    /* ═══════════════════════════════
       STATS BAR
    ═══════════════════════════════ */
    .stats-bar {
      background: var(--navy); padding: 72px 0;
      position: relative;
    }
    .stats-bar::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 4px; background: var(--orange);
    }
    .stats-inner {
      display: grid; grid-template-columns: repeat(4, 1fr);
    }
    .stat {
      text-align: center; padding: 0 28px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .stat:last-child { border: none; }
    .stat-n {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display';
      font-size: 54px; font-weight: 700; letter-spacing: -0.04em;
      color: var(--orange); line-height: 1; margin-bottom: 6px;
    }
    .stat-l { font-size: 14px; color: rgba(255,255,255,0.6); }

    /* ═══════════════════════════════
       SERVICE PATHWAYS
    ═══════════════════════════════ */
    .pathways-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 20px; margin-top: 60px;
    }
    .pathway {
      border-radius: var(--radius);
      padding: 52px 48px 48px;
      position: relative; overflow: hidden;
      color: #fff;
    }
    .pathway::before {
      content: ''; position: absolute;
      inset: 0; border-radius: inherit;
      background: inherit; opacity: 0.06;
      pointer-events: none;
    }
    /* Keep all interactive content above the decorative ::before overlay */
    .pathway > * { position: relative; z-index: 1; }
    .pathway-gov { background: var(--navy); }
    .pathway-gov::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--orange); border-radius: inherit inherit 0 0;
      pointer-events: none;
    }
    .pathway-com { background: var(--burgundy); }
    .pathway-com::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--orange); border-radius: inherit inherit 0 0;
      pointer-events: none;
    }
    .pathway-eye {
      font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255,255,255,0.55);
      margin-bottom: 14px;
    }
    .pathway h3 {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display';
      font-size: 36px; font-weight: 700; letter-spacing: -0.025em;
      line-height: 1.08; margin-bottom: 16px;
    }
    .pathway p {
      font-size: 16px; line-height: 1.65;
      color: rgba(255,255,255,0.72); margin-bottom: 28px;
    }
    .pathway-pills {
      display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 32px;
    }
    .pill {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 6px; padding: 4px 10px;
      font-size: 12px; font-weight: 600;
      color: rgba(255,255,255,0.85);
    }

    /* ═══════════════════════════════
       SERVICE AREAS
    ═══════════════════════════════ */
    .areas-wrap {
      display: flex; flex-wrap: wrap;
      gap: 10px; justify-content: center;
      margin-top: 48px;
    }
    .area-chip {
      background: var(--cream);
      border: 1px solid var(--border-strong);
      border-radius: 980px; padding: 8px 20px;
      font-size: 14px; font-weight: 500;
      color: var(--navy);
      cursor: default;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }
    .area-chip:hover {
      background: var(--orange); color: #fff; border-color: var(--orange);
    }
    .area-chip.primary {
      background: var(--accent-light);
      border-color: rgba(250,84,0,0.25); color: var(--orange);
      font-weight: 700;
    }

    /* ═══════════════════════════════
       INDUSTRIES GRID
    ═══════════════════════════════ */
    .ind-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2px; background: var(--border-strong);
      border-radius: var(--radius); overflow: hidden;
      margin-top: 60px;
    }
    .ind-card {
      background: var(--white);
      padding: 32px 24px 28px; text-align: center;
      transition: background 0.2s;
    }
    .ind-card:hover { background: var(--accent-light); }
    .ind-icon { font-size: 30px; margin-bottom: 12px; }
    .ind-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); }

    /* ═══════════════════════════════
       ABOUT SPLIT
    ═══════════════════════════════ */
    .about-grid {
      display: grid; grid-template-columns: 5fr 6fr;
      gap: 80px; align-items: center;
    }
    .about-card {
      background: linear-gradient(160deg, var(--navy), var(--navy-dark));
      border-radius: var(--radius); padding: 40px 38px;
      color: #fff; box-shadow: var(--shadow-md);
    }
    .about-card-eyebrow {
      font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--orange);
    }
    .about-card h3 { font-size: 22px; font-weight: 700; color: #fff; margin: 8px 0 4px; letter-spacing: -0.01em; }
    .about-facts { list-style: none; margin: 20px 0 0; padding: 0; }
    .about-facts li {
      display: flex; justify-content: space-between; align-items: center; gap: 18px;
      padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 14px;
    }
    .about-facts li:last-child { border-bottom: none; }
    .about-facts .k { color: rgba(255,255,255,0.6); white-space: nowrap; }
    .about-facts .v { color: #fff; font-weight: 600; text-align: right; }
    .about-copy .t-eyebrow { margin-bottom: 12px; }
    .about-copy h2 { margin-bottom: 22px; color: var(--navy); }
    .about-copy .t-body-lg { margin-bottom: 16px; }
    .about-copy .t-body { margin-bottom: 0; }
    .values-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
    .val-row { display: flex; align-items: flex-start; gap: 12px; }
    .val-dot {
      width: 20px; height: 20px; min-width: 20px;
      border-radius: 50%; background: var(--accent-light);
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .val-dot::after {
      content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
    }
    .val-row p { font-size: 15px; color: var(--text-secondary); }
    .val-row strong { color: var(--navy); }
    .about-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

    /* ═══════════════════════════════
       LEADERSHIP SNIPPET
    ═══════════════════════════════ */
    .leaders { display: flex; gap: 24px; margin-top: 36px; }
    .leader {
      display: flex; align-items: center; gap: 12px;
    }
    .leader-av {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--accent-light); overflow: hidden;
      display: flex; align-items: center; justify-content: center; font-size: 20px;
    }
    .leader-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .leader-name { font-size: 14px; font-weight: 600; }
    .leader-role { font-size: 12px; color: var(--text-tertiary); }

    /* ═══════════════════════════════
       QUOTE / CTA DARK
    ═══════════════════════════════ */
    .cta-dark {
      background: var(--navy);
      padding: 120px 0; text-align: center;
      position: relative;
    }
    .cta-dark::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: var(--orange);
    }
    .cta-dark .t-eyebrow { color: var(--orange); margin-bottom: 16px; opacity: 0.9; }
    .cta-dark h2 {
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display';
      font-size: clamp(40px, 5.5vw, 68px);
      font-weight: 700; letter-spacing: -0.03em;
      color: #fff; margin-bottom: 20px;
    }
    .cta-dark p {
      font-size: 21px; line-height: 1.55;
      color: rgba(255,255,255,0.55);
      max-width: 540px; margin: 0 auto 48px;
    }
    .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

    /* ── QUOTE FORM BOX ── */
    .form-box {
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: var(--radius);
      padding: 48px; margin-top: 64px;
      text-align: left; max-width: 760px;
      margin-left: auto; margin-right: auto;
    }
    .form-box h3 {
      font-size: 20px; font-weight: 600; letter-spacing: -0.01em;
      color: #fff; margin-bottom: 28px;
    }
    .form-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-grid .full { grid-column: 1 / -1; }
    .f-label {
      display: block; font-size: 12px; font-weight: 600;
      letter-spacing: 0.04em; text-transform: uppercase;
      color: rgba(255,255,255,0.45); margin-bottom: 7px;
    }
    .f-input, .f-select, .f-textarea {
      width: 100%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 11px; padding: 12px 16px;
      color: #fff; font-size: 16px; font-family: inherit;
      outline: none;
      transition: border-color 0.15s;
    }
    .f-input:focus, .f-select:focus, .f-textarea:focus {
      border-color: rgba(250,84,0,0.6);
      box-shadow: 0 0 0 3px rgba(250,84,0,0.12);
    }
    .f-input::placeholder, .f-textarea::placeholder { color: rgba(255,255,255,0.25); }
    .f-select { appearance: none; cursor: pointer; }
    .f-select option { background: #001848; }
    .f-textarea { resize: vertical; }
    .f-checks {
      display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
    }
    .f-check {
      display: flex; align-items: center; gap: 8px;
      cursor: pointer; font-size: 14px; color: rgba(255,255,255,0.7);
    }
    .f-check input { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
    .form-submit-row { margin-top: 8px; }

    /* ═══════════════════════════════
       CONTACT INFO BAR
    ═══════════════════════════════ */
    .contact-bar {
      background: var(--bg-soft);
      border-top: 1px solid var(--border);
      padding: 56px 0;
    }
    .contact-items {
      display: flex; justify-content: center;
      gap: 60px; flex-wrap: wrap;
    }
    .ci {
      display: flex; align-items: center; gap: 14px;
    }
    .ci-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--accent-light);
      border: 1px solid rgba(250,84,0,0.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }
    .ci-l { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-tertiary); margin-bottom: 3px; }
    .ci-v { font-size: 15px; font-weight: 600; color: var(--navy); text-decoration: none; }
    a.ci-v:hover { color: var(--orange); }

    /* ═══════════════════════════════
       CAPABILITY BANNER
    ═══════════════════════════════ */
    .cap-banner {
      background: var(--orange); padding: 18px 28px;
      text-align: center;
    }
    .cap-banner p {
      color: rgba(255,255,255,0.95); font-size: 15px; font-weight: 600;
    }
    .cap-banner a {
      color: #fff; text-decoration: underline; font-weight: 700;
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.5);
      padding: 64px 0 40px;
      border-top: 4px solid var(--navy);
    }
    .ft-grid {
      display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
      gap: 48px;
    }
    .ft-brand .nav-logo { display: block; margin-bottom: 14px; }
    .ft-brand .nav-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
    .ft-brand p { font-size: 14px; line-height: 1.65; }
    .ft-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
    .ft-badge {
      background: rgba(250,84,0,0.15);
      border: 1px solid rgba(250,84,0,0.28);
      border-radius: 6px; padding: 3px 9px;
      font-size: 11px; font-weight: 800;
      color: #FA8040; letter-spacing: 0.05em;
    }
    .ft-col h4 {
      font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9);
      margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.07em;
    }
    .ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .ft-col ul a {
      color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px;
      transition: color 0.12s;
    }
    .ft-col ul a:hover { color: rgba(255,255,255,0.9); }
    .ft-bottom {
      margin-top: 52px; padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .ft-bottom p { font-size: 13px; }
    .ft-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 13px; }
    .ft-bottom a:hover { color: rgba(255,255,255,0.6); }

    /* ═══════════════════════════════
       FADE-UP ON SCROLL
    ═══════════════════════════════ */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }
    /* Pages shown via showPage() must never depend on the scroll animation to be
       visible — keep their content fully visible at all times. */
    #page-services .reveal, #page-detail .reveal {
      opacity: 1 !important; transform: none !important;
    }

    /* ═══════════════════════════════
       MOBILE NAV (hamburger + overlay)
    ═══════════════════════════════ */
    .nav-burger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center; gap: 5px;
      width: 44px; height: 44px; padding: 0; margin-left: 2px;
      background: transparent; border: none; cursor: pointer;
    }
    .nav-burger span {
      display: block; width: 22px; height: 2px; border-radius: 2px;
      background: var(--navy);
      transition: transform .25s ease, opacity .2s ease;
    }
    body.mobile-nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.mobile-nav-open .nav-burger span:nth-child(2) { opacity: 0; }
    body.mobile-nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      position: fixed; inset: 68px 0 0; z-index: 850;
      background: rgba(255,255,255,0.98);
      backdrop-filter: saturate(180%) blur(24px);
      -webkit-backdrop-filter: saturate(180%) blur(24px);
      display: flex; flex-direction: column;
      padding: 18px 28px 36px;
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: opacity .25s ease, transform .25s ease, visibility .25s;
      overflow-y: auto;
    }
    body.mobile-nav-open .mobile-nav { opacity: 1; visibility: visible; transform: translateY(0); }
    body.mobile-nav-open { overflow: hidden; }
    .mobile-nav a.m-link {
      display: block; padding: 17px 4px;
      font-size: 19px; font-weight: 600; color: var(--navy);
      text-decoration: none; border-bottom: 1px solid var(--border);
    }
    .mobile-nav a.m-link:active { color: var(--orange); }
    .mobile-nav-foot { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 16px; }
    .mobile-nav .m-phone {
      display: inline-flex; align-items: center; gap: 9px;
      font-size: 17px; font-weight: 700; color: var(--navy); text-decoration: none;
    }
    .mobile-nav .m-phone svg { width: 17px; height: 17px; color: var(--orange); }
    .mobile-nav .btn { justify-content: center; width: 100%; padding: 15px 26px; }

    /* ═══════════════════════════════
       MOBILE SERVICES BAR (detail & government pages — sticky dropdown under nav)
    ═══════════════════════════════ */
    .svc-bar {
      display: none;
      position: fixed; top: 68px; left: 0; right: 0; z-index: 840;
      background: rgba(255,255,255,0.97);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid var(--border-strong);
      box-shadow: 0 6px 20px rgba(0,40,104,0.08);
    }
    .svc-bar-toggle {
      width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
      padding: 13px 28px; background: transparent; border: none; cursor: pointer;
      font-family: inherit; font-size: 15px; font-weight: 700; color: var(--navy);
    }
    .svc-bar-toggle .chev { transition: transform .25s ease; color: var(--orange); flex: 0 0 auto; }
    .svc-bar.open .svc-bar-toggle .chev { transform: rotate(180deg); }
    .svc-bar-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
    .svc-bar.open .svc-bar-panel { max-height: 72vh; overflow-y: auto; border-top: 1px solid var(--border); }
    .svc-bar-item {
      width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
      padding: 13px 28px; background: transparent; border: none; border-bottom: 1px solid var(--border);
      text-align: left; cursor: pointer; font-family: inherit;
    }
    .svc-bar-item:last-child { border-bottom: none; }
    .svc-bar-item:active { background: rgba(0,40,104,0.05); }
    .svc-bar-item-name { font-size: 15px; font-weight: 600; color: var(--navy); }
    .svc-bar-item-tip { font-size: 12.5px; color: var(--text-secondary); line-height: 1.4; }
    @media (max-width: 768px) {
      body.show-svc-bar .svc-bar { display: block; }
      /* The in-hero dock is replaced by the sticky bar on these pages at phone widths */
      body.show-svc-bar #detail-dock-mount, body.show-svc-bar #gov-dock-mount { display: none; }
      /* Extra top clearance so the hero clears nav (56) + bar (~48) */
      body.show-svc-bar #page-detail .detail-hero,
      body.show-svc-bar #page-government .detail-hero { padding-top: 134px; }
    }

    /* ═══════════════════════════════
       RESPONSIVE
    ═══════════════════════════════ */
    @media (max-width: 1200px) {
      /* switch to the hamburger before the larger logo crowds the links (nav-inner caps at 1200px) */
      .nav-links, .nav-phone, .nav-right > .btn { display: none; }
      .nav-burger { display: flex; }
    }
    @media (max-width: 960px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .pathways-grid { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .ind-grid { grid-template-columns: repeat(3, 1fr); }
      .stats-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
      .stat { border: none; }
      .ft-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 20px; }
      .ind-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-inner { gap: 32px 12px; }
      .stat { padding: 0 6px; }
      .stat-n { font-size: 42px; }
      .stat-l { font-size: 13px; }
      .contact-items { flex-direction: column; align-items: flex-start; padding: 0 28px; }
      .form-grid { grid-template-columns: 1fr; }
      .form-grid .full { grid-column: 1; }
      .form-box { padding: 32px 24px; }
      .pathway { padding: 40px 28px; }
      .pathway h3 { font-size: 28px; }
      .sec { padding: 80px 0; }
      .hero { padding: 120px 20px 80px; }
      .ft-grid { grid-template-columns: 1fr; }
      .cta-dark { padding: 80px 0; }
    }

/* ===== block ===== */
.dock-wrap { display:flex; justify-content:center; padding:64px 16px 12px; overflow:visible; }
      .dock {
        display:flex; align-items:flex-end; justify-content:center; gap:8px;
        padding:16px 18px; border-radius:30px;
        background:rgba(255,255,255,0.55);
        backdrop-filter:blur(16px) saturate(1.3); -webkit-backdrop-filter:blur(16px) saturate(1.3);
        border:1px solid rgba(0,40,104,0.10);
        box-shadow:0 22px 55px rgba(0,40,104,0.16), inset 0 1px 0 rgba(255,255,255,0.85);
      }
      .dock-item {
        position:relative; flex:0 0 auto; width:84px;
        display:flex; flex-direction:column; align-items:center; gap:9px;
        background:transparent; border:none; cursor:pointer; padding:6px 2px;
      }
      .dock-ico {
        width:56px; height:56px; border-radius:18px;
        display:flex; align-items:center; justify-content:center;
        background:linear-gradient(160deg,#ffffff,#EAEFF6);
        border:1px solid rgba(0,40,104,0.10);
        box-shadow:0 6px 14px rgba(0,40,104,0.10);
        color:#FA5400;
        transform-origin:bottom center; will-change:transform;
        transition:transform 0.18s cubic-bezier(.2,.8,.2,1), border-color .2s, box-shadow .2s;
      }
      .dock-ico svg { width:33px; height:33px; }
      .dock-meta { display:flex; flex-direction:column; align-items:center; }
      .dock-name {
        font-size:11.5px; font-weight:700; color:#002868; text-align:center;
        line-height:1.2; min-height:28px; display:flex; align-items:center;
      }
      .dock-tip {
        position:absolute; bottom:100%; left:50%;
        transform:translateX(-50%) translateY(6px); margin-bottom:14px; width:188px;
        background:rgba(3,20,58,0.58);
        backdrop-filter:blur(22px) saturate(1.6); -webkit-backdrop-filter:blur(22px) saturate(1.6);
        border:1px solid rgba(255,255,255,0.3);
        color:#fff; font-size:11.5px; line-height:1.5; font-weight:500;
        text-shadow:0 1px 3px rgba(0,0,0,0.35);
        padding:11px 15px; border-radius:16px; text-align:center;
        opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease;
        box-shadow:0 18px 44px rgba(0,40,104,0.30), inset 0 1px 0 rgba(255,255,255,0.25); z-index:40;
      }
      .dock-item:hover .dock-tip { opacity:1; transform:translateX(-50%) translateY(0); }
      .dock-item:hover .dock-ico { border-color:#FA5400; box-shadow:0 10px 22px rgba(250,84,0,0.22); }

      /* Mobile / touch: no magnification — standard cards, stacked */
      @media (max-width:1100px) {
        .dock-wrap { padding:24px 0 0; overflow:visible; }
        .dock {
          flex-wrap:wrap; gap:12px; padding:0; background:transparent;
          backdrop-filter:none; -webkit-backdrop-filter:none; border:none; box-shadow:none;
          max-width:560px;
        }
        .dock-ico { transform:none !important; }
        .dock-item {
          width:100%; flex-direction:row; align-items:center; gap:14px;
          padding:14px 16px; background:#fff; border:1px solid var(--border-strong);
          border-radius:16px; text-align:left;
          box-shadow:var(--shadow);
        }
        .dock-meta { align-items:flex-start; }
        .dock-name { min-height:0; font-size:15px; }
        .dock-tip {
          position:static; opacity:1; transform:none; margin:3px 0 0; width:auto;
          background:transparent; color:var(--text-secondary); box-shadow:none;
          backdrop-filter:none; -webkit-backdrop-filter:none; border:none; text-shadow:none;
          padding:0; text-align:left; font-size:12.5px;
        }
        .dock-ico { width:48px; height:48px; flex:0 0 48px; }
      }

/* ===== block ===== */
@keyframes slideUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

/* ===== block ===== */
.detail-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy) 100%);
      padding: 110px 20px 6px; text-align: center; position: relative;
    }
    .detail-hero::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 4px; background: var(--orange);
    }
    .detail-hero .t-eyebrow { color: var(--orange); margin-bottom: 4px; opacity: 0.95; }
    /* The dock now lives inside the hero — give it a near-solid glass bar so labels read on navy */
    .detail-hero .dock-wrap { padding-top: 44px; }
    .detail-hero .dock { background: rgba(255,255,255,0.95); }
    /* Page title + tagline now sit below the hero on the light section */
    .detail-head { text-align: center; max-width: 820px; margin: 0 auto 30px; }
    .detail-head h1 {
      color: var(--navy); font-weight: 700; letter-spacing: -0.03em;
      font-size: clamp(36px, 5vw, 58px); margin-bottom: 14px;
    }
    .detail-tagline {
      color: var(--text-secondary); font-size: clamp(18px, 2.4vw, 22px);
      max-width: 640px; margin: 0 auto; line-height: 1.5;
    }
    .detail-intro {
      font-size: 20px; line-height: 1.7; color: var(--text-body);
      max-width: 780px; margin: 0 auto; text-align: center;
    }
    .detail-chips {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
      max-width: 820px; margin: 0 auto;
    }
    .detail-chip {
      display: flex; align-items: center; gap: 11px;
      background: #fff; border: 1px solid var(--border-strong);
      border-radius: 14px; padding: 16px 20px;
      font-size: 15px; font-weight: 600; color: var(--navy);
      box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
    }
    .detail-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .detail-chk { color: var(--orange); font-weight: 800; font-size: 16px; flex-shrink: 0; }
    .detail-cards {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
      max-width: 920px; margin: 0 auto;
    }
    .detail-card {
      flex: 0 1 280px;
      background: #fff; border: 1px solid var(--border-strong);
      border-radius: 16px; padding: 24px;
      box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease;
    }
    .detail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .detail-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .detail-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
    .detail-card-link { display: block; text-decoration: none; cursor: pointer; }
    .detail-card-link:hover { border-color: var(--orange); }
    .detail-card-more { display: inline-block; margin-top: 14px; color: var(--orange); font-size: 13px; font-weight: 700; }
    .detail-section { margin-bottom: 64px; }
    .detail-section:last-child { margin-bottom: 0; }
    @media (max-width: 680px) { .detail-chips { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 430px) { .detail-chips { grid-template-columns: 1fr; } }
    /* The global sticky nav serves every page; hide the redundant nav baked into the services page */
    #page-services > nav.nav { display: none; }

/* ===== multi-page additions (new components only) ===== */
.skip-link{position:absolute;left:-999px;top:0;z-index:1000;background:var(--navy);color:#fff;padding:10px 16px;border-radius:0 0 8px 0;}
.skip-link:focus{left:0;}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid var(--orange);outline-offset:2px;border-radius:4px;}
.breadcrumb{background:var(--cream);border-bottom:1px solid var(--border);font-size:13px;}
.breadcrumb .wrap{padding-top:12px;padding-bottom:12px;}
.breadcrumb a{color:var(--text-secondary);text-decoration:none;}
.breadcrumb a:hover{color:var(--orange);}
.breadcrumb .sep{margin:0 8px;color:var(--text-tertiary);}
.breadcrumb span[aria-current]{color:var(--navy);font-weight:600;}
/* interior-page hero: title now lives inside the navy hero, so make it legible */
.detail-hero{padding:104px 20px 54px;}
.detail-hero .detail-head{margin:0 auto;max-width:880px;}
.detail-hero .detail-head h1{color:#fff;}
.detail-hero .detail-tagline{color:rgba(255,255,255,0.82);margin-top:12px;font-size:19px;}
.svc-bar-item{text-decoration:none;}
.prose-sec{padding:60px 0;}
.prose-sec h2{font-size:clamp(26px,3.4vw,38px);font-weight:700;letter-spacing:-0.02em;color:var(--navy);margin:0 0 18px;}
.prose-sec h2:not(:first-child){margin-top:48px;}
.prose-sec p{font-size:17px;line-height:1.7;color:var(--text-secondary);margin-bottom:14px;max-width:760px;}
.prose-sec ol{margin:0 0 8px 22px;}
.prose-sec ol li{font-size:17px;line-height:1.7;color:var(--text-secondary);margin-bottom:8px;}
.faq-item{border-top:1px solid var(--border-strong);padding:22px 0;max-width:820px;}
.faq-item h3{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:8px;}
.faq-item p{font-size:16px;line-height:1.65;color:var(--text-secondary);margin:0;}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px;}
.related-card{display:block;background:var(--white);border:1px solid var(--border-strong);border-radius:var(--radius-sm);padding:20px 22px;text-decoration:none;transition:transform .15s,box-shadow .15s,border-color .15s;}
.related-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);border-color:var(--orange);}
.related-card .rc-name{font-size:16px;font-weight:700;color:var(--navy);}
.related-card .rc-tip{font-size:13px;color:var(--text-secondary);margin-top:4px;}
.area-list{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px;}

/* ===== consistent interior-page article layout (left-aligned, aligned column) ===== */
.article{max-width:920px;margin:0 auto;padding:0 28px;}
.article .lead{font-size:21px;line-height:1.6;color:var(--text-body);margin:0 0 6px;text-align:left;max-width:none;}
.article h2{font-size:clamp(24px,3vw,34px);font-weight:700;letter-spacing:-0.02em;color:var(--navy);margin:46px 0 18px;}
.article h2:first-of-type{margin-top:38px;}
.article p{font-size:17px;line-height:1.7;color:var(--text-secondary);margin-bottom:14px;max-width:none;}
.article ol{margin:0 0 8px 22px;}
.article ol li{font-size:17px;line-height:1.7;color:var(--text-secondary);margin-bottom:8px;}
.article .detail-chips{margin:0;max-width:none;text-align:left;}
.article .detail-chip{text-align:left;}
.article .related-grid{margin-top:18px;}
.article .faq-item{max-width:none;}
.article .area-list .area-chip{cursor:default;}

/* ===== nav hover dropdowns (desktop) — frosted translucent ===== */
.nav-links li{position:relative;}
.nav-links .has-dd>a{display:inline-flex;align-items:center;gap:6px;}
.nav-links .has-dd>a::after{content:"";width:6px;height:6px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);margin-top:-3px;opacity:.45;transition:transform .2s ease,opacity .2s ease;}
.nav-links .has-dd:hover>a::after,.nav-links .has-dd:focus-within>a::after{transform:rotate(225deg);margin-top:1px;opacity:.8;}
.nav-dd{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(4px);padding-top:12px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .18s ease,transform .18s ease,visibility .18s;z-index:950;}
.nav-links .has-dd:hover .nav-dd,.nav-links .has-dd:focus-within .nav-dd{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0);}
.nav-dd-inner{background:rgba(255,255,255,0.985);backdrop-filter:saturate(180%) blur(26px);-webkit-backdrop-filter:saturate(180%) blur(26px);border:1px solid var(--border-strong);border-radius:16px;box-shadow:0 22px 54px rgba(0,40,104,0.24),inset 0 1px 0 rgba(255,255,255,0.9);padding:10px;min-width:236px;}
.nav-dd-mega .nav-dd-inner{display:grid;grid-template-columns:1fr 1fr;gap:2px;min-width:476px;}
.nav-dd a{display:block;padding:9px 13px;border-radius:10px;font-size:13.5px;font-weight:600;color:var(--navy);text-decoration:none;white-space:nowrap;transition:background .12s,color .12s;}
.nav-dd a:hover{background:var(--accent-light);color:var(--accent-hover);}
@media (max-width:960px){.nav-dd{display:none!important;}.nav-links .has-dd>a::after{display:none;}}

@media (max-width:760px){.related-grid{grid-template-columns:1fr;}.article{padding:0 22px;}}
@media (prefers-reduced-motion:reduce){*{animation-duration:0.001ms!important;animation-iteration-count:1!important;transition-duration:0.001ms!important;scroll-behavior:auto!important;}.reveal{opacity:1!important;transform:none!important;}}

/* ===== performance: blurred layers repaint every scroll frame -> jank on phones ===== */
/* The hero blur filters a solid gradient (nothing behind it) -> pure GPU cost, no visual effect */
.hero::before{backdrop-filter:none!important;-webkit-backdrop-filter:none!important;}
/* On phones, drop backdrop-blur on the fixed nav + overlays and use near-solid surfaces
   (removes the main source of scroll lag; desktop keeps the frosted glass look). */
@media (max-width:960px){
  .nav{backdrop-filter:none!important;-webkit-backdrop-filter:none!important;background:rgba(255,255,255,0.96)!important;}
  .mobile-nav{backdrop-filter:none!important;-webkit-backdrop-filter:none!important;background:#fff!important;}
  .svc-bar{backdrop-filter:none!important;-webkit-backdrop-filter:none!important;background:rgba(255,255,255,0.98)!important;}
  .cap-chip{backdrop-filter:none!important;-webkit-backdrop-filter:none!important;}
}
/* Compositing hints so the browser promotes these to their own layers (smoother scroll) */
.nav,.svc-bar{transform:translateZ(0);}

/* ===== home services dock on mobile: fix the sloppy tap state ===== */
/* Dock items are <a> now -> kill the link underline on the label */
.dock-item,.dock-item:hover,.dock-name{text-decoration:none;}
/* In the mobile card layout, a tap fires desktop :hover ("sticky hover") which slides
   the tooltip sideways (translateX(-50%)) and glows the icon. Neutralize it so the
   description stays put beside the icon. */
@media (max-width:1100px){
  .dock-item:hover .dock-tip,.dock-item:active .dock-tip,.dock-item:focus .dock-tip{transform:none!important;opacity:1;}
  /* icon stays completely static on tap (no glow / no move) */
  .dock-item:hover .dock-ico,.dock-item:active .dock-ico,.dock-item:focus .dock-ico{transform:none!important;border-color:rgba(0,40,104,0.10)!important;box-shadow:0 6px 14px rgba(0,40,104,0.10)!important;}
  /* Match the services-dropdown motion: a clean orange outline hugging the card on tap/select
     (outline renders instantly and follows the card's rounded corners). */
  .dock-item:focus,.dock-item:active{outline:2px solid var(--orange);outline-offset:2px;}
}
