
    /* =============================================
       RESET & BASE
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: #333333;
      background: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* =============================================
       TOKENS
    ============================================= */
    :root {
      --navy:   #1B2A4A;
      --blue:   #2E75B6;
      --teal:   #4DAFA8;
      --teal-hover: #3D9B94;
      --body:   #333333;
      --light-bg: #F5F7FA;
      --muted:  #666666;
      --shadow: 0 4px 20px rgba(0,0,0,0.06);
      --radius-card: 8px;
      --radius-btn: 6px;
      --max-w: 1200px;
    }

    /* =============================================
       FOCUS STYLES (Accessibility - WCAG 2.1 AA)
    ============================================= */
    *:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
    a:focus-visible, button:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
    input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--blue); outline-offset: 0; }

    /* =============================================
       UTILITY
    ============================================= */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
    .section-label {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 16px;
    }
    h1, h2 { font-family: 'DM Serif Display', serif; }
    h2 { font-size: clamp(28px, 4vw, 36px); color: var(--navy); }

    .btn-primary {
      display: inline-block;
      background: var(--teal);
      color: #fff;
      padding: 15px 30px;
      border-radius: var(--radius-btn);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      transition: background 0.2s, transform 0.15s;
      cursor: pointer;
      border: none;
      white-space: nowrap;
    }
    .btn-primary:hover { background: var(--teal-hover); transform: translateY(-1px); }

    .btn-outline {
      display: inline-block;
      background: transparent;
      color: #fff;
      padding: 15px 30px;
      border-radius: var(--radius-btn);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border: 2px solid #fff;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      cursor: pointer;
      white-space: nowrap;
    }
    .btn-outline:hover { background: #fff; color: var(--navy); transform: translateY(-1px); }

    /* =============================================
       NAVIGATION
    ============================================= */
    #site-nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #fff;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo-mark {
      height: 38px;
      width: auto;
      flex-shrink: 0;
      display: block;
    }
    .nav-logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 18px;
      color: var(--navy);
      line-height: 1.1;
    }
    .nav-logo-sub {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: #444;
      padding: 8px 12px;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--navy); background: var(--light-bg); }
    .nav-lang {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.3px;
      color: var(--muted);
      padding: 6px 10px;
      margin-left: 4px;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-lang:hover { color: var(--teal); background: var(--light-bg); }
    .nav-lang .nav-flag {
      font-size: 15px;
      line-height: 1;
      /* Force colour-emoji rendering even on systems that default to monochrome */
      font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", sans-serif;
    }
    .nav-cta { margin-left: 8px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: #fff;
      border-top: 1px solid rgba(0,0,0,0.08);
      padding: 16px 24px 24px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 15px;
      font-weight: 500;
      color: #444;
      padding: 12px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .mobile-menu a:last-child { border-bottom: none; }

    /* Sticky bottom CTA (mobile) */
    .mobile-sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--teal);
      color: #fff;
      text-align: center;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 16px;
      text-decoration: none;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    }

    /* =============================================
       HERO
    ============================================= */
    #hero {
      background: var(--navy);
      padding: 56px 0 60px;
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(46,117,182,0.15) 0%, transparent 60%),
                  radial-gradient(ellipse at 10% 80%, rgba(77,175,168,0.08) 0%, transparent 50%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 56px;
      position: relative;
      z-index: 1;
    }
    .hero-content {
      max-width: 620px;
    }
    .hero-media {
      position: relative;
    }
    .hero-media img {
      display: block;
      width: 100%;
      height: 100%;
      max-height: 460px;
      object-fit: cover;
      border-radius: 14px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.38);
    }
    .hero-media::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
      background: linear-gradient(160deg, transparent 55%, rgba(27,42,74,0.35) 100%);
      pointer-events: none;
    }
    .hero-eyebrow {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 20px;
    }
    .hero-eyebrow-banner {
      font-size: clamp(13px, 1.4vw, 16px);
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--teal);
      text-align: center;
      margin-bottom: 28px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(77,175,168,0.25);
      position: relative;
      z-index: 1;
    }
    .hero-h1 {
      font-size: clamp(32px, 4.6vw, 48px);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 18px;
    }
    .hero-sub {
      font-size: 17px;
      color: rgba(255,255,255,0.88);
      max-width: 520px;
      line-height: 1.55;
      margin-bottom: 24px;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

    /* =============================================
       CREDENTIALS BAR
    ============================================= */
    #credentials {
      background: #fff;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      padding: 28px 0;
    }
    .creds-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .cred-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 32px;
      position: relative;
    }
    .cred-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(0,0,0,0.1);
    }
    .cred-icon {
      font-size: 22px;
      flex-shrink: 0;
      line-height: 1;
    }
    .cred-text {
      font-size: 13px;
      font-weight: 500;
      color: #333;
      line-height: 1.4;
    }
    .cred-text strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
    }

    /* =============================================
       WHAT WE DO
    ============================================= */
    #services {
      background: #fff;
      padding: 100px 0;
    }
    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-header h2 { margin-bottom: 20px; }
    .section-intro {
      font-size: 17px;
      color: var(--muted);
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.75;
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .service-card {
      background: #fff;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      border-top: 4px solid var(--teal);
      padding: 36px;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    }
    .card-eyebrow {
      display: inline-block;
      align-self: flex-start;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #fff;
      background: var(--navy);
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 14px;
    }
    .card-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .card-price {
      font-size: 13px;
      font-weight: 600;
      color: var(--teal);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 18px;
    }
    .card-body {
      font-size: 15px;
      color: #555;
      line-height: 1.7;
      flex: 1;
      margin-bottom: 24px;
    }
    .card-link {
      font-size: 14px;
      font-weight: 700;
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: auto;
      transition: gap 0.2s;
    }
    .card-link:hover { gap: 8px; text-decoration: underline; }

    /* =============================================
       RESULTS
    ============================================= */
    #results {
      background: var(--light-bg);
      padding: 100px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      text-align: center;
      margin: 56px 0 72px;
    }
    .stat-item {}
    .stat-number {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(38px, 5vw, 52px);
      color: var(--navy);
      line-height: 1;
      margin-bottom: 10px;
      display: block;
    }
    .stat-label {
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
    }

    /* Testimonials */
    .testimonial-wrap {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }
    .testimonial-card {
      background: #fff;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      padding: 48px 52px;
      position: relative;
      text-align: center;
    }
    .testimonial-quote-mark {
      position: absolute;
      top: 24px;
      left: 40px;
      font-family: 'DM Serif Display', serif;
      font-size: 80px;
      color: var(--teal);
      opacity: 0.25;
      line-height: 1;
      user-select: none;
    }
    .testimonial-text {
      font-size: 17px;
      font-style: italic;
      color: #444;
      line-height: 1.8;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .testimonial-author {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
    }
    .testimonial-role {
      font-size: 13px;
      color: var(--muted);
      margin-top: 2px;
    }
    .testimonial-slide {
      display: none;
    }
    .testimonial-slide.active {
      display: block;
      animation: fadeInSlide 0.5s ease;
    }
    @keyframes fadeInSlide {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
    }
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0,0,0,0.15);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      border: none;
    }
    .dot.active { background: var(--teal); transform: scale(1.3); }

    /* =============================================
       INDUSTRIES
    ============================================= */
    #industries {
      background: #fff;
      padding: 100px 0;
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }
    .industry-card {
      border-radius: var(--radius-card);
      border: 1px solid rgba(0,0,0,0.08);
      padding: 32px 28px;
      cursor: pointer;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      display: block;
      text-decoration: none;
    }
    .industry-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.09);
      border-color: var(--teal);
    }
    .industry-icon {
      width: 48px;
      height: 48px;
      background: rgba(77,175,168,0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .industry-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--teal);
    }
    .industry-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .industry-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
    }

    /* =============================================
       CTA BANNER
    ============================================= */
    #cta-banner {
      background: var(--teal);
      padding: 90px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
      pointer-events: none;
    }
    #cta-banner h2 {
      color: #fff;
      margin-bottom: 20px;
      position: relative;
    }
    .cta-body {
      font-size: 17px;
      color: rgba(255,255,255,0.9);
      max-width: 600px;
      margin: 0 auto 36px;
      line-height: 1.75;
      position: relative;
    }
    .btn-white {
      display: inline-block;
      background: #fff;
      color: var(--teal);
      padding: 15px 32px;
      border-radius: var(--radius-btn);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      transition: opacity 0.2s, transform 0.15s;
      position: relative;
    }
    .btn-white:hover { opacity: 0.92; transform: translateY(-2px); }

    /* =============================================
       MEET BCG
    ============================================= */
    #meet-bcg {
      background: #fff;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .bcg-logo-bg {
      position: absolute;
      top: 50%;
      right: -60px;
      width: min(640px, 56%);
      height: auto;
      opacity: 0.08;
      transform: translateY(-50%) rotate(-12deg);
      transform-origin: center;
      animation: bcgDrift 18s ease-in-out infinite;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }
    @keyframes bcgDrift {
      0%, 100% { transform: translateY(-50%) rotate(-12deg) scale(1); }
      50%      { transform: translateY(-54%) rotate(-8deg)  scale(1.06); }
    }
    /* white wash so the copy stays fully legible over the mark */
    #meet-bcg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.88) 42%, rgba(255,255,255,0.4) 68%, rgba(255,255,255,0) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .bcg-inner {
      display: block;
      position: relative;
      z-index: 2;
    }
    @media (prefers-reduced-motion: reduce) {
      .bcg-logo-bg { animation: none; }
    }
    @media (max-width: 768px) {
      .bcg-logo-bg { width: 360px; right: -70px; opacity: 0.06; }
      #meet-bcg::after { background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.9) 55%, rgba(255,255,255,0.5) 100%); }
    }
    .bcg-text {
      max-width: 820px;
    }
    .bcg-text h2 { margin-bottom: 24px; }
    .bcg-text p {
      font-size: 16px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 18px;
    }
    .bcg-link {
      font-size: 15px;
      font-weight: 700;
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 8px;
      transition: gap 0.2s;
    }
    .bcg-link:hover { gap: 10px; text-decoration: underline; }

    /* =============================================
       FOOTER
    ============================================= */
    #site-footer {
      background: var(--navy);
      color: rgba(255,255,255,0.75);
      padding: 72px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
    }
    .footer-brand {}
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }
    .footer-logo-mark {
      height: 34px;
      width: auto;
      flex-shrink: 0;
      display: block;
      background: #ffffff;
      border-radius: 4px;
      padding: 2px 5px;
    }
    .footer-logo-name {
      font-family: 'DM Serif Display', serif;
      font-size: 16px;
      color: #fff;
      line-height: 1.1;
    }
    .footer-logo-name span {
      display: block;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      font-weight: 500;
    }
    .footer-tagline {
      font-size: 14px;
      line-height: 1.7;
      max-width: 260px;
    }
    .footer-col-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 18px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.65);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--teal); }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 14px;
    }
    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      stroke: var(--teal);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
    .footer-contact-item a:hover { color: var(--teal); }
    .social-links {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
    }
    .social-btn {
      width: 38px;
      height: 38px;
      background: rgba(255,255,255,0.07);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.65);
      transition: background 0.2s, color 0.2s;
      text-decoration: none;
    }
    .social-btn:hover { background: var(--teal); color: #fff; }
    .social-btn svg { width: 18px; height: 18px; }

    /* Map embed */
    .footer-map {
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
      margin-top: 40px;
      height: 180px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .footer-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* Footer bottom bar */
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }
    .footer-bottom-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      transition: color 0.2s;
    }
    .footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

    /* =============================================
       ANIMATIONS / SCROLL REVEAL
    ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .creds-grid { grid-template-columns: repeat(2, 1fr); }
      .cred-item:nth-child(2)::after { display: none; }
      .cred-item:nth-child(4)::after { display: none; }
      .cred-item:nth-child(3) { border-top: 1px solid rgba(0,0,0,0.06); }
      .cred-item:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.06); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    @media (max-width: 900px) {
      .cards-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta, .nav-lang { display: none; }
      .hamburger { display: flex; }
      .mobile-sticky-cta { display: block; }

      #hero { padding: 64px 0 56px; }

      .hero-inner { grid-template-columns: 1fr; gap: 36px; }
      .hero-content { max-width: 100%; }
      .hero-sub { max-width: 100%; }
      .hero-media { order: -1; }
      .hero-media img { max-height: 300px; }

      .hero-eyebrow-banner { letter-spacing: 2px; margin-bottom: 32px; padding-bottom: 18px; }
      .hero-h1 { font-size: 34px; }
      .hero-sub { font-size: 16px; }

      .creds-grid { grid-template-columns: 1fr 1fr; }
      .cred-item::after { display: none !important; }
      .cred-item { border-bottom: 1px solid rgba(0,0,0,0.06); }

      .testimonial-card { padding: 36px 28px; }
      .testimonial-quote-mark { font-size: 60px; top: 16px; left: 20px; }

      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }

      body { padding-bottom: 60px; }
    }

    @media (max-width: 560px) {
      .industries-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .hero-buttons { flex-direction: column; }
      .btn-primary, .btn-outline { text-align: center; }
    }
  .skip-nav { position: absolute; top: -100%; left: 16px; z-index: 9999; background: #1B2A4A; color: #fff; padding: 12px 20px; border-radius: 0 0 6px 6px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600; text-decoration: none; transition: top 0.2s; }
  .skip-nav:focus { top: 0 !important; outline: 3px solid #4DAFA8; outline-offset: 2px; }
  
        

    /* =============================================
       V3 REBUILD — ADDITIONAL COMPONENTS
    ============================================= */

    /* Proof strip (home, below hero) */
    .proof-strip {
      background: #fff;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      padding: 26px 0;
    }
    .proof-strip-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px 0;
      text-align: center;
    }
    .proof-item {
      font-size: 15px;
      font-weight: 500;
      color: var(--body);
      padding: 0 28px;
      position: relative;
      white-space: nowrap;
    }
    .proof-item strong {
      font-family: 'DM Serif Display', serif;
      font-weight: 400;
      font-size: 22px;
      color: var(--navy);
      margin-right: 6px;
    }
    .proof-item:not(:last-child)::after {
      content: '·';
      position: absolute;
      right: -4px;
      color: var(--teal);
      font-weight: 700;
    }

    /* Statement section (single strong prose block) */
    .statement {
      background: var(--light-bg);
      padding: 100px 0;
    }
    .statement-text {
      max-width: 820px;
      margin: 0 auto;
      font-size: 19px;
      line-height: 1.8;
      color: var(--navy);
    }
    .statement-text p + p { margin-top: 22px; }
    .statement-text .lead-line {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(24px, 3.2vw, 32px);
      line-height: 1.35;
      display: block;
      margin-bottom: 22px;
    }

    /* Tier blocks (services overview) */
    .tier-label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--teal);
      margin: 0 0 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .tier-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(0,0,0,0.09);
    }
    .tier-block + .tier-block { margin-top: 48px; }

    /* Method steps */
    .method-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 56px;
    }
    .method-step {
      background: #fff;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      padding: 32px 28px;
      position: relative;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .method-step:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
    .method-num {
      font-family: 'DM Serif Display', serif;
      font-size: 40px;
      color: var(--teal);
      opacity: 0.35;
      line-height: 1;
      margin-bottom: 14px;
    }
    .method-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .method-desc { font-size: 14.5px; color: #555; line-height: 1.65; }

    /* Teaser bands */
    .teaser {
      padding: 88px 0;
    }
    .teaser-navy { background: var(--navy); }
    .teaser-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }
    .teaser-navy .section-label { color: var(--teal); }
    .teaser-navy h2 { color: #fff; }
    .teaser-body {
      font-size: 17px;
      line-height: 1.75;
      color: var(--muted);
      margin: 20px 0 28px;
    }
    .teaser-navy .teaser-body { color: rgba(255,255,255,0.8); }
    .teaser-link {
      font-size: 15px;
      font-weight: 700;
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: gap 0.2s;
    }
    .teaser-link:hover { gap: 11px; text-decoration: underline; }
    .teaser-navy .teaser-link { color: var(--teal); }

    /* Engagement path / numbered steps */
    .path-steps {
      counter-reset: step;
      max-width: 760px;
      margin: 56px auto 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .path-step {
      display: flex;
      gap: 24px;
      padding: 28px 0;
      position: relative;
    }
    .path-step:not(:last-child) { border-bottom: 1px solid rgba(0,0,0,0.08); }
    .path-step-num {
      font-family: 'DM Serif Display', serif;
      font-size: 30px;
      color: var(--teal);
      flex-shrink: 0;
      width: 44px;
      line-height: 1.2;
    }
    .path-step-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .path-step-body { font-size: 15px; color: #555; line-height: 1.7; }

    /* Service detail blocks */
    .svc-detail {
      max-width: 860px;
      margin: 0 auto;
      padding: 44px 0;
    }
    .svc-detail:not(:last-child) { border-bottom: 1px solid rgba(0,0,0,0.08); }
    .svc-detail-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #fff;
      background: var(--navy);
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 16px;
    }
    .svc-detail h3 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(24px, 3vw, 30px);
      color: var(--navy);
      margin-bottom: 18px;
      font-weight: 400;
    }
    .svc-detail p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 16px; }
    .svc-best {
      background: var(--light-bg);
      border-left: 3px solid var(--teal);
      border-radius: 0 8px 8px 0;
      padding: 18px 22px;
      font-size: 15px;
      color: var(--navy);
      line-height: 1.7;
      margin-top: 22px;
    }
    .svc-best strong { color: var(--teal); text-transform: uppercase; font-size: 12.5px; letter-spacing: 1.2px; display: block; margin-bottom: 6px; }

    /* Who we serve groupings */
    .wws-group {
      max-width: 860px;
      margin: 0 auto;
      padding: 44px 0;
    }
    .wws-group:not(:last-of-type) { border-bottom: 1px solid rgba(0,0,0,0.08); }
    .wws-group h3 {
      font-family: 'DM Serif Display', serif;
      font-weight: 400;
      font-size: clamp(23px, 2.8vw, 28px);
      color: var(--navy);
      margin-bottom: 16px;
    }
    .wws-group p { font-size: 16.5px; color: #555; line-height: 1.8; }
    .wws-throughline {
      background: var(--navy);
      border-radius: var(--radius-card);
      padding: 44px 48px;
      max-width: 860px;
      margin: 64px auto 0;
    }
    .wws-throughline .tl-label {
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
    }
    .wws-throughline p {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(19px, 2.4vw, 24px);
      line-height: 1.5;
      color: #fff;
    }

    /* Principles (how we think) */
    .principles {
      max-width: 800px;
      margin: 56px auto 0;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .principle {
      background: #fff;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      border-left: 4px solid var(--teal);
      padding: 30px 36px;
    }
    .principle h3 {
      font-family: 'DM Serif Display', serif;
      font-weight: 400;
      font-size: 21px;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .principle p { font-size: 15.5px; color: #555; line-height: 1.7; }

    /* Credential fact list (the firm) */
    .fact-list {
      max-width: 720px;
      margin: 48px auto 0;
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
    .fact-list li {
      background: #fff;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      padding: 26px 28px;
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }
    .fact-list li strong {
      display: block;
      font-family: 'DM Serif Display', serif;
      font-weight: 400;
      font-size: 26px;
      color: var(--navy);
      margin-bottom: 6px;
    }

    /* Outcome cards (results) */
    .outcome-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }
    .outcome-card {
      background: #fff;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      border-top: 4px solid var(--teal);
      padding: 34px 30px;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .outcome-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
    .outcome-client {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
    }
    .outcome-title {
      font-family: 'DM Serif Display', serif;
      font-weight: 400;
      font-size: 21px;
      color: var(--navy);
      line-height: 1.35;
      margin-bottom: 12px;
    }
    .outcome-body { font-size: 15px; color: #555; line-height: 1.7; }

    /* Footer proof band */
    .footer-proof {
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 36px;
      margin-bottom: 48px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 0;
      text-align: center;
    }
    .footer-proof span {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      padding: 0 22px;
      position: relative;
      white-space: nowrap;
    }
    .footer-proof span strong {
      font-family: 'DM Serif Display', serif;
      font-weight: 400;
      font-size: 18px;
      color: #fff;
      margin-right: 5px;
    }
    .footer-proof span:not(:last-child)::after {
      content: '·';
      position: absolute;
      right: -3px;
      color: var(--teal);
    }

    /* First Mile page */
    .fm-hero-sub { max-width: 560px; }
    .fm-note {
      max-width: 760px;
      margin: 0 auto;
      background: rgba(77,175,168,0.08);
      border: 1px solid rgba(77,175,168,0.35);
      border-radius: var(--radius-card);
      padding: 30px 36px;
      font-size: 16px;
      color: var(--navy);
      line-height: 1.75;
    }
    .fm-partners {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 36px;
    }
    .fm-partner {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 999px;
      padding: 12px 26px;
      font-size: 15px;
      font-weight: 600;
      color: var(--navy);
    }
    .fm-cta-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }
    .btn-secondary {
      display: inline-block;
      background: transparent;
      color: var(--teal);
      padding: 15px 30px;
      border-radius: var(--radius-btn);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border: 2px solid var(--teal);
      transition: background 0.2s, color 0.2s, transform 0.15s;
      cursor: pointer;
      white-space: nowrap;
    }
    .btn-secondary:hover { background: var(--teal); color: #fff; transform: translateY(-1px); }

    /* Prose section (generic centered copy) */
    .prose-narrow {
      max-width: 760px;
      margin: 0 auto;
    }
    .prose-narrow p { font-size: 16.5px; color: #555; line-height: 1.8; margin-bottom: 18px; }
    .prose-narrow p:last-child { margin-bottom: 0; }

    /* Page hero (interior pages) */
    .page-hero {
      background: var(--navy);
      padding: 76px 0 68px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(46,117,182,0.15) 0%, transparent 60%),
                  radial-gradient(ellipse at 10% 80%, rgba(77,175,168,0.08) 0%, transparent 50%);
      pointer-events: none;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .page-hero-eyebrow {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 16px;
    }
    .page-hero h1 {
      font-size: clamp(30px, 4.2vw, 44px);
      color: #fff;
      line-height: 1.18;
      max-width: 780px;
    }
    .page-hero-sub {
      font-size: 17px;
      color: rgba(255,255,255,0.85);
      max-width: 640px;
      line-height: 1.65;
      margin-top: 18px;
    }

    @media (max-width: 900px) {
      .method-grid { grid-template-columns: repeat(2, 1fr); }
      .outcome-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
      .fact-list { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .method-grid { grid-template-columns: 1fr; }
      .proof-item { padding: 0 14px; font-size: 14px; }
      .proof-item strong { font-size: 19px; }
      .proof-item:not(:last-child)::after { display: none; }
      .wws-throughline { padding: 34px 28px; }
      .path-step { gap: 16px; }
      .statement-text { font-size: 17px; }
      .principle { padding: 26px 24px; }
    }
  

  abbr.acronym{border-bottom:1px dashed rgba(77,175,168,0.9);text-decoration:none;cursor:help;}
  .acronym-tt{position:fixed;z-index:99999;max-width:260px;background:#1B2A4A;color:#fff;
    border:1px solid #4DAFA8;border-radius:8px;padding:8px 12px;
    font-family:'Plus Jakarta Sans',sans-serif;font-size:13px;font-weight:500;line-height:1.45;
    letter-spacing:normal;text-transform:none;text-align:left;white-space:normal;
    box-shadow:0 10px 30px rgba(0,0,0,0.28);opacity:0;transform:translateY(4px);
    transition:opacity .15s ease,transform .15s ease;pointer-events:none;}
  .acronym-tt.show{opacity:1;transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){.acronym-tt{transition:none;}}
