
    :root {
      --bg: #f7f9fc;
      --surface: rgba(255,255,255,.78);
      --surface-strong: #ffffff;
      --text: #07111f;
      --muted: #5b687c;
      --border: rgba(14, 30, 53, 0.12);
      --brand: #2563eb;
      --brand-2: #06b6d4;
      --violet: #7c3aed;
      --navy: #081320;
      --shadow: 0 22px 60px rgba(15, 23, 42, .08);
      --radius: 24px;
      color-scheme: light;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(37,99,235,.12), transparent 30%),
        radial-gradient(circle at top right, rgba(124,58,237,.1), transparent 26%),
        linear-gradient(to bottom, #ffffff 0%, #f7f9fc 30%, #eef4fb 100%);
      min-height: 100vh;
    }
    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    .site-shell { position: relative; overflow: hidden; }
    .container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
    .section { padding: 56px 0; }
    .hero-lite { padding-top: 14px; }
    .page-hero, .trust-band, .featured-panel, .panel, .cta-banner, .hero-visual, .contact-form {
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      background: var(--surface-strong);
      border-radius: var(--radius);
    }
    .page-hero {
      padding: 34px 32px;
      background:
        linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.08), rgba(124,58,237,.08));
    }
    .page-hero--split {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 24px;
      align-items: stretch;
      padding: 18px;
      background:
        linear-gradient(135deg, rgba(8,19,32,.94), rgba(13,37,69,.96)),
        radial-gradient(circle at top left, rgba(37,99,235,.18), transparent 34%);
      box-shadow: 0 28px 70px rgba(8,19,32,.18);
    }
    .page-hero__content {
      padding: 16px 14px 18px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #fff;
    }
    .page-hero--split .page-hero__content h1 { color: #fff; }
    .page-hero--split .page-hero__content > p { color: rgba(255,255,255,.78); }
    .page-hero__content .eyebrow { color: rgba(198, 220, 255, .92); }
    .page-hero__content h1 {
      margin: 10px 0 0;
      font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      letter-spacing: -.05em;
      font-size: clamp(2.35rem, 3.9vw, 4.6rem);
      line-height: 1.05;
      max-width: 12ch;
    }
    .page-hero__content > p {
      margin: 18px 0 0;
      color: rgba(255,255,255,.78);
      font-size: 1.06rem;
      line-height: 1.8;
      max-width: 58ch;
    }
    .page-hero__content .breadcrumbs {
      margin-top: 18px;
      color: rgba(220,231,246,.75);
    }
    .page-hero__content .breadcrumbs a { color: #9bc1ff; }
    .page-hero__content .hero-actions { margin-top: 24px; }
    .page-hero__visual {
      position: relative;
      min-height: clamp(320px, 36vw, 430px);
      overflow: hidden;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,.18), transparent 30%),
        linear-gradient(180deg, rgba(8, 19, 32, .08), rgba(8, 19, 32, .24));
    }
    .page-hero__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05) contrast(1.02);
    }
    .page-hero__visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8,19,32,.02), rgba(8,19,32,.34));
      pointer-events: none;
    }
    .page-hero__visual-chip,
    .page-hero__visual-note {
      position: absolute;
      left: 20px;
      z-index: 1;
      border-radius: 999px;
      backdrop-filter: blur(12px);
    }
    .page-hero__visual-chip {
      top: 20px;
      padding: 10px 16px;
      background: rgba(8, 19, 32, .78);
      color: #fff;
      font-size: .82rem;
      letter-spacing: .14em;
      font-weight: 700;
      text-transform: uppercase;
      box-shadow: 0 14px 30px rgba(8,19,32,.18);
    }
    .page-hero__visual-note {
      right: 20px;
      left: auto;
      bottom: 20px;
      max-width: 280px;
      padding: 14px 16px;
      color: #fff;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 16px 30px rgba(8,19,32,.18);
      line-height: 1.55;
    }
    .page-hero h1, .hero-copy h1, .section-heading h2, .cta-banner h2, .panel h2 {
      font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      letter-spacing: -.04em;
      margin: 0;
      color: var(--text);
      text-wrap: balance;
      overflow-wrap: anywhere;
    }
    .featured-article__head h2,
    .featured-article__head p,
    .panel--dark h2,
    .panel--dark p,
    .panel--dark li,
    .mini-panel--dark h3,
    .mini-panel--dark p,
    .mini-panel--dark li,
    .cta-banner h2,
    .cta-banner p {
      color: #fff;
    }
    .featured-article__head p,
    .panel--dark p,
    .mini-panel--dark p,
    .cta-banner p {
      color: rgba(255,255,255,.84);
    }
    .page-hero h1 { font-size: clamp(2.4rem, 4vw, 4.25rem); max-width: 15ch; }
    .page-hero p { margin: 18px 0 0; font-size: 1.05rem; line-height: 1.75; color: var(--muted); max-width: 64ch; }
    .eyebrow {
      margin: 0 0 12px;
      color: var(--brand);
      text-transform: uppercase;
      letter-spacing: .22em;
      font-weight: 700;
      font-size: .78rem;
    }
    .eyebrow--light { color: #c6dcff; }
    .eyebrow-pill {
      display: inline-flex;
      align-items: center;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(37,99,235,.2);
      background: rgba(255,255,255,.9);
      color: #1f55cd;
      font-weight: 700;
      box-shadow: 0 8px 22px rgba(37, 99, 235, .08);
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(255,255,255,.82);
      border-bottom: 1px solid rgba(148,163,184,.24);
    }
    .header-inner {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
    .logo-slot {
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      width: 78px;
      height: 56px;
      border-radius: 8px;
      background: transparent;
    }
    .logo-slot--footer {
      width: 92px;
      height: 64px;
    }
    .logo-slot img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .brand-mark {
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      width: 48px; height: 48px;
      border-radius: 18px;
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-2) 55%, var(--violet));
      box-shadow: 0 18px 40px rgba(37,99,235,.18);
    }
    .brand-mark--logo { background: transparent; box-shadow: none; padding: 0; }
    .brand-mark--logo img { width: 48px; height: 48px; border-radius: 18px; }
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 6px;
      border: 1px solid rgba(148,163,184,.35);
      border-radius: 999px;
      background: rgba(255,255,255,.88);
      box-shadow: 0 10px 20px rgba(15,23,42,.04);
    }
    .desktop-nav a {
      padding: 10px 14px;
      border-radius: 999px;
      font-size: .93rem;
      font-weight: 600;
      color: #526275;
      transition: .25s ease;
    }
    .desktop-nav a:hover, .desktop-nav a[aria-current="page"] {
      background: rgba(37,99,235,.08);
      color: #1d4ed8;
    }
    .header-cta { display: inline-flex; }
    .mobile-nav { display: none; position: relative; }
    .mobile-nav summary {
      list-style: none;
      cursor: pointer;
      width: 46px; height: 46px;
      border-radius: 16px;
      border: 1px solid rgba(148,163,184,.35);
      background: #fff;
      display: grid;
      place-items: center;
      gap: 4px;
      box-shadow: 0 10px 20px rgba(15,23,42,.04);
    }
    .mobile-nav summary::-webkit-details-marker { display: none; }
    .mobile-nav summary span {
      display: block;
      width: 18px; height: 2px;
      background: #0f172a;
      border-radius: 999px;
    }
    .mobile-nav__panel {
      position: absolute;
      right: 0;
      top: 58px;
      min-width: 240px;
      display: grid;
      gap: 6px;
      padding: 12px;
      border-radius: 20px;
      border: 1px solid rgba(148,163,184,.24);
      background: rgba(255,255,255,.96);
      box-shadow: var(--shadow);
    }
    .mobile-nav__panel a { padding: 12px 14px; border-radius: 14px; font-weight: 600; color: #526275; }
    .mobile-nav__panel a.active, .mobile-nav__panel a:hover { background: rgba(37,99,235,.08); color: #1d4ed8; }
    .mobile-nav__cta {
      text-align: center;
      color: #fff !important;
      background: linear-gradient(135deg, var(--navy), var(--brand));
    }
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 8px;
      z-index: 100;
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--navy);
      color: #fff;
    }
    .skip-link:focus { left: 16px; }
    .bg-orb {
      position: absolute;
      z-index: -1;
      filter: blur(24px);
      opacity: .55;
      pointer-events: none;
    }
    .bg-orb--a { width: 320px; height: 320px; left: -110px; top: 100px; background: rgba(37,99,235,.14); border-radius: 50%; }
    .bg-orb--b { width: 360px; height: 360px; right: -140px; top: 300px; background: rgba(124,58,237,.12); border-radius: 50%; }

    .hero { padding-top: 10px; padding-bottom: 18px; }
    .hero-banner {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 24px;
      align-items: stretch;
      padding: 18px;
      border: 1px solid rgba(148,163,184,.18);
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(8,19,32,.92), rgba(17,46,84,.94)),
        radial-gradient(circle at top left, rgba(37,99,235,.18), transparent 32%);
      box-shadow: 0 28px 70px rgba(8,19,32,.18);
    }
    .hero-banner__content {
      padding: 34px 18px 34px 16px;
      color: #fff;
    }
    .hero-banner__content h1 { color: #fff; }
    .hero-banner__content .hero-lead { color: rgba(255,255,255,.78); }
    .hero-banner__content .stat-card {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.14);
      box-shadow: none;
    }
    .hero-banner__content .stat-card span { color: rgba(255,255,255,.64); }
    .hero-banner__content .stat-card strong { color: #fff; }
    .hero-banner__content .eyebrow-pill {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.18);
      color: #fff;
      box-shadow: none;
    }
    .hero-banner__content h1 {
      margin-top: 18px;
      font-size: clamp(2.4rem, 3.6vw, 4.5rem);
      line-height: 1.08;
      max-width: 12ch;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }
    .hero-banner__visual {
      position: relative;
      overflow: hidden;
      min-height: clamp(360px, 38vw, 530px);
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(248,250,252,.1), rgba(255,255,255,.05));
    }
    .hero-banner__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05) contrast(1.02);
    }
    .hero-banner__visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8,19,32,.02), rgba(8,19,32,.3));
      pointer-events: none;
    }
    .hero-banner__badge {
      position: absolute;
      left: 22px;
      bottom: 22px;
      z-index: 1;
      padding: 12px 18px;
      border-radius: 999px;
      background: rgba(8,19,32,.8);
      color: #fff;
      font-size: .84rem;
      letter-spacing: .16em;
      font-weight: 700;
      text-transform: uppercase;
      box-shadow: 0 14px 30px rgba(8,19,32,.18);
    }
    .hero-banner .hero-actions { margin-top: 28px; }
    .hero-banner .stat-grid { margin-top: 28px; }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.04fr .96fr;
      gap: 34px;
      align-items: start;
    }
    .hero-copy h1 {
      margin-top: 18px;
      font-size: clamp(2.3rem, 3.35vw, 4rem);
      line-height: 1.08;
      max-width: 11.5ch;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }
    .hero-lead {
      color: var(--muted);
      font-size: 1.12rem;
      line-height: 1.8;
      max-width: 58ch;
      margin: 22px 0 0;
    }
    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px;
    }
    .stat-grid, .trust-grid { display: grid; gap: 16px; }
    .stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
    .stat-card, .trust-card {
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(148,163,184,.22);
      padding: 18px 18px 16px;
      box-shadow: 0 12px 26px rgba(15,23,42,.04);
    }
    .stat-card span, .trust-card span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: #7c8597; }
    .stat-card strong, .trust-card strong { display: block; margin-top: 10px; font-size: 1.05rem; color: var(--text); }
    .trust-band {
      padding: 28px;
      display: grid;
      gap: 26px;
      grid-template-columns: .9fr 1.1fr;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(37,99,235,.06), rgba(6,182,212,.06), rgba(124,58,237,.06));
    }
    .trust-band h2, .section-heading h2 { font-size: clamp(2rem, 3vw, 3.25rem); line-height: 1.04; }
    .trust-band p { color: var(--muted); margin: 0; }
    .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .section-heading {
      max-width: 860px;
      margin: 0 auto 26px;
      text-align: center;
    }
    .section-heading--left { margin-left: 0; text-align: left; }
    .section-heading h2 { font-size: clamp(2rem, 3vw, 3.1rem); }
    .section-heading p { margin: 14px 0 0; color: var(--muted); font-size: 1.04rem; line-height: 1.8; }

    .card-grid { display: grid; gap: 18px; }
    .card-grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .feature-card, .solution-card, .service-preview, .industry-card, .insight-card, .career-card, .about-card {
      display: block;
      padding: 22px;
      border-radius: 24px;
      border: 1px solid rgba(148,163,184,.22);
      background: #fff;
      box-shadow: 0 12px 24px rgba(15,23,42,.04);
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .feature-card:hover, .solution-card:hover, .service-preview:hover, .industry-card:hover, .insight-card:hover, .career-card:hover, .about-card:hover {
      transform: translateY(-4px);
      border-color: rgba(37,99,235,.28);
      box-shadow: 0 22px 44px rgba(37,99,235,.12);
    }
    .feature-card .icon-badge {
      width: 50px; height: 50px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-2) 55%, var(--violet));
      box-shadow: 0 16px 30px rgba(37,99,235,.18);
    }
    .feature-card h3, .solution-card h3, .service-preview h3, .industry-card h3, .insight-card h2, .career-card h2, .about-card h3 {
      font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      letter-spacing: -.03em;
      margin: 18px 0 0;
      color: var(--text);
      font-size: 1.35rem;
    }
    .feature-card p, .solution-card p, .service-preview p, .industry-card p, .insight-card p, .career-card p, .about-card p {
      color: var(--muted);
      line-height: 1.7;
      margin: 12px 0 0;
      font-size: .98rem;
    }
    .feature-card span { display: inline-flex; margin-top: 18px; color: #1d4ed8; font-weight: 700; }
    .solution-card { overflow: hidden; }
    .solution-card__top {
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--violet));
      opacity: .85;
      margin-bottom: 8px;
    }
    .service-preview { min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; background:
      linear-gradient(180deg, rgba(248,250,252,.7), rgba(255,255,255,.98)); }
    .service-preview__tag { display: inline-flex; align-self: flex-start; padding: 8px 12px; border-radius: 999px; background: rgba(37,99,235,.08); color: #1d4ed8; font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

    .industry-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
    .industry-card--big h2 { margin-top: 0; font-size: 1.25rem; }
    .chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
    .chip {
      display: inline-flex;
      align-items: center;
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(37,99,235,.08);
      color: #1d4ed8;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .chip--soft { background: #f4f7fb; color: #526275; text-transform: none; letter-spacing: 0; font-weight: 600; }
    .chip--light { background: rgba(255,255,255,.1); color: #fff; }
    .chip--link { cursor: pointer; }

    .why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 22px; align-items: start; }
    .why-copy h2 { font-size: clamp(2rem, 3vw, 3rem); margin: 0; font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; letter-spacing: -.04em; }
    .why-copy p { color: var(--muted); line-height: 1.8; }
    .why-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .why-card {
      background: #fff;
      border: 1px solid rgba(148,163,184,.2);
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 12px 24px rgba(15,23,42,.04);
    }

    .cta-banner {
      padding: 34px;
      background: linear-gradient(135deg, var(--navy), #143a68 55%, var(--brand));
      color: #fff;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 20px;
      align-items: center;
    }
    .cta-banner h2 { color: #fff; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.08; margin: 0; }
    .cta-banner p { color: rgba(255,255,255,.85); line-height: 1.8; max-width: 54ch; }
    .cta-banner__actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

    .hero-visual {
      position: relative;
      min-height: clamp(520px, 55vw, 610px);
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(248,250,252,.94), rgba(255,255,255,.98)),
        radial-gradient(circle at 20% 20%, rgba(37,99,235,.10), transparent 22%),
        radial-gradient(circle at 80% 25%, rgba(124,58,237,.10), transparent 18%);
    }
    .hero-visual--art {
      display: block;
      border: 1px solid rgba(148,163,184,.18);
      box-shadow: 0 24px 54px rgba(15,23,42,.08);
    }
    .hero-art {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 100%;
      object-fit: cover;
    }
    .hero-art-float {
      position: absolute;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(148,163,184,.22);
      color: #1d4ed8;
      font-size: .74rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      box-shadow: 0 14px 30px rgba(37,99,235,.08);
    }
    .hero-art-float--a { top: 24px; left: 24px; }
    .hero-art-float--b { right: 26px; top: 74px; }
    .hero-art-float--c { left: 28px; bottom: 28px; }
    .hero-grid {
      position: absolute;
      inset: 0;
      opacity: .55;
      background-image: linear-gradient(rgba(13, 33, 61, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(13, 33, 61, .07) 1px, transparent 1px);
      background-size: 30px 30px;
      mask-image: radial-gradient(circle at center, black 22%, transparent 72%);
    }
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(8px);
      animation: float 8s ease-in-out infinite;
    }
    .orb-a { width: 180px; height: 180px; right: 26px; top: 34px; background: rgba(37,99,235,.12); }
    .orb-b { width: 120px; height: 120px; left: 34px; bottom: 48px; background: rgba(124,58,237,.12); animation-delay: -2s; }
    .hero-chip, .hero-panel {
      position: absolute;
      border-radius: 24px;
      border: 1px solid rgba(148,163,184,.22);
      background: rgba(255,255,255,.84);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
    }
    .hero-chip {
      top: 44px;
      left: 42px;
      max-width: 240px;
      padding: 18px;
    }
    .hero-chip__label { display: block; font-size: .72rem; color: #1d4ed8; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
    .hero-chip__title { display: block; margin-top: 8px; font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }
    .hero-chip__text { display: block; margin-top: 8px; color: var(--muted); line-height: 1.5; font-size: .9rem; }
    .hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(37,99,235,.25); }
    .hero-ring--one { width: 330px; height: 330px; right: 60px; top: 120px; }
    .hero-ring--two { width: 430px; height: 430px; right: -18px; top: 72px; opacity: .55; }
    .hero-node { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--violet)); box-shadow: 0 0 0 10px rgba(37,99,235,.08); }
    .hero-node--one { right: 118px; top: 148px; }
    .hero-node--two { right: 64px; top: 252px; }
    .hero-node--three { right: 180px; top: 304px; }
    .hero-node--four { right: 96px; bottom: 132px; }
    .hero-panel {
      left: 28px;
      right: 28px;
      bottom: 28px;
      padding: 20px;
      box-sizing: border-box;
    }
    .hero-panel__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-weight: 800; }
    .hero-panel__badge { padding: 7px 11px; border-radius: 999px; background: rgba(37,99,235,.08); color: #1d4ed8; font-size: .76rem; text-transform: uppercase; letter-spacing: .16em; }
    .hero-panel__body { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
    .hero-mini-card { border-radius: 18px; background: #fff; border: 1px solid rgba(148,163,184,.2); padding: 14px; }
    .hero-mini-card strong { display: block; color: var(--text); }
    .hero-mini-card span { display: block; margin-top: 6px; color: var(--muted); font-size: .88rem; line-height: 1.5; }

    .solutions-layout, .two-col, .contact-layout, .insights-layout { display: grid; gap: 18px; }
    .solutions-layout, .two-col, .contact-layout, .insights-layout { grid-template-columns: 1.05fr .95fr; }
    .featured-panel { padding: 28px; background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.08), rgba(124,58,237,.08)); }
    .featured-panel__head h2 { font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 0; letter-spacing: -.04em; color: var(--navy); }
    .featured-panel__head p { color: var(--muted); line-height: 1.8; max-width: 64ch; }
    .side-note__box, .topic-rail__box {
      margin-top: 16px;
      padding: 18px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.08), rgba(124,58,237,.08));
    }
    .side-note__box strong, .topic-rail__box strong { display: block; color: var(--text); }
    .side-note__box p, .topic-rail__box p { margin: 8px 0 0; color: var(--muted); line-height: 1.7; }

    .details-list { display: grid; gap: 14px; }
    .details-card {
      border-radius: 24px;
      border: 1px solid rgba(148,163,184,.2);
      background: #fff;
      box-shadow: 0 14px 28px rgba(15,23,42,.04);
      overflow: hidden;
    }
    .details-card summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 24px 24px 18px;
    }
    .details-card summary::-webkit-details-marker { display: none; }
    .details-card summary h2 { font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; margin: 8px 0 0; font-size: 1.6rem; }
    .details-card summary span { color: #1d4ed8; font-weight: 800; }
    .details-card[open] { box-shadow: 0 24px 50px rgba(37,99,235,.12); }
    .details-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; padding: 0 24px 24px; }
    .details-grid h3 { margin: 0 0 10px; font-size: .9rem; color: #1d4ed8; text-transform: uppercase; letter-spacing: .18em; }
    .details-grid p { margin: 0 0 18px; color: var(--muted); line-height: 1.75; }
    .details-side { display: grid; gap: 12px; }
    .mini-panel { border-radius: 20px; background: #f8fafc; padding: 18px; }
    .mini-panel--dark { background: linear-gradient(135deg, var(--navy), #143a68 50%, var(--brand)); color: #fff; }
    .mini-panel--dark p { color: rgba(255,255,255,.84); }
    .mini-panel ul, .bullet-list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.85; }
    .mini-panel--dark ul { color: rgba(255,255,255,.88); }
    .anchor-strip {
      padding: 26px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(148,163,184,.2);
      box-shadow: 0 14px 30px rgba(15,23,42,.04);
      display: grid;
      gap: 16px;
    }
    .anchor-strip h2 { font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; margin: 0; font-size: 1.6rem; }
    .stack { display: grid; gap: 18px; }
    .panel { padding: 26px; }
    .panel--soft { background: linear-gradient(180deg, #ffffff, #f8fafc); }
    .panel--dark { background: linear-gradient(135deg, var(--navy), #12345f 55%, var(--brand)); color: #fff; }
    .panel--dark p { color: rgba(255,255,255,.84); }
    .panel h2 { font-size: clamp(1.8rem, 2.4vw, 2.6rem); margin-bottom: 12px; }
    .subservice-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 18px; }
    .subservice-card {
      background: #f8fafc;
      border-radius: 18px;
      padding: 16px;
      border: 1px solid rgba(148,163,184,.18);
    }
    .subservice-card h3 { margin: 0; font-size: 1rem; color: var(--text); }
    .subservice-card p { margin: 8px 0 0; color: var(--muted); line-height: 1.7; }
    .process-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
    .process-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border-radius: 18px; background: #f8fafc; }
    .process-list li span {
      flex: 0 0 auto;
      width: 34px; height: 34px; border-radius: 50%;
      display: grid; place-items: center;
      color: #fff; font-weight: 800;
      background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--violet));
    }
    .process-list li p { margin: 0; color: var(--text); line-height: 1.7; }
    .process-list--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .process-list--five li { display: block; }
    .process-list--five li span { margin-bottom: 12px; }
    .process-list--compact { grid-template-columns: 1fr; }
    .faq-list details {
      border-radius: 18px;
      background: #f8fafc;
      border: 1px solid rgba(148,163,184,.16);
      padding: 16px 18px;
    }
    .faq-list details + details { margin-top: 10px; }
    .faq-list summary { cursor: pointer; list-style: none; font-weight: 700; }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list p { margin: 12px 0 0; color: var(--muted); line-height: 1.7; }

    .industry-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
    .industry-card--big { min-height: 100%; }
    .about-stack { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .contact-main { display: grid; gap: 18px; }
    .contact-side { display: grid; gap: 18px; }
    .contact-form {
      padding: 24px;
      background: #fff;
    }
    .contact-form label { display: grid; gap: 8px; font-weight: 700; color: #334155; }
    .contact-form span { font-size: .92rem; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .contact-form input, .contact-form select, .contact-form textarea {
      width: 100%;
      border-radius: 18px;
      border: 1px solid rgba(148,163,184,.28);
      background: #f8fafc;
      color: var(--text);
      padding: 14px 15px;
      font: inherit;
      outline: none;
      transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
      border-color: rgba(37,99,235,.45);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(37,99,235,.1);
    }
    .form-trap {
      position: absolute !important;
      left: -10000px !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
    }
    .recaptcha-field {
      min-width: 0;
      margin: 20px 0 0;
      display: grid;
      gap: 8px;
    }
    .recaptcha-field__label {
      color: #334155;
      font-size: .92rem;
      font-weight: 700;
    }
    .recaptcha-field .g-recaptcha {
      min-height: 78px;
    }
    .recaptcha-field__status {
      display: none;
      margin: 0;
      color: #616161;
      font-size: .78rem;
      font-weight: 400;
    }
    .recaptcha-field[data-state="error"] .recaptcha-field__status {
      display: block;
      color: #a4262c;
      font-weight: 600;
    }
    .form-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 18px;
    }
    .form-footer p { margin: 0; color: var(--muted); line-height: 1.6; }
    .form-status {
      margin-top: 16px;
      border-radius: 18px;
      padding: 14px 16px;
      background: rgba(16,185,129,.08);
      color: #047857;
      font-weight: 700;
    }
    .form-status.form-status--error { background: #fff4f4; color: #a4262c; }
    .contact-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .contact-details p { color: var(--muted); line-height: 1.8; }
    .map-placeholder {
      min-height: 260px;
      border-radius: 20px;
      border: 1px dashed rgba(148,163,184,.45);
      background: linear-gradient(135deg, rgba(37,99,235,.05), rgba(6,182,212,.05), rgba(124,58,237,.05));
      display: grid;
      place-items: center;
      color: #6b7280;
      text-align: center;
      padding: 20px;
    }

    .site-footer {
      padding: 56px 0 28px;
      border-top: 1px solid rgba(148,163,184,.2);
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 26%, #f8fafc 100%);
      margin-top: 40px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.15fr .75fr .85fr .95fr .95fr 1fr;
      gap: 20px;
    }
    .footer-brand__inline { display: flex; align-items: center; gap: 12px; }
    .footer-brand p { color: var(--muted); line-height: 1.75; }
    .site-footer h2 {
      margin: 0 0 14px;
      font-size: .82rem;
      text-transform: uppercase;
      letter-spacing: .18em;
      color: var(--text);
    }
    .footer-links { display: grid; gap: 10px; }
    .footer-links a, .footer-contact a, .social-links a { color: #526275; font-size: .96rem; }
    .footer-links a:hover, .footer-contact a:hover, .social-links a:hover { color: #1d4ed8; }
    .footer-contact { display: grid; gap: 10px; color: #526275; }
    .social-links { display: flex; gap: 14px; flex-wrap: wrap; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-top: 34px;
      padding-top: 18px;
      border-top: 1px solid rgba(148,163,184,.18);
      color: #7a8698;
      font-size: .95rem;
    }
    .footer-legal-links {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-legal-links a {
      color: #526275;
      font-size: .95rem;
    }
    .footer-legal-links a:hover { color: #1d4ed8; }
    .legal-layout { max-width: 920px; }
    .legal-panel {
      display: grid;
      gap: 0;
      padding: 34px;
    }
    .legal-panel h2 {
      margin: 30px 0 10px;
      font-size: clamp(1.35rem, 2vw, 1.8rem);
      line-height: 1.2;
    }
    .legal-panel h2:first-child { margin-top: 0; }
    .legal-panel p {
      margin: 0 0 14px;
      color: #404040;
      line-height: 1.75;
    }
    .legal-panel a {
      color: #0067b8;
      font-weight: 600;
    }
    body.cookie-consent-visible {
      padding-bottom: 128px;
    }
    .cookie-consent {
      position: fixed;
      right: 24px;
      bottom: 24px;
      left: 24px;
      z-index: 9998;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      width: min(1120px, calc(100% - 48px));
      margin: 0 auto;
      padding: 18px 20px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 8px;
      background: rgba(8, 19, 32, .94);
      box-shadow: 0 24px 70px rgba(8, 19, 32, .28);
      color: #fff;
      backdrop-filter: blur(18px);
    }
    .cookie-consent[hidden] { display: none; }
    .cookie-consent__content {
      min-width: 0;
      display: grid;
      gap: 5px;
    }
    .cookie-consent__title {
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0;
    }
    .cookie-consent__text {
      margin: 0;
      max-width: 760px;
      color: rgba(255, 255, 255, .78);
      font-size: .92rem;
      line-height: 1.55;
    }
    .cookie-consent__actions {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cookie-consent__button {
      min-height: 42px;
      padding: 10px 16px;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 4px;
      font: inherit;
      font-weight: 700;
      cursor: pointer;
      color: #fff;
      background: transparent;
      transition: background-color .15s ease, border-color .15s ease, color .15s ease;
    }
    .cookie-consent__button:hover {
      border-color: rgba(255, 255, 255, .65);
      background: rgba(255, 255, 255, .08);
    }
    .cookie-consent__button--primary {
      border-color: #3ddff3;
      background: #3ddff3;
      color: #06131f;
    }
    .cookie-consent__button--primary:hover {
      border-color: #7ef2ff;
      background: #7ef2ff;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary { color: #fff; background: linear-gradient(135deg, var(--navy), var(--brand)); box-shadow: 0 14px 28px rgba(37,99,235,.18); }
    .btn-ghost { background: #fff; border-color: rgba(148,163,184,.28); color: var(--text); }
    .btn-light { background: #fff; color: var(--text); }
    .btn-ghost-light { border-color: rgba(255,255,255,.32); color: #fff; background: rgba(255,255,255,.08); }
    .btn-ghost-light:hover { background: rgba(255,255,255,.14); }

    .breadcrumbs { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; color: #6b7280; font-size: .92rem; }
    .breadcrumbs a { color: #1d4ed8; }
    .hero-note { color: #1d4ed8 !important; font-weight: 700; }
    .service-hero-card {
      min-height: 380px;
      border-radius: 28px;
      border: 1px solid rgba(148,163,184,.22);
      background:
        radial-gradient(circle at 20% 20%, rgba(37,99,235,.18), transparent 25%),
        radial-gradient(circle at 80% 25%, rgba(124,58,237,.18), transparent 24%),
        linear-gradient(180deg, rgba(248,250,252,.95), rgba(255,255,255,.98));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      display: grid;
      place-items: center;
    }
    .service-hero-card__visual { position: relative; width: 100%; height: 100%; min-height: clamp(320px, 36vw, 380px); overflow: hidden; }
    .service-hero-card__art {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 100%;
      object-fit: cover;
    }
    .service-chip {
      position: absolute;
      left: 34px;
      bottom: 28px;
      right: 34px;
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(255,255,255,.86);
      border: 1px solid rgba(148,163,184,.22);
      box-shadow: var(--shadow);
      font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 1.15rem;
      text-align: center;
      max-width: calc(100% - 68px);
      line-height: 1.45;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }

    .featured-article, .topic-rail {
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(148,163,184,.22);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .featured-article__head { padding: 28px; background: linear-gradient(135deg, var(--navy), #143a68 55%, var(--brand)); color: #fff; }
    .featured-article__head h2, .topic-rail h2, .page-hero h1, .panel h2, .featured-panel__head h2 { font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif; letter-spacing: -.04em; }
    .featured-article__head p { color: rgba(255,255,255,.84); line-height: 1.8; }
    .featured-article .chip-row { padding: 22px 28px 28px; }
    .topic-rail { padding: 26px; }
    .topic-rail__box { margin-top: 18px; }

    .section-heading--center { margin-left: auto; margin-right: auto; }
    .section-heading--left { text-align: left; }

    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @media (max-width: 1180px) {
      .card-grid-5, .industry-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .hero-banner, .hero-grid, .trust-band, .solutions-layout, .two-col, .contact-layout, .insights-layout, .why-grid, .cta-banner, .page-hero--split { grid-template-columns: 1fr; }
      .hero-copy h1 { max-width: 100%; }
      .hero-visual { min-height: 520px; }
      .hero-banner { padding: 14px; }
      .hero-banner__content { padding: 24px 10px 18px; }
      .hero-banner__visual { min-height: 320px; }
      .solutions-layout, .two-col, .contact-layout, .insights-layout { gap: 20px; }
      .page-hero--split { gap: 16px; padding: 14px; }
      .page-hero__content { padding: 10px 8px 12px; }
      .page-hero__visual { min-height: 300px; }
      .why-cards, .stat-grid, .trust-grid, .contact-stats, .about-stack, .card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .subservice-grid, .card-grid-3, .card-grid-2, .process-list--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .details-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 720px) {
      .container { width: min(100% - 22px, 1180px); }
      .section { padding: 40px 0; }
      .desktop-nav, .header-cta { display: none; }
      .mobile-nav { display: block; }
      .header-inner { min-height: 76px; }
      .page-hero, .trust-band, .featured-panel, .panel, .cta-banner, .contact-form, .hero-visual { border-radius: 22px; }
      .hero-banner { padding: 12px; border-radius: 22px; }
      .hero-banner__visual { min-height: 300px; border-radius: 18px; }
      .hero-banner__badge { left: 14px; bottom: 14px; font-size: .72rem; }
      .page-hero--split { padding: 12px; }
      .page-hero__visual { min-height: 270px; border-radius: 18px; }
      .page-hero__visual-note { max-width: 220px; left: 14px; right: 14px; bottom: 14px; }
      .hero-copy h1 { max-width: 100%; }
      .hero-panel__body, .grid-2, .subservice-grid, .card-grid-3, .card-grid-2, .card-grid-4, .card-grid-5, .industry-grid, .stat-grid, .trust-grid, .why-cards, .contact-stats, .about-stack, .footer-grid, .process-list--five { grid-template-columns: 1fr; }
      .hero-visual { min-height: 540px; }
      .feature-card, .solution-card, .service-preview, .industry-card, .insight-card, .career-card, .about-card { padding: 20px; }
      .cta-banner, .featured-panel, .featured-article__head { padding: 22px; }
      .form-footer, .footer-bottom { flex-direction: column; align-items: flex-start; }
      body.cookie-consent-visible { padding-bottom: 260px; }
      .cookie-consent {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: calc(100% - 24px);
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
      }
      .cookie-consent__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
      }
      .cookie-consent__button { width: 100%; }
      .page-hero h1, .hero-copy h1 { line-height: 1.08; }
    }

    /* Microsoft-inspired enterprise visual system */
    :root {
      --bg: #ffffff;
      --surface: #ffffff;
      --surface-strong: #ffffff;
      --text: #1a1a1a;
      --muted: #505050;
      --border: #d9d9d9;
      --brand: #0067b8;
      --brand-2: #0078d4;
      --violet: #0067b8;
      --navy: #002050;
      --shadow: 0 2px 8px rgba(0, 0, 0, .12);
      --radius: 2px;
    }

    body {
      background: #fff;
      color: var(--text);
      font-size: 16px;
      line-height: 1.5;
    }
    .site-shell { overflow: clip; }
    .bg-orb { display: none; }
    .container { width: min(1280px, calc(100% - 48px)); }
    .section { padding: 72px 0; }
    main > .section:nth-child(even) { background: #f2f2f2; }
    main > .section.hero,
    main > .section.hero-lite { background: #fff; }

    .site-header {
      position: sticky;
      min-height: 64px;
      background: #fff;
      backdrop-filter: none;
      border-bottom: 1px solid #e6e6e6;
      box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
    }
    .header-inner { min-height: 64px; gap: 28px; }
    .brand { flex: 0 0 86px; min-width: 86px; }
    .logo-slot {
      width: 78px;
      height: 56px;
      border-radius: 4px;
      background: transparent;
    }
    .logo-slot--footer {
      width: 92px;
      height: 64px;
    }
    .brand-mark,
    .brand-mark--logo,
    .brand-mark--logo img {
      width: 40px;
      height: 40px;
      border-radius: 0;
    }
    .desktop-nav {
      flex: 1;
      justify-content: flex-start;
      gap: 22px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .desktop-nav a {
      position: relative;
      padding: 22px 0 19px;
      border-radius: 0;
      color: #262626;
      font-size: .9rem;
      font-weight: 400;
    }
    .desktop-nav a:hover,
    .desktop-nav a[aria-current="page"] { background: transparent; color: #000; }
    .desktop-nav a:hover::after,
    .desktop-nav a[aria-current="page"]::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 15px;
      left: 0;
      height: 2px;
      background: #0067b8;
    }
    .header-cta .btn { min-height: 40px; padding: 10px 18px; }

    .btn {
      min-height: 44px;
      padding: 11px 22px;
      border-radius: 2px;
      border-width: 2px;
      box-shadow: none;
      font-weight: 600;
      transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
    }
    .btn:hover { transform: none; }
    .btn-primary { background: #0067b8; border-color: #0067b8; color: #fff; }
    .btn-primary:hover { background: #005a9e; border-color: #005a9e; }
    .btn-ghost { background: transparent; border-color: #0067b8; color: #0067b8; }
    .btn-ghost:hover { background: #f2f2f2; color: #005a9e; }

    .hero { padding: 0; }
    .hero .container { width: min(1440px, 100%); }
    .hero-banner {
      grid-template-columns: minmax(430px, .86fr) minmax(520px, 1.14fr);
      gap: 0;
      min-height: 610px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: #f2f2f2;
      box-shadow: none;
    }
    .hero-banner__content {
      order: 1;
      padding: 72px clamp(42px, 6vw, 88px);
      color: #1a1a1a;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-banner__visual { order: 2; min-height: 610px; border-radius: 0; }
    .hero-banner__visual::after { background: linear-gradient(90deg, rgba(0,0,0,.08), transparent 22%); }
    .hero-banner__content h1 {
      max-width: 14ch;
      margin-top: 20px;
      color: #1a1a1a;
      font-size: clamp(2.55rem, 3.7vw, 4.1rem);
      line-height: 1.04;
      letter-spacing: -.035em;
      font-weight: 600;
    }
    .hero-banner__content .hero-lead {
      max-width: 55ch;
      margin-top: 24px;
      color: #404040;
      font-size: 1.12rem;
      line-height: 1.6;
    }
    .hero-banner__content .eyebrow-pill {
      align-self: flex-start;
      padding: 0 0 8px;
      border: 0;
      border-bottom: 3px solid #0067b8;
      border-radius: 0;
      background: transparent;
      color: #0067b8;
      font-size: .95rem;
      box-shadow: none;
    }
    .hero-banner__badge {
      left: 24px;
      bottom: 24px;
      padding: 10px 14px;
      border-radius: 0;
      background: #0067b8;
      box-shadow: none;
      letter-spacing: .06em;
      text-transform: none;
    }
    .hero-banner .stat-grid { display: none; }

    .hero-lite { padding: 0; }
    .hero-lite .container { width: min(1440px, 100%); }
    .page-hero,
    .page-hero--split {
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }
    .page-hero--split {
      grid-template-columns: minmax(440px, .9fr) minmax(500px, 1.1fr);
      gap: 0;
      min-height: 500px;
      padding: 0;
      background: #f2f2f2;
    }
    .page-hero__content {
      padding: 64px clamp(38px, 6vw, 84px);
      color: #1a1a1a;
    }
    .page-hero--split .page-hero__content h1 { color: #1a1a1a; }
    .page-hero--split .page-hero__content > p { color: #505050; }
    .page-hero__content .eyebrow { color: #0067b8; }
    .page-hero__content h1,
    .page-hero h1 {
      max-width: 14ch;
      font-size: clamp(2.6rem, 4vw, 4.5rem);
      line-height: 1.05;
      font-weight: 600;
      letter-spacing: -.035em;
    }
    .page-hero__content > p { line-height: 1.65; }
    .page-hero__content .breadcrumbs { color: #505050; }
    .page-hero__content .breadcrumbs a { color: #0067b8; }
    .page-hero__visual { min-height: 500px; border: 0; border-radius: 0; }
    .page-hero__visual-chip { border-radius: 0; background: #0067b8; letter-spacing: .06em; text-transform: none; }
    .page-hero__visual-note { display: none; }

    .eyebrow {
      margin-bottom: 14px;
      color: #0067b8;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .12em;
    }
    .section-heading { max-width: 780px; margin-bottom: 36px; }
    .section-heading h2,
    .trust-band h2,
    .why-copy h2,
    .cta-banner h2,
    .panel h2 {
      font-weight: 600;
      letter-spacing: -.025em;
      line-height: 1.15;
    }
    .section-heading h2,
    .trust-band h2 { font-size: clamp(2rem, 3vw, 3rem); }
    .section-heading p { line-height: 1.65; }

    .trust-band {
      grid-template-columns: .9fr 1.1fr;
      gap: 56px;
      padding: 48px;
      border: 0;
      border-left: 5px solid #0067b8;
      border-radius: 0;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    }
    .trust-card,
    .stat-card {
      padding: 18px 0;
      border: 0;
      border-top: 1px solid #d9d9d9;
      border-radius: 0;
      box-shadow: none;
      background: transparent;
    }
    .trust-card span,
    .stat-card span { color: #606060; letter-spacing: .08em; }

    .card-grid { gap: 24px; }
    .feature-card,
    .solution-card,
    .service-preview,
    .industry-card,
    .insight-card,
    .career-card,
    .about-card,
    .panel,
    .featured-panel,
    .contact-form,
    .featured-article,
    .topic-rail,
    .why-card,
    .mini-panel,
    .details-card,
    .process-card,
    .faq-item {
      border: 1px solid #d9d9d9;
      border-radius: 2px;
      background: #fff;
      box-shadow: none;
    }
    .feature-card,
    .solution-card,
    .service-preview,
    .industry-card,
    .insight-card,
    .career-card,
    .about-card { padding: 28px; }
    .feature-card:hover,
    .solution-card:hover,
    .service-preview:hover,
    .industry-card:hover,
    .insight-card:hover,
    .career-card:hover,
    .about-card:hover {
      transform: none;
      border-color: #a6a6a6;
      box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    }
    .feature-card .icon-badge {
      width: 48px;
      height: 48px;
      border-radius: 0;
      background: #0067b8;
      box-shadow: none;
    }
    .feature-card h3,
    .solution-card h3,
    .service-preview h3,
    .industry-card h3,
    .insight-card h2,
    .career-card h2,
    .about-card h3 { font-weight: 600; letter-spacing: -.015em; }
    .feature-card p,
    .solution-card p,
    .service-preview p,
    .industry-card p,
    .insight-card p,
    .career-card p,
    .about-card p { line-height: 1.6; }
    .solution-card__top { height: 4px; margin: -28px -28px 24px; border-radius: 0; background: #0067b8; }
    .service-preview { min-height: 220px; background: #fff; }
    .service-preview__tag,
    .chip,
    .service-chip,
    .hero-panel__badge {
      border-radius: 0;
      background: #e6f2fb;
      color: #005a9e;
      letter-spacing: .06em;
    }
    .why-card { border-left: 4px solid #0067b8; padding: 22px; }

    .cta-banner {
      padding: 52px;
      border: 0;
      border-radius: 0;
      background: #0067b8;
      box-shadow: none;
    }
    .cta-banner .eyebrow { display: none; }
    .cta-banner p { line-height: 1.6; }
    .btn-light { color: #005a9e; border-color: #fff; background: #fff; }
    .btn-ghost-light { color: #fff; border-color: #fff; background: transparent; }

    .site-footer { background: #f2f2f2; border-top: 1px solid #d9d9d9; }
    .footer-grid { padding-top: 48px; }
    .footer-bottom { border-top-color: #d9d9d9; }
    .footer-links a,
    .footer-contact a,
    .social-links a,
    .footer-contact,
    .footer-brand p { color: #616161; }

    .blog-index-hero {
      background: #002050;
      color: #fff;
    }
    .blog-index-hero__inner {
      min-height: 470px;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 64px;
      align-items: center;
      padding-top: 64px;
      padding-bottom: 64px;
    }
    .blog-index-hero .eyebrow { color: #7fc6ff; }
    .blog-index-hero h1 {
      max-width: 13ch;
      margin: 0;
      font-size: clamp(3rem, 5.5vw, 5.6rem);
      line-height: 1;
      letter-spacing: -.045em;
      font-weight: 600;
    }
    .blog-index-hero p:not(.eyebrow) {
      max-width: 60ch;
      margin: 24px 0 0;
      color: rgba(255,255,255,.78);
      font-size: 1.15rem;
      line-height: 1.65;
    }
    .blog-index-hero__signal {
      min-height: 290px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 36px;
      border-left: 8px solid #50e6ff;
      background: #0067b8;
      overflow: hidden;
    }
    .blog-index-hero__signal span {
      display: block;
      font-size: clamp(2.25rem, 4.5vw, 4.5rem);
      font-weight: 600;
      letter-spacing: -.045em;
      line-height: .94;
    }
    .blog-index-hero__signal span:nth-child(2) { color: #50e6ff; }
    .blog-index-hero__signal span:nth-child(3) { color: rgba(255,255,255,.58); }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }
    .blog-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .blog-card {
      display: grid;
      grid-template-rows: 190px 1fr;
      min-width: 0;
      border: 1px solid #d9d9d9;
      background: #fff;
      transition: box-shadow .18s ease, transform .18s ease;
    }
    .blog-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 22px rgba(0,0,0,.14);
    }
    .blog-card__visual {
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 24px;
      overflow: hidden;
      background: #0067b8;
      color: #fff;
    }
    .blog-card__visual::before,
    .blog-card__visual::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 50%;
    }
    .blog-card__visual::before { width: 190px; height: 190px; right: -38px; top: -76px; }
    .blog-card__visual::after { width: 110px; height: 110px; right: 42px; top: 30px; }
    .blog-card--2 .blog-card__visual { background: #005a9e; }
    .blog-card--3 .blog-card__visual { background: #107c10; }
    .blog-card--4 .blog-card__visual { background: #004e8c; }
    .blog-card__visual span {
      position: relative;
      z-index: 1;
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: -.03em;
    }
    .blog-card__body { display: flex; flex-direction: column; align-items: flex-start; padding: 28px; }
    .article-meta,
    .article-byline {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 18px;
      color: #616161;
      font-size: .82rem;
    }
    .article-meta span:first-child { color: #0067b8; font-weight: 600; }
    .blog-card h2 {
      margin: 18px 0 0;
      font-size: clamp(1.35rem, 2.2vw, 1.9rem);
      line-height: 1.18;
      letter-spacing: -.025em;
      font-weight: 600;
    }
    .blog-card h2 a:hover { text-decoration: underline; text-decoration-color: #0067b8; text-underline-offset: 4px; }
    .blog-card p { margin: 15px 0 0; color: #505050; line-height: 1.62; }
    .text-link { display: inline-flex; gap: 8px; margin-top: auto; padding-top: 22px; color: #0067b8; font-weight: 600; }
    .text-link:hover { text-decoration: underline; }
    .blog-featured .blog-card { grid-template-columns: .85fr 1.15fr; grid-template-rows: minmax(350px, auto); }
    .blog-featured .blog-card__visual { min-height: 350px; }
    .blog-featured .blog-card__visual span { font-size: clamp(2.4rem, 5vw, 4.7rem); max-width: 7ch; line-height: .96; }
    .blog-featured .blog-card__body { justify-content: center; padding: clamp(32px, 5vw, 62px); }
    .blog-featured .blog-card h2 { font-size: clamp(2rem, 3.6vw, 3.5rem); }
    .section-link-row { margin-top: 34px; }

    .article-hero { background: #f2f2f2; border-bottom: 1px solid #d9d9d9; }
    .article-hero__inner {
      min-height: 560px;
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 64px;
      align-items: center;
      padding-top: 64px;
      padding-bottom: 64px;
    }
    .breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; color: #616161; font-size: .86rem; }
    .breadcrumbs a { color: #0067b8; }
    .breadcrumbs a:hover { text-decoration: underline; }
    .article-hero h1 {
      max-width: 15ch;
      margin: 0;
      font-size: clamp(2.8rem, 5vw, 5.3rem);
      line-height: 1;
      letter-spacing: -.045em;
      font-weight: 600;
    }
    .article-deck { max-width: 66ch; margin: 24px 0 0; color: #505050; font-size: 1.16rem; line-height: 1.65; }
    .article-byline { margin-top: 28px; padding-top: 20px; border-top: 1px solid #c8c8c8; }
    .article-hero__signal {
      min-height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 36px;
      background: #0067b8;
      color: #fff;
    }
    .article-hero--2 .article-hero__signal { background: #005a9e; }
    .article-hero--3 .article-hero__signal { background: #107c10; }
    .article-hero--4 .article-hero__signal { background: #004e8c; }
    .article-hero__number { margin-bottom: auto; color: rgba(255,255,255,.65); font-size: 4rem; font-weight: 300; }
    .article-hero__signal strong { font-size: clamp(2.2rem, 4vw, 4rem); line-height: .98; letter-spacing: -.04em; }
    .article-hero__signal > span:last-child { margin-top: 18px; letter-spacing: .14em; font-size: .74rem; }

    .article-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 760px);
      justify-content: center;
      gap: 72px;
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .article-sidebar { align-self: start; position: sticky; top: 96px; }
    .article-sidebar > strong { display: block; padding-bottom: 14px; border-bottom: 2px solid #0067b8; }
    .article-sidebar nav { display: grid; }
    .article-sidebar nav a { padding: 12px 0; border-bottom: 1px solid #e0e0e0; color: #505050; font-size: .9rem; line-height: 1.35; }
    .article-sidebar nav a:hover { color: #0067b8; }
    .article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
    .article-tags span { padding: 6px 9px; background: #e6f2fb; color: #005a9e; font-size: .75rem; }
    .article-content { min-width: 0; }
    .article-intro {
      margin: 0 0 54px;
      padding-left: 24px;
      border-left: 5px solid #0067b8;
      color: #333;
      font-size: 1.3rem;
      line-height: 1.65;
    }
    .article-content > section { scroll-margin-top: 90px; margin-top: 54px; }
    .article-content > section:first-of-type { margin-top: 0; }
    .article-content h2 { margin: 0 0 20px; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.18; letter-spacing: -.025em; font-weight: 600; }
    .article-content p { margin: 0 0 20px; color: #333; font-size: 1.06rem; line-height: 1.8; }
    .article-faq { margin-top: 72px !important; padding-top: 48px; border-top: 1px solid #d9d9d9; }
    .article-faq details { border-bottom: 1px solid #d9d9d9; }
    .article-faq summary { cursor: pointer; padding: 22px 32px 22px 0; font-size: 1.05rem; font-weight: 600; }
    .article-faq details p { padding: 0 24px 20px 0; color: #505050; }
    .article-advisory { margin-top: 48px; padding: 24px; border-left: 5px solid #0067b8; background: #f2f2f2; }
    .article-advisory strong { display: block; margin-bottom: 8px; }
    .article-advisory p { margin: 0; font-size: .94rem; line-height: 1.6; }
    .related-articles { background: #f2f2f2; }

    .motion-ready .hero-banner__content > *,
    .motion-ready .page-hero__content > *,
    .motion-ready .blog-index-hero__content > *,
    .motion-ready .article-hero__content > *,
    .motion-ready .hero-banner__visual,
    .motion-ready .page-hero__visual,
    .motion-ready .blog-index-hero__signal,
    .motion-ready .article-hero__signal {
      opacity: 0;
      transform: translateY(18px);
      animation: motionRise .72s cubic-bezier(.2, .72, .18, 1) forwards;
    }
    .motion-ready .hero-banner__content > :nth-child(2),
    .motion-ready .page-hero__content > :nth-child(2),
    .motion-ready .blog-index-hero__content > :nth-child(2),
    .motion-ready .article-hero__content > :nth-child(2) { animation-delay: .08s; }
    .motion-ready .hero-banner__content > :nth-child(3),
    .motion-ready .page-hero__content > :nth-child(3),
    .motion-ready .blog-index-hero__content > :nth-child(3),
    .motion-ready .article-hero__content > :nth-child(3) { animation-delay: .16s; }
    .motion-ready .hero-banner__content > :nth-child(4),
    .motion-ready .page-hero__content > :nth-child(4),
    .motion-ready .blog-index-hero__content > :nth-child(4),
    .motion-ready .article-hero__content > :nth-child(4) { animation-delay: .24s; }
    .motion-ready .hero-banner__visual,
    .motion-ready .page-hero__visual,
    .motion-ready .blog-index-hero__signal,
    .motion-ready .article-hero__signal { animation-delay: .18s; }

    .motion-ready .reveal-on-scroll {
      opacity: 0;
      transform: translateY(22px);
      transition:
        opacity .62s cubic-bezier(.2, .72, .18, 1),
        transform .62s cubic-bezier(.2, .72, .18, 1),
        box-shadow .22s ease,
        border-color .22s ease,
        background-color .22s ease;
      transition-delay: var(--motion-delay, 0ms);
      will-change: opacity, transform;
    }
    .motion-ready .reveal-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .feature-card,
    .solution-card,
    .service-preview,
    .industry-card,
    .insight-card,
    .career-card,
    .about-card,
    .blog-card {
      transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background-color .22s ease;
    }
    .feature-card:hover,
    .solution-card:hover,
    .service-preview:hover,
    .industry-card:hover,
    .insight-card:hover,
    .career-card:hover,
    .about-card:hover,
    .blog-card:hover {
      transform: translateY(-4px);
      border-color: #8f8f8f;
      box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
    }
    .hero-banner__visual img,
    .page-hero__visual img,
    .blog-card__visual,
    .blog-card__visual img {
      transition: transform .7s cubic-bezier(.2, .72, .18, 1);
    }
    .hero-banner__visual:hover img,
    .page-hero__visual:hover img,
    .blog-card:hover .blog-card__visual,
    .blog-card:hover .blog-card__visual img {
      transform: scale(1.025);
    }
    .desktop-nav a::after {
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
    }
    .desktop-nav a:hover::after,
    .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
    .btn {
      transition:
        transform .18s ease,
        background-color .15s ease,
        color .15s ease,
        border-color .15s ease,
        box-shadow .18s ease;
    }
    .btn:hover { transform: translateY(-1px); }

    @keyframes motionRise {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .motion-ready .hero-banner__content > *,
      .motion-ready .page-hero__content > *,
      .motion-ready .blog-index-hero__content > *,
      .motion-ready .article-hero__content > *,
      .motion-ready .hero-banner__visual,
      .motion-ready .page-hero__visual,
      .motion-ready .blog-index-hero__signal,
      .motion-ready .article-hero__signal,
      .motion-ready .reveal-on-scroll {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
      }
      .feature-card:hover,
      .solution-card:hover,
      .service-preview:hover,
      .industry-card:hover,
      .insight-card:hover,
      .career-card:hover,
      .about-card:hover,
      .blog-card:hover,
      .btn:hover,
      .hero-banner__visual:hover img,
      .page-hero__visual:hover img,
      .blog-card:hover .blog-card__visual,
      .blog-card:hover .blog-card__visual img {
        transform: none;
      }
    }

    @media (max-width: 1180px) {
      .hero-banner,
      .page-hero--split { grid-template-columns: 1fr 1fr; }
      .hero-banner__content,
      .page-hero__content { padding: 52px 36px; }
      .hero-banner__content h1 { font-size: clamp(2.35rem, 4.7vw, 3.8rem); }
      .blog-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .article-hero__inner { gap: 36px; }
    }

    @media (max-width: 860px) {
      .container { width: min(100% - 32px, 1280px); }
      .desktop-nav,
      .header-cta { display: none; }
      .mobile-nav { display: block; }
      .header-inner { min-height: 60px; }
      .mobile-nav summary,
      .mobile-nav__panel,
      .mobile-nav__panel a { border-radius: 0; }
      .hero-banner,
      .page-hero--split { grid-template-columns: 1fr; min-height: auto; }
      .hero-banner__content,
      .page-hero__content { padding: 48px 28px; }
      .hero-banner__visual,
      .page-hero__visual { min-height: 380px; }
      .trust-band { grid-template-columns: 1fr; gap: 24px; padding: 32px; }
      .blog-index-hero__inner,
      .article-hero__inner { grid-template-columns: 1fr; gap: 32px; }
      .blog-index-hero__signal { min-height: 220px; }
      .article-hero__signal { min-height: 260px; }
      .article-layout { grid-template-columns: 1fr; gap: 40px; }
      .article-sidebar { position: static; }
      .article-sidebar nav { display: none; }
    }

    @media (max-width: 720px) {
      .container { width: min(100% - 24px, 1280px); }
      .section { padding: 52px 0; }
      .hero,
      .hero-lite { padding: 0; }
      .hero .container,
      .hero-lite .container { width: 100%; }
      .hero-banner { padding: 0; border-radius: 0; }
      .hero-banner__content,
      .page-hero__content { padding: 42px 24px; }
      .hero-banner__visual,
      .page-hero__visual { order: 1; }
      .hero-banner__content,
      .page-hero__content { order: 2; }
      .hero-banner__content h1,
      .page-hero__content h1,
      .page-hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
      .hero-banner__visual,
      .page-hero__visual { min-height: 270px; border-radius: 0; }
      .hero-banner__badge { left: 16px; bottom: 16px; }
      .trust-band,
      .cta-banner,
      .featured-panel,
      .featured-article__head { padding: 28px 24px; }
      .page-hero,
      .trust-band,
      .featured-panel,
      .panel,
      .cta-banner,
      .contact-form,
      .hero-visual { border-radius: 0; }
      .blog-index-hero__inner,
      .article-hero__inner { min-height: 0; padding-top: 48px; padding-bottom: 48px; }
      .blog-index-hero h1,
      .article-hero h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
      .blog-index-hero__signal { min-height: 180px; padding: 24px; }
      .blog-grid,
      .blog-grid--related { grid-template-columns: 1fr; }
      .blog-featured .blog-card { grid-template-columns: 1fr; grid-template-rows: 220px auto; }
      .blog-featured .blog-card__visual { min-height: 220px; }
      .blog-card { grid-template-rows: 170px 1fr; }
      .article-hero__signal { min-height: 220px; padding: 24px; }
      .article-layout { padding-top: 52px; padding-bottom: 52px; }
      .article-intro { padding-left: 18px; font-size: 1.14rem; }
    }
  
