 :root {
      --orange: #ff5a00;
      --orange-2: #ff7a00;
      --orange-soft: #fff4ed;
      --navy: #0f172a;
      --navy-2: #111827;
      --slate: #64748b;
      --slate-2: #475569;
      --muted: #94a3b8;
      --line: #e6ebf2;
      --line-soft: #f0f3f8;
      --blue: #2563eb;
      --blue-soft: #eff6ff;
      --green: #16a34a;
      --white: #ffffff;
      --shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
      --soft-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
      --radius: 13px;
      --container: 1072px;
      --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
      --font-body: "Inter", "Poppins", "Segoe UI", Arial, sans-serif;
      --body-color: #374151;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      color: var(--body-color);
      background:
        radial-gradient(circle at 82% 18%, rgba(226, 232, 240, 0.85) 0 1px, transparent 1px) 0 0 / 13px 13px,
        linear-gradient(180deg, #ffffff 0%, #f8fafc 58%, #ffffff 100%);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3 {
      font-family: var(--font-heading);
      color: #111827;
    }

    h2 {
      font-size: 32px;
      line-height: 40px;
      font-weight: 600;
    }

    h3 {
      font-size: 24px;
      line-height: 32px;
      font-weight: 500;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    .site-shell {
      min-height: 100vh;
      background:
        radial-gradient(circle at 86% 28%, rgba(37, 99, 235, 0.05) 0, rgba(37, 99, 235, 0) 235px),
        radial-gradient(circle at 58% 8%, rgba(255, 122, 0, 0.06) 0, rgba(255, 122, 0, 0) 210px);
    }

    .container {
      width: min(var(--container), calc(100% - 70px));
      margin: 0 auto;
    }

    .site-header {
      height: 104px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(16px);
      position: relative;
      z-index: 20;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
    }

    .brand {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
      margin-top: -2px;
    }

    .brand svg {
      width: 222px;
      height: auto;
      display: block;
    }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex: 1;
      min-width: 0;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      color: #0f172a;
      font-size: 13px;
      line-height: 1;
      font-weight: 650;
      white-space: nowrap;
      letter-spacing: -0.01em;
    }

    .nav-link.active {
      color: var(--orange);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 34px;
      height: 2px;
      border-radius: 99px;
      background: var(--orange);
    }

    .nav-link svg {
      width: 12px;
      height: 12px;
      stroke-width: 3;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      height: 39px;
      min-width: 118px;
      padding: 0 18px;
      border-radius: 5px;
      background: var(--orange);
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      border: 0;
      box-shadow: 0 10px 20px rgba(255, 90, 0, 0.18);
      cursor: pointer;
    }

    .header-cta svg,
    .btn svg,
    .text-cta svg {
      width: 16px;
      height: 16px;
      stroke-width: 2.4;
    }

    .menu-toggle {
      display: none;
      border: 1px solid var(--line);
      background: #fff;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      color: var(--navy);
    }

    .menu-toggle svg {
      width: 22px;
      height: 22px;
    }

    .hero {
      position: relative;
      padding: 18px 0 0;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 45% 55%;
      align-items: center;
      min-height: 330px;
    }

    .hero-copy {
      position: relative;
      z-index: 4;
      padding-top: 4px;
    }

    .eyebrow {
      margin: 0 0 16px;
      color: var(--navy);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .eyebrow span {
      color: var(--orange);
    }

    h1 {
      margin: 0 0 20px;
      max-width: 500px;
      font-size: 48px;
      line-height: 56px;
      font-weight: 700;
    }

    h1 .accent {
      color: var(--orange);
    }

    .hero-text {
      margin: 0;
      max-width: 470px;
      color: var(--body-color);
      font-size: 16px;
      line-height: 24px;
    }

    .hero-actions {
      display: flex;
      gap: 15px;
      margin-top: 22px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 13px;
      min-height: 43px;
      padding: 0 20px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 750;
      letter-spacing: -0.01em;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      cursor: pointer;
    }

    .btn-primary {
      border: 1px solid var(--orange);
      color: #fff;
      background: var(--orange);
      box-shadow: 0 14px 24px rgba(255, 90, 0, 0.17);
    }

    .btn-outline {
      color: var(--navy);
      border: 1.4px solid var(--orange);
      background: rgba(255, 255, 255, 0.82);
    }

    .btn:hover,
    .header-cta:hover,
    .text-cta:hover {
      transform: translateY(-1px);
    }

    .hero-visual {
      position: relative;
      min-height: 332px;
      overflow: visible;
      isolation: isolate;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 10px 0 0 -55px;
      z-index: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.2) 26%, rgba(255,255,255,0.15) 100%),
        radial-gradient(circle at 62% 38%, rgba(255,255,255,0.94) 0 118px, rgba(255,255,255,0.52) 118px 172px, transparent 173px),
        linear-gradient(180deg, rgba(241,245,249,0.02), rgba(241,245,249,0.46));
      border-radius: 22px;
    }

    .skyline {
      position: absolute;
      z-index: 0;
      left: -80px;
      bottom: 11px;
      width: 100%;
      height: 230px;
      opacity: 0.17;
      color: #94a3b8;
    }

    .orbit-svg {
      position: absolute;
      z-index: 1;
      left: 40px;
      top: 6px;
      width: 560px;
      height: 288px;
      pointer-events: none;
      overflow: visible;
    }

    .team-scene {
      position: absolute;
      z-index: 2;
      right: 16px;
      top: 22px;
      width: min(660px, 100%);
      height: 300px;
    }

    .person-illustration {
      position: absolute;
      right: 20px;
      top: 6px;
      width: 506px;
      height: 306px;
      overflow: visible;
      filter: drop-shadow(0 20px 26px rgba(15, 23, 42, 0.12));
    }

    .hero-photo-glow {
      position: absolute;
      z-index: -1;
      left: 52px;
      top: 22px;
      width: 360px;
      height: 230px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.78) 0%, rgba(226,232,240,0.65) 54%, rgba(226,232,240,0) 72%);
    }

    .floating-tag {
      position: absolute;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 11px;
      color: #0f172a;
      font-size: 12px;
      line-height: 1.14;
      font-weight: 760;
      letter-spacing: -0.025em;
      white-space: nowrap;
    }

    .floating-tag .icon-bubble {
      display: inline-grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      color: var(--orange);
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(226, 232, 240, 0.95);
      box-shadow: 0 11px 28px rgba(15, 23, 42, 0.12);
    }

    .floating-tag .icon-bubble svg {
      width: 25px;
      height: 25px;
      stroke-width: 1.9;
    }

    .tag-digital { left: 169px; top: 4px; flex-direction: column-reverse; align-items: center; gap: 8px; text-align: center; }
    .tag-erp { right: 18px; top: 20px; }
    .tag-auto { right: -16px; top: 116px; }
    .tag-data { right: -11px; top: 222px; }
    .tag-cloud { left: 86px; top: 218px; flex-direction: row-reverse; }
    .tag-gov { left: 22px; top: 116px; flex-direction: row-reverse; }

    .stats-panel {
      position: relative;
      z-index: 10;
      margin-top: 14px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid var(--line);
      box-shadow: var(--soft-shadow);
      border-radius: 8px;
      min-height: 76px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      align-items: center;
      overflow: hidden;
    }

    .stat-card {
      display: grid;
      grid-template-columns: 44px auto;
      align-items: center;
      gap: 12px;
      padding: 17px 24px;
      min-width: 0;
      border-right: 1px solid #e7edf5;
    }

    .stat-card:last-child {
      border-right: 0;
    }

    .stat-icon {
      color: var(--orange);
      display: grid;
      place-items: center;
    }

    .stat-icon svg {
      width: 32px;
      height: 32px;
      stroke-width: 1.75;
    }

    .stat-value {
      color: var(--orange);
      font-size: 24px;
      line-height: 1;
      font-weight: 850;
      letter-spacing: -0.04em;
    }

    .stat-label {
      margin-top: 4px;
      color: #0f172a;
      font-size: 10.8px;
      font-weight: 640;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .feature-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 17px;
      margin-top: 16px;
    }

    .feature-card {
      position: relative;
      min-height: 330px;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid var(--line);
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
      background: #fff;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(90deg, rgba(255,255,255,0.98) 0 38%, rgba(255,255,255,0.74) 55%, rgba(255,255,255,0.08) 100%);
    }

    .feature-card.services {
      background:
        linear-gradient(90deg, rgba(255,246,239,0.95), rgba(255,255,255,0.86)),
        #fff;
    }

    .feature-card.software {
      background:
        linear-gradient(90deg, rgba(244,249,255,0.96), rgba(255,255,255,0.72)),
        #fff;
    }

    .feature-art {
      position: absolute;
      inset: 0 0 0 42%;
      z-index: 0;
    }

    .feature-copy {
      position: relative;
      z-index: 3;
      width: 46%;
      padding: 27px 20px 22px 23px;
    }

    .feature-type {
      margin: 0 0 11px;
      text-transform: uppercase;
      font-size: 10px;
      line-height: 1;
      font-weight: 850;
      letter-spacing: -0.015em;
    }

    .services .feature-type { color: var(--orange); }
    .software .feature-type { color: var(--blue); }

    .feature-title {
      margin: 0 0 14px;
      font-size: 32px;
      line-height: 40px;
      font-weight: 600;
      color: #111827;
    }

    .feature-body {
      margin: 0 0 18px;
      color: var(--body-color);
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
    }

    .text-cta {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      border: 0;
      padding: 0;
      background: transparent;
      font-size: 12.5px;
      font-weight: 800;
      cursor: pointer;
    }

    .services .text-cta { color: var(--orange); }
    .software .text-cta { color: var(--blue); }

    .floating-card-icon {
      position: absolute;
      z-index: 4;
      right: 23px;
      bottom: 31px;
      width: 62px;
      height: 62px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.94);
      color: var(--orange);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.11);
      border: 1px solid rgba(226, 232, 240, 0.85);
    }

    .software .floating-card-icon {
      color: var(--blue);
    }

    .floating-card-icon svg {
      width: 32px;
      height: 32px;
      stroke-width: 1.7;
    }

    .trusted {
      display: grid;
      grid-template-columns: 26px 136px repeat(7, minmax(0, 1fr)) 26px;
      align-items: center;
      gap: 18px;
      height: 76px;
      padding: 0 0 9px;
      color: #6b7280;
    }

    .carousel-arrow {
      display: grid;
      place-items: center;
      color: var(--orange);
      background: transparent;
      border: 0;
      padding: 0;
      cursor: pointer;
    }

    .carousel-arrow svg {
      width: 20px;
      height: 20px;
      stroke-width: 2;
    }

    .trusted-label {
      color: #475569;
      text-transform: uppercase;
      font-size: 9.6px;
      line-height: 1.28;
      font-weight: 750;
      letter-spacing: -0.01em;
    }

    .client-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
      height: 52px;
      color: #697386;
      font-weight: 850;
      font-size: 22px;
      letter-spacing: -0.055em;
      opacity: 0.93;
      filter: grayscale(1);
    }

    .client-logo.small {
      font-size: 18px;
      letter-spacing: -0.04em;
    }

    .client-logo.tiny {
      font-size: 14px;
      letter-spacing: -0.02em;
      text-align: center;
      line-height: 1.05;
    }

    .client-logo svg {
      width: 96px;
      height: 32px;
      opacity: 0.92;
    }

    .screen-reader-text {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1110px) {
      .container {
        width: min(100% - 44px, var(--container));
      }
      .brand svg { width: 196px; }
      .main-nav { gap: 18px; }
      .nav-link { font-size: 12px; }
      .team-scene { right: -10px; transform: scale(0.94); transform-origin: right center; }
      .floating-tag { transform: scale(0.92); }
      .tag-auto { right: -32px; }
      .tag-data { right: -24px; }
      .trusted { gap: 10px; }
      .client-logo { font-size: 19px; }
    }

    @media (max-width: 920px) {
      .site-header {
        height: 86px;
      }
      .header-inner {
        width: min(100% - 36px, var(--container));
      }
      .main-nav,
      .header-cta {
        display: none;
      }
      .menu-toggle {
        display: inline-flex;
      }
      .mobile-nav-open .main-nav {
        display: flex;
        position: absolute;
        left: 22px;
        right: 22px;
        top: 76px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 18px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
      }
      .mobile-nav-open .nav-link {
        width: 100%;
        padding: 11px 8px;
      }
      .mobile-nav-open .nav-link.active::after {
        bottom: 5px;
        left: 8px;
      }
      .hero {
        padding-top: 12px;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .hero-copy {
        max-width: 620px;
      }
      h1 {
        font-size: 48px;
        line-height: 56px;
      }
      .hero-visual {
        min-height: 340px;
        margin-top: 8px;
      }
      .team-scene {
        right: 50%;
        transform: translateX(50%) scale(0.96);
      }
      .tag-auto { right: 20px; }
      .tag-data { right: 30px; }
      .stats-panel {
        grid-template-columns: repeat(2, 1fr);
      }
      .stat-card:nth-child(2n) {
        border-right: 0;
      }
      .stat-card:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid #e7edf5;
        justify-content: center;
      }
      .feature-row {
        grid-template-columns: 1fr;
      }
      .feature-card {
        min-height: 330px;
      }
      .trusted {
        grid-template-columns: 24px 120px repeat(3, minmax(0, 1fr)) 24px;
        height: auto;
        padding: 16px 0 28px;
      }
      .trusted .client-logo:nth-of-type(n+4) {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, var(--container));
      }
      .brand svg {
        width: 174px;
      }
      .hero {
        padding-top: 4px;
      }
      .eyebrow {
        font-size: 11px;
        margin-bottom: 12px;
      }
      h1 {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 16px;
      }
      .hero-text {
        font-size: 16px;
      }
      .hero-actions {
        gap: 10px;
      }
      .btn {
        width: 100%;
        justify-content: center;
      }
      .hero-visual {
        min-height: 320px;
      }
      .team-scene {
        transform: translateX(50%) scale(0.78);
        top: 8px;
      }
      .floating-tag {
        display: none;
      }
      .stats-panel {
        grid-template-columns: 1fr;
      }
      .stat-card,
      .stat-card:nth-child(2n),
      .stat-card:last-child {
        grid-column: auto;
        border-right: 0;
        border-top: 1px solid #e7edf5;
        justify-content: flex-start;
      }
      .stat-card:first-child {
        border-top: 0;
      }
      .feature-card {
        min-height: 390px;
      }
      .feature-card::before {
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0 52%, rgba(255,255,255,0.32) 100%);
      }
      .feature-copy {
        width: 100%;
        padding: 24px 22px;
      }
      .feature-art {
        inset: 44% 0 0 0;
      }
      .floating-card-icon {
        bottom: 18px;
      }
      .trusted {
        grid-template-columns: 22px 1fr 22px;
        gap: 12px;
      }
      .trusted-label {
        grid-column: 2 / 3;
        text-align: center;
      }
      .client-logo {
        display: none;
      }
      .carousel-arrow.right {
        grid-column: 3;
        grid-row: 1 / 3;
      }
      .carousel-arrow.left {
        grid-column: 1;
        grid-row: 1 / 3;
      }
    }

    /* Reference homepage alignment */
    :root {
      --container: 1110px;
      --shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
      --soft-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    }

    body {
      background: #ffffff;
    }

    .site-shell {
      min-height: 100vh;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.72) 58%, #ffffff 100%);
    }

    .container {
      width: min(var(--container), calc(100% - 78px));
    }

    .site-header {
      height: 88px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: none;
    }

    .header-inner {
      gap: 14px;
    }

    .brand {
      flex: 0 0 205px;
    }

    .brand img {
      width: 170px !important;
      height: auto !important;
    }

    .main-nav {
      justify-content: flex-end;
      gap: 22px;
    }

    .nav-link {
      min-height: 36px;
      color: #111827;
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0;
    }

    .nav-link.active::after {
      display: none;
    }

    .header-cta {
      height: 42px;
      min-width: 123px;
      border-radius: 6px;
      padding: 0 18px;
      font-size: 13px;
      font-family: var(--font-heading);
      font-weight: 600;
      box-shadow: none;
    }

    .hero {
      padding: 8px 0 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -11px;
      height: 210px;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(226,232,240,0.45) 48%, rgba(255,255,255,0) 100%),
        repeating-radial-gradient(circle at 58% 30%, rgba(203, 213, 225, 0.55) 0 1px, transparent 1px 8px);
      mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 73%, transparent 100%);
      opacity: 0.26;
    }

    .hero-grid {
      grid-template-columns: 45% 55%;
      min-height: 318px;
      align-items: end;
    }

    .hero-copy {
      align-self: center;
      padding-top: 24px;
      padding-bottom: 15px;
    }

    .eyebrow {
      margin-bottom: 13px;
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .eyebrow::after {
      content: "";
      display: block;
      width: 42px;
      height: 2px;
      margin-top: 9px;
      background: var(--orange);
    }

    h1 {
      max-width: 520px;
      margin-bottom: 13px;
      font-size: 43px;
      line-height: 1.06;
      font-weight: 700;
      letter-spacing: 0;
    }

    .hero-text {
      max-width: 440px;
      color: #4b5563;
      font-size: 13px;
      line-height: 20px;
    }

    .hero-actions {
      gap: 16px;
      margin-top: 18px;
    }

    .btn {
      min-height: 36px;
      padding: 0 18px;
      border-radius: 5px;
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0;
      gap: 11px;
    }

    .btn-primary {
      box-shadow: none;
    }

    .btn-outline {
      border-width: 1px;
      background: #ffffff;
    }

    .hero-visual {
      min-height: 318px;
      overflow: visible;
    }

    .hero-visual::before {
      inset: 44px 16px 12px 52px;
      border-radius: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.18) 20%, rgba(255,255,255,0.34) 100%),
        radial-gradient(circle at 45% 50%, rgba(226, 232, 240, 0.55), transparent 56%);
    }

    .skyline {
      left: -210px;
      bottom: 8px;
      width: 760px;
      height: 205px;
      opacity: 0.13;
    }

    .orbit-svg {
      left: 18px;
      top: -2px;
      width: 620px;
      height: 288px;
    }

    .team-scene {
      right: 34px;
      top: 36px;
      width: 520px;
      height: 274px;
      overflow: hidden;
      border-radius: 0 0 8px 8px;
    }

    .hero-photo-glow {
      display: none;
    }

    .person-illustration {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      object-position: 50% 58%;
      filter: none;
      opacity: 0.98;
    }

    .floating-tag {
      gap: 9px;
      color: #111827;
      font-family: var(--font-heading);
      font-size: 11px;
      line-height: 1.22;
      font-weight: 600;
      letter-spacing: 0;
    }

    .floating-tag .icon-bubble {
      width: 52px;
      height: 52px;
      background: rgba(255,255,255,0.95);
      border-color: #dfe5ee;
      box-shadow: 0 7px 18px rgba(15, 23, 42, 0.11);
    }

    .floating-tag .icon-bubble svg {
      width: 25px;
      height: 25px;
      stroke-width: 1.8;
    }

    .tag-digital { left: 166px; top: 0; }
    .tag-erp { right: 5px; top: 30px; }
    .tag-auto { right: -2px; top: 118px; }
    .tag-data { right: 22px; top: 213px; }
    .tag-cloud { left: 24px; top: 210px; }
    .tag-gov { left: 31px; top: 103px; }

    .stats-panel {
      margin-top: 0;
      min-height: 80px;
      border-radius: 7px;
      background: #ffffff;
      border: 1px solid #e5eaf0;
      box-shadow: var(--shadow);
    }

    .stat-card {
      grid-template-columns: 40px auto;
      gap: 11px;
      padding: 19px 24px;
      border-right-color: #e3e8ef;
    }

    .stat-icon svg {
      width: 31px;
      height: 31px;
      stroke-width: 1.7;
    }

    .stat-value {
      font-family: var(--font-heading);
      font-size: 22px;
      line-height: 1.05;
      font-weight: 700;
      letter-spacing: 0;
    }

    .stat-label {
      margin-top: 2px;
      color: #111827;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .feature-row {
      gap: 17px;
      margin-top: 15px;
    }

    .feature-card {
      min-height: 198px;
      border-radius: 7px;
      border-color: #e2e8f0;
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    }

    .feature-card::before {
      background: linear-gradient(90deg, rgba(255,255,255,0.98) 0 47%, rgba(255,255,255,0.76) 61%, rgba(255,255,255,0.12) 100%);
    }

    .feature-card.services {
      background:
        linear-gradient(90deg, rgba(255, 247, 237, 0.94), rgba(255,255,255,0.72)),
        #fff;
    }

    .feature-card.software {
      background:
        linear-gradient(90deg, rgba(239, 246, 255, 0.94), rgba(255,255,255,0.8)),
        #fff;
    }

    .services .feature-art {
      inset: 0 0 0 42%;
      background: url("images/766788909.png") center / cover no-repeat;
    }

    .services .feature-art svg {
      display: none;
    }

    .software .feature-art {
      inset: 0 0 0 42%;
    }

    .feature-art svg {
      width: 100%;
      height: 100%;
    }

    .feature-copy {
      width: 48%;
      padding: 19px 18px 18px 20px;
    }

    .feature-type {
      margin-bottom: 12px;
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .feature-title {
      margin-bottom: 11px;
      max-width: 270px;
      font-size: 23px;
      line-height: 28px;
      font-weight: 700;
    }

    .feature-body {
      max-width: 280px;
      margin-bottom: 16px;
      color: #374151;
      font-size: 11px;
      line-height: 17px;
      font-weight: 400;
    }

    .text-cta {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      gap: 10px;
    }

    .floating-card-icon {
      right: 16px;
      bottom: 13px;
      width: 58px;
      height: 58px;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.11);
    }

    .trusted {
      grid-template-columns: 25px 155px repeat(7, minmax(0, 1fr)) 25px;
      gap: 18px;
      height: 82px;
      padding: 2px 0 0;
    }

    .trusted-label {
      font-family: var(--font-heading);
      font-size: 8.8px;
      line-height: 1.35;
      font-weight: 600;
      color: #6b7280;
      letter-spacing: 0;
    }

    .client-logo {
      height: 52px;
      color: #667085;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0;
      opacity: 0.92;
    }

    .client-logo.small {
      font-size: 17px;
      letter-spacing: 0;
    }

    .client-logo.tiny {
      font-size: 13px;
      letter-spacing: 0;
      line-height: 1.12;
    }

    @media (max-width: 1110px) {
      .container {
        width: min(100% - 44px, var(--container));
      }

      .main-nav {
        gap: 17px;
      }

      .brand img {
        width: 190px !important;
        height: auto !important;
      }

      .brand {
        flex-basis: 210px;
      }

      .nav-link {
        font-size: 12px;
      }

      h1 {
        font-size: 39px;
      }

      .team-scene {
        right: 22px;
        width: 470px;
      }

      .floating-tag {
        transform: scale(0.9);
      }
    }

    @media (max-width: 920px) {
      .site-header {
        height: 88px;
      }

      .header-inner {
        width: min(100% - 36px, var(--container));
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding-top: 8px;
      }

      h1 {
        max-width: 640px;
        font-size: 46px;
        line-height: 1.12;
      }

      .hero-text {
        max-width: 640px;
      }

      .hero-visual {
        min-height: 330px;
      }

      .team-scene {
        right: 50%;
        transform: translateX(50%);
        width: min(620px, 92vw);
      }

      .tag-digital { left: 50%; top: 0; }
      .tag-gov { left: 8%; }
      .tag-cloud { left: 8%; }
      .tag-erp { right: 8%; }
      .tag-auto { right: 8%; }
      .tag-data { right: 10%; }

      .stats-panel {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature-row {
        grid-template-columns: 1fr;
      }

      .feature-card {
        min-height: 230px;
      }

      .trusted {
        grid-template-columns: 24px 135px repeat(3, minmax(0, 1fr)) 24px;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .brand img {
        width: 170px !important;
        height: auto !important;
      }

      .brand {
        flex-basis: auto;
      }

      h1 {
        font-size: 38px;
        line-height: 1.13;
      }

      .hero-actions {
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .hero-visual {
        min-height: 270px;
      }

      .team-scene {
        top: 24px;
        height: 240px;
      }

      .floating-tag {
        display: none;
      }

      .stats-panel {
        grid-template-columns: 1fr;
      }

      .feature-card {
        min-height: 345px;
      }

      .feature-card::before {
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0 54%, rgba(255,255,255,0.38) 100%);
      }

      .feature-copy {
        width: 100%;
        padding: 20px;
      }

      .feature-title {
        font-size: 23px;
        line-height: 29px;
      }

      .feature-body {
        font-size: 12px;
        line-height: 18px;
      }

      .feature-art,
      .services .feature-art,
      .software .feature-art {
        inset: 46% 0 0 0;
      }

      .trusted {
        grid-template-columns: 22px 1fr 22px;
        height: 70px;
      }
    }

    /* Professional Services page */
    .page-services {
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 60%, #ffffff 100%);
    }

    .services-hero {
      position: relative;
      padding: 4px 0 0;
    }

    .services-hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -30px;
      height: 210px;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(226,232,240,0.5) 50%, rgba(255,255,255,0) 100%),
        repeating-radial-gradient(circle at 62% 35%, rgba(203, 213, 225, 0.45) 0 1px, transparent 1px 8px);
      mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 76%, transparent 100%);
      opacity: 0.25;
    }

    .services-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 42% 58%;
      min-height: 365px;
      align-items: center;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 52px;
      color: #6b7280;
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 500;
    }

    .breadcrumb a {
      color: var(--orange);
    }

    .breadcrumb span::before {
      content: ">";
      margin-right: 10px;
      color: #9ca3af;
    }

    .services-copy h1 {
      margin: 0 0 6px;
      max-width: none;
      color: #111827;
      font-size: 46px;
      line-height: 54px;
      font-weight: 700;
    }

    .services-copy {
      padding-top: 44px;
    }

    .services-kicker {
      margin: 0 0 18px;
      color: #111827;
      font-family: var(--font-heading);
      font-size: 23px;
      line-height: 31px;
      font-weight: 600;
    }

    .services-kicker span,
    .mini-label {
      color: var(--orange);
    }

    .services-kicker::after {
      content: "";
      display: block;
      width: 42px;
      height: 2px;
      margin-top: 12px;
      background: var(--orange);
    }

    .services-intro {
      max-width: 410px;
      margin: 0;
      color: #4b5563;
      font-size: 12px;
      line-height: 20px;
    }

    .services-visual {
      position: relative;
      align-self: end;
      min-height: 340px;
      overflow: visible;
    }

    .services-visual::before {
      content: "";
      position: absolute;
      inset: 22px 0 8px 30px;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.36) 26%, rgba(255,255,255,0.08) 100%),
        radial-gradient(circle at 50% 44%, rgba(226, 232, 240, 0.55), transparent 56%);
      z-index: 1;
    }

    .services-visual img {
      position: absolute;
      z-index: 0;
      right: 0;
      bottom: 0;
      width: 700px;
      max-width: none;
      height: 330px;
      object-fit: cover;
      object-position: center 56%;
      filter: saturate(0.98);
    }

    .process-pill {
      position: absolute;
      z-index: 3;
      display: grid;
      justify-items: center;
      gap: 6px;
      color: #111827;
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
      line-height: 1.2;
      text-align: center;
    }

    .process-pill span,
    .line-icon {
      display: inline-grid;
      place-items: center;
      color: var(--orange);
    }

    .process-pill span {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.96);
      border: 1px solid #dfe5ee;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
    }

    .process-pill svg,
    .line-icon svg {
      width: 26px;
      height: 26px;
      stroke-width: 1.8;
    }

    .pill-strategy { left: 120px; top: 72px; }
    .pill-innovation { left: 245px; top: 18px; }
    .pill-execution { right: 155px; top: 31px; }
    .pill-growth { right: 46px; top: 108px; }

    .proof-strip {
      position: relative;
      z-index: 5;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      min-height: 104px;
      margin-top: 16px;
      background: #ffffff;
      border: 1px solid #e5eaf0;
      border-radius: 7px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .proof-strip article {
      display: grid;
      justify-items: center;
      align-content: center;
      gap: 4px;
      min-width: 0;
      padding: 17px 14px;
      text-align: center;
      border-right: 1px solid #e5eaf0;
    }

    .proof-strip article:last-child {
      border-right: 0;
    }

    .proof-strip h3,
    .service-item h3,
    .approach-track h3 {
      margin: 0;
      color: #111827;
      font-family: var(--font-heading);
      font-size: 12px;
      line-height: 16px;
      font-weight: 700;
    }

    .proof-strip p {
      margin: 0;
      color: #4b5563;
      font-size: 9px;
      line-height: 14px;
    }

    .services-section,
    .approach-section {
      padding-top: 30px;
    }

    .section-heading {
      margin: 0 auto 20px;
      text-align: center;
    }

    .section-heading h2 {
      margin: 0 0 5px;
      color: #111827;
      font-size: 24px;
      line-height: 32px;
      font-weight: 700;
    }

    .section-heading p {
      margin: 0;
      color: #4b5563;
      font-size: 11px;
      line-height: 18px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      border: 1px solid #e5eaf0;
      border-radius: 7px;
      overflow: hidden;
      background: #ffffff;
    }

    .service-item {
      min-height: 212px;
      padding: 20px 16px 16px;
      border-right: 1px solid #e5eaf0;
      border-bottom: 1px solid #e5eaf0;
    }

    .service-item:nth-child(6n) {
      border-right: 0;
    }

    .service-item:nth-last-child(-n+6) {
      border-bottom: 0;
    }

    .service-item .line-icon {
      margin-bottom: 14px;
    }

    .service-item h3 {
      margin-bottom: 9px;
    }

    .service-item p,
    .approach-track p,
    .contact-card p,
    .dark-cta p {
      margin: 0;
      color: #4b5563;
      font-size: 10px;
      line-height: 16px;
    }

    .service-item a {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 16px;
      color: var(--orange);
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
    }

    .approach-track {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border: 1px solid #e5eaf0;
      border-radius: 7px;
      background: #ffffff;
      overflow: hidden;
    }

    .approach-track article {
      position: relative;
      min-height: 102px;
      padding: 18px 18px 16px;
      border-right: 1px solid #e5eaf0;
    }

    .approach-track article:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 37px;
      right: -8px;
      width: 15px;
      height: 15px;
      border-top: 1px solid #cbd5e1;
      border-right: 1px solid #cbd5e1;
      transform: rotate(45deg);
      background: #ffffff;
      z-index: 2;
    }

    .approach-track article:last-child {
      border-right: 0;
    }

    .approach-track strong {
      display: inline-grid;
      place-items: center;
      width: 24px;
      height: 24px;
      margin-right: 12px;
      border-radius: 50%;
      background: var(--orange);
      color: #ffffff;
      font-family: var(--font-heading);
      font-size: 9px;
      font-weight: 700;
      vertical-align: middle;
    }

    .approach-track .line-icon {
      vertical-align: middle;
      color: #111827;
    }

    .approach-track h3 {
      margin-top: 15px;
      margin-bottom: 5px;
    }

    .services-bottom {
      display: grid;
      grid-template-columns: 2.1fr 1fr;
      gap: 18px;
      padding: 24px 0 26px;
    }

    .dark-cta,
    .contact-card {
      border-radius: 7px;
      border: 1px solid #e5eaf0;
    }

    .dark-cta {
      position: relative;
      overflow: hidden;
      min-height: 180px;
      padding: 28px 380px 28px 30px;
      background:
        radial-gradient(circle at 76% 15%, rgba(255, 90, 0, 0.13), transparent 26%),
        linear-gradient(135deg, #101827 0%, #07111f 100%);
      color: #ffffff;
    }

    .dark-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 70px),
        linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 70px);
      opacity: 0.55;
    }

    .dark-cta > * {
      position: relative;
      z-index: 1;
    }

    .mini-label {
      margin: 0 0 7px;
      font-family: var(--font-heading);
      font-size: 10px;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
    }

    .dark-cta h2 {
      max-width: 350px;
      margin: 0 0 7px;
      color: #ffffff;
      font-size: 25px;
      line-height: 32px;
      font-weight: 700;
    }

    .dark-cta p {
      max-width: 340px;
      color: #cbd5e1;
    }

    .dark-cta .btn {
      margin-top: 17px;
    }

    .dark-stats {
      position: absolute;
      z-index: 2;
      right: 30px;
      top: 45px;
      display: grid;
      grid-template-columns: repeat(2, 145px);
      gap: 21px 18px;
    }

    .dark-stats span {
      color: #cbd5e1;
      font-size: 10px;
      line-height: 14px;
    }

    .dark-stats strong {
      display: block;
      color: var(--orange);
      font-family: var(--font-heading);
      font-size: 22px;
      line-height: 1;
      font-weight: 700;
    }

    .contact-card {
      min-height: 180px;
      padding: 28px 24px;
      background: #ffffff;
    }

    .contact-card h2 {
      margin: 0 0 7px;
      color: #111827;
      font-size: 17px;
      line-height: 24px;
      font-weight: 700;
    }

    .contact-card .btn {
      width: 100%;
      margin-top: 17px;
    }

    .contact-card ul {
      display: grid;
      gap: 8px;
      margin: 15px 0 0;
      padding: 0;
      list-style: none;
      color: #111827;
      font-size: 11px;
      font-weight: 600;
    }

    @media (max-width: 1110px) {
      .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .breadcrumb {
        margin-bottom: 24px;
      }

      .services-copy {
        padding-top: 8px;
      }

      .services-visual {
        min-height: 330px;
      }

      .services-visual img {
        width: 100%;
      }

      .proof-strip,
      .service-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .proof-strip article:nth-child(3n),
      .service-item:nth-child(3n) {
        border-right: 0;
      }

      .proof-strip article:nth-child(-n+3) {
        border-bottom: 1px solid #e5eaf0;
      }

      .service-item:nth-last-child(-n+6) {
        border-bottom: 1px solid #e5eaf0;
      }

      .service-item:nth-last-child(-n+3) {
        border-bottom: 0;
      }

      .services-bottom {
        grid-template-columns: 1fr;
      }

      .dark-stats {
        position: static;
        margin-top: 22px;
      }

      .dark-cta {
        padding-right: 30px;
      }
    }

    @media (max-width: 760px) {
      .services-copy h1 {
        font-size: 36px;
        line-height: 44px;
      }

      .services-kicker {
        font-size: 20px;
      }

      .services-visual {
        min-height: 255px;
      }

      .services-visual img {
        height: 250px;
      }

      .process-pill {
        display: none;
      }

      .proof-strip,
      .service-grid,
      .approach-track,
      .services-bottom {
        grid-template-columns: 1fr;
      }

      .proof-strip article,
      .service-item,
      .approach-track article {
        border-right: 0;
      }

      .proof-strip article,
      .service-item,
      .service-item:nth-last-child(-n+3),
      .approach-track article {
        border-bottom: 1px solid #e5eaf0;
      }

      .proof-strip article:last-child,
      .service-item:last-child,
      .approach-track article:last-child {
        border-bottom: 0;
      }

      .approach-track article::after {
        display: none;
      }

      .dark-stats {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* Shared footer component */
    site-header,
    site-footer {
      display: block;
    }

    site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    .site-shell {
      padding-top: 88px;
    }

    .site-header .container,
    .site-footer .container {
      width: min(1440px, calc(100% - 128px));
    }

    .site-header {
      position: relative;
      background: #ffffff;
      box-shadow: 0 1px 0 rgba(226, 232, 240, 0.85);
    }

    .site-footer {
      margin-top: 24px;
      background:
        radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.16), transparent 30%),
        linear-gradient(135deg, #112236 0%, #071523 100%);
      color: #e5edf6;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.55fr 0.9fr 1.15fr 0.9fr 1.6fr;
      gap: 48px;
      padding: 28px 0 22px;
    }

    .footer-logo {
      display: inline-flex;
      margin-bottom: 12px;
    }

    .footer-logo img {
      width: 172px;
      height: auto;
      filter: brightness(0) invert(1);
      opacity: 0.96;
    }

    .footer-brand p {
      max-width: 285px;
      margin: 0 0 13px;
      color: #d7e0ea;
      font-size: 13px;
      line-height: 20px;
      font-weight: 400;
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-links a {
      display: inline-grid;
      place-items: center;
      width: 26px;
      height: 26px;
      border: 1px solid rgba(226, 232, 240, 0.75);
      border-radius: 6px;
      color: #e5edf6;
    }

    .social-links svg {
      width: 14px;
      height: 14px;
      stroke-width: 2;
    }

    .footer-column,
    .footer-contact {
      display: grid;
      align-content: start;
      gap: 9px;
    }

    .footer-column h2,
    .footer-contact h2 {
      margin: 0 0 6px;
      color: #f8fafc;
      font-family: var(--font-heading);
      font-size: 12px;
      line-height: 17px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .footer-column a,
    .footer-contact a,
    .footer-contact p {
      margin: 0;
      color: #d7e0ea;
      font-size: 13px;
      line-height: 19px;
      font-weight: 400;
    }

    .footer-contact a,
    .footer-contact p {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 9px;
      align-items: start;
    }

    .footer-contact svg {
      width: 18px;
      height: 18px;
      color: #d7e0ea;
      stroke-width: 2;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 13px 0 15px;
      border-top: 1px solid rgba(226, 232, 240, 0.16);
    }

    .footer-bottom p,
    .footer-bottom a {
      margin: 0;
      color: #d7e0ea;
      font-size: 12px;
      line-height: 17px;
    }

    .footer-bottom nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .footer-bottom span {
      width: 1px;
      height: 18px;
      background: rgba(226, 232, 240, 0.48);
    }

    @media (max-width: 1110px) {
      .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 36px;
      }

      .footer-contact {
        grid-column: span 2;
      }
    }

    @media (max-width: 760px) {
      .site-shell {
        padding-top: 88px;
      }

      .site-header .container,
      .site-footer .container {
        width: min(100% - 28px, var(--container));
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 26px;
      }

      .footer-contact {
        grid-column: auto;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    /* Responsive system overrides */
    :root {
      --page-gutter: clamp(16px, 4vw, 64px);
      --header-height: 88px;
      --content-max: 1110px;
      --wide-max: 1440px;
      --section-gap: clamp(22px, 4vw, 42px);
      --tap-size: 44px;
    }

    html {
      overflow-x: clip;
      scroll-padding-top: calc(var(--header-height) + 16px);
    }

    body {
      overflow-x: clip;
      text-size-adjust: 100%;
      -webkit-text-size-adjust: 100%;
    }

    img,
    svg,
    video,
    canvas {
      max-width: 100%;
    }

    main {
      min-width: 0;
    }

    .site-shell {
      padding-top: var(--header-height);
    }

    .container,
    .site-header .container,
    .site-footer .container {
      width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
    }

    .site-header .container,
    .site-footer .container {
      width: min(var(--wide-max), calc(100% - (var(--page-gutter) * 2)));
    }

    site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    .site-header {
      height: var(--header-height);
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(226, 232, 240, 0.9);
    }

    .header-inner {
      min-width: 0;
      gap: clamp(12px, 2vw, 24px);
    }

    .brand {
      flex: 0 0 auto;
      min-width: 0;
    }

    .brand img {
      width: clamp(150px, 13vw, 178px) !important;
      height: auto !important;
    }

    .main-nav {
      min-width: 0;
      gap: clamp(14px, 1.7vw, 24px);
    }

    .nav-link {
      min-height: var(--tap-size);
      font-size: clamp(11px, 0.86vw, 13px);
      letter-spacing: 0;
    }

    .nav-link.active::after {
      display: none;
    }

    .header-cta {
      min-height: var(--tap-size);
      height: var(--tap-size);
      min-width: max-content;
      padding-inline: 18px;
      white-space: nowrap;
    }

    .menu-toggle {
      width: var(--tap-size);
      height: var(--tap-size);
      border-radius: 10px;
    }

    .hero,
    .services-hero {
      padding-top: clamp(14px, 2vw, 28px);
    }

    .hero-grid,
    .services-hero-grid {
      min-width: 0;
      gap: clamp(20px, 3vw, 42px);
    }

    h1,
    .services-copy h1 {
      font-size: clamp(34px, 5.6vw, 48px);
      line-height: 1.12;
      text-wrap: balance;
    }

    .hero-text,
    .services-intro,
    .feature-body,
    .service-item p,
    .approach-track p,
    .contact-card p,
    .dark-cta p {
      overflow-wrap: anywhere;
    }

    .hero-copy,
    .services-copy,
    .feature-copy {
      min-width: 0;
    }

    .btn,
    .header-cta,
    .text-cta,
    .service-item a {
      touch-action: manipulation;
    }

    .hero-actions {
      gap: clamp(10px, 2vw, 16px);
    }

    .btn {
      min-height: var(--tap-size);
      padding-inline: 18px;
      text-align: center;
    }

    .hero-visual,
    .services-visual {
      min-width: 0;
      max-width: 100%;
    }

    .team-scene,
    .services-visual img {
      max-width: 100%;
    }

    .stats-panel,
    .proof-strip,
    .service-grid,
    .approach-track,
    .feature-card,
    .dark-cta,
    .contact-card {
      min-width: 0;
    }

    .feature-row,
    .services-bottom {
      gap: clamp(14px, 2vw, 20px);
    }

    .trusted {
      min-width: 0;
    }

    .client-logo {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .site-footer {
      margin-top: clamp(22px, 4vw, 34px);
    }

    .footer-grid {
      gap: clamp(24px, 4vw, 48px);
    }

    @media (min-width: 1600px) {
      :root {
        --content-max: 1160px;
        --wide-max: 1480px;
      }

      .hero-grid,
      .services-hero-grid {
        gap: 54px;
      }
    }

    @media (max-width: 1180px) {
      :root {
        --page-gutter: clamp(20px, 3vw, 36px);
      }

      .hero-visual {
        overflow: hidden;
      }

      .skyline,
      .orbit-svg {
        display: none;
      }

      .main-nav {
        gap: 14px;
      }

      .nav-link {
        font-size: 11.5px;
      }

      .brand img {
        width: 158px !important;
      }

      .team-scene {
        right: 0;
        width: min(470px, 100%);
      }

      .services-visual img {
        width: min(620px, 100%);
      }

      .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .service-item,
      .service-item:nth-child(6n),
      .service-item:nth-last-child(-n+6) {
        border-right: 1px solid #e5eaf0;
        border-bottom: 1px solid #e5eaf0;
      }

      .service-item:nth-child(3n) {
        border-right: 0;
      }

      .service-item:nth-last-child(-n+3) {
        border-bottom: 0;
      }
    }

    @media (max-width: 980px) {
      :root {
        --header-height: 76px;
      }

      .main-nav,
      .header-cta {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
        flex: 0 0 var(--tap-size);
      }

      .mobile-nav-open .main-nav {
        position: fixed;
        top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
        left: var(--page-gutter);
        right: var(--page-gutter);
        display: grid;
        gap: 2px;
        padding: 10px;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid #e5eaf0;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
      }

      .mobile-nav-open .nav-link {
        width: 100%;
        min-height: var(--tap-size);
        justify-content: flex-start;
        padding: 0 12px;
      }

      .hero-grid,
      .services-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
        align-items: start;
      }

      .hero-copy,
      .services-copy {
        max-width: 680px;
        width: 100%;
        padding-top: 0;
      }

      .hero-text,
      .services-intro {
        width: 100%;
        max-width: 100%;
      }

      .hero-visual,
      .services-visual {
        min-height: clamp(240px, 45vw, 340px);
        margin-top: 0;
      }

      .team-scene,
      .services-visual img {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(680px, 100%);
        height: 100%;
      }

      .orbit-svg {
        left: 50%;
        transform: translateX(-50%);
        width: min(640px, 100%);
      }

      .stats-panel,
      .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .proof-strip article,
      .stat-card,
      .stat-card:nth-child(2n),
      .stat-card:last-child {
        border-top: 0;
        border-right: 1px solid #e5eaf0;
        border-bottom: 1px solid #e5eaf0;
        grid-column: auto;
      }

      .proof-strip article:nth-child(2n),
      .stat-card:nth-child(2n) {
        border-right: 0;
      }

      .proof-strip article:nth-last-child(-n+2),
      .stat-card:nth-last-child(-n+2) {
        border-bottom: 0;
      }

      .feature-row,
      .services-bottom {
        grid-template-columns: 1fr;
      }

      .feature-card {
        min-height: clamp(220px, 34vw, 280px);
      }

      .approach-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .approach-track article:nth-child(2n) {
        border-right: 0;
      }

      .approach-track article::after {
        display: none;
      }

      .dark-cta {
        padding: 26px;
      }

      .dark-stats {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 22px;
      }

      .trusted {
        grid-template-columns: 24px 130px repeat(3, minmax(0, 1fr)) 24px;
      }
    }

    @media (max-width: 640px) {
      :root {
        --header-height: 68px;
        --page-gutter: max(16px, env(safe-area-inset-left, 0px));
      }

      .site-header {
        padding-top: env(safe-area-inset-top, 0px);
      }

      .header-inner {
        width: min(100% - 32px, var(--content-max));
      }

      .brand img {
        width: 142px !important;
      }

      h1,
      .services-copy h1 {
        font-size: clamp(32px, 10vw, 40px);
        line-height: 1.12;
      }

      .services-kicker {
        font-size: clamp(18px, 6vw, 22px);
        line-height: 1.25;
      }

      .hero,
      .services-hero {
        padding-top: 18px;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-visual,
      .services-visual {
        min-height: 230px;
      }

      .team-scene,
      .services-visual img {
        height: 230px;
      }

      .hero-visual::before,
      .services-visual::before,
      .orbit-svg,
      .skyline,
      .floating-tag,
      .process-pill,
      .hero::after,
      .services-hero::after {
        display: none;
      }

      .stats-panel,
      .proof-strip,
      .service-grid,
      .approach-track {
        grid-template-columns: 1fr;
      }

      .stat-card,
      .proof-strip article,
      .service-item,
      .approach-track article,
      .service-item:nth-child(3n),
      .service-item:nth-last-child(-n+3),
      .stat-card:nth-child(2n),
      .proof-strip article:nth-child(2n),
      .stat-card:nth-last-child(-n+2),
      .proof-strip article:nth-last-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid #e5eaf0;
      }

      .stat-card:last-child,
      .proof-strip article:last-child,
      .service-item:last-child,
      .approach-track article:last-child {
        border-bottom: 0;
      }

      .stat-card {
        grid-template-columns: 42px 1fr;
      }

      .feature-card {
        min-height: 340px;
      }

      .feature-card::before {
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0 56%, rgba(255,255,255,0.42) 100%);
      }

      .feature-copy {
        width: 100%;
        padding: 20px;
      }

      .feature-title {
        max-width: 100%;
        font-size: clamp(22px, 7vw, 26px);
        line-height: 1.2;
      }

      .feature-body {
        max-width: 100%;
        font-size: 13px;
        line-height: 20px;
      }

      .feature-art,
      .services .feature-art,
      .software .feature-art {
        inset: 52% 0 0 0;
      }

      .floating-card-icon {
        width: 48px;
        height: 48px;
        right: 14px;
        bottom: 14px;
      }

      .trusted {
        grid-template-columns: 34px 1fr 34px;
        height: auto;
        min-height: 64px;
        padding-block: 12px;
      }

      .trusted-label {
        grid-column: 2;
        text-align: center;
      }

      .client-logo {
        display: none;
      }

      .carousel-arrow.left {
        grid-column: 1;
        grid-row: 1 / 3;
      }

      .carousel-arrow.right {
        grid-column: 3;
        grid-row: 1 / 3;
      }

      .service-item {
        min-height: auto;
        padding: 18px;
      }

      .services-section,
      .approach-section {
        padding-top: 26px;
      }

      .section-heading h2 {
        font-size: 24px;
        line-height: 31px;
      }

      .services-bottom {
        padding-bottom: 18px;
      }

      .dark-cta,
      .contact-card {
        padding: 22px;
      }

      .dark-cta h2 {
        font-size: 24px;
        line-height: 30px;
      }

      .dark-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-block: 24px 18px;
      }

      .footer-logo img {
        width: 150px;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
      }
    }

    @media (max-width: 420px) {
      :root {
        --page-gutter: 14px;
      }

      .container,
      .site-header .container,
      .site-footer .container {
        width: calc(100% - 28px);
      }

      .brand img {
        width: 128px !important;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
      }

      h1,
      .services-copy h1 {
        font-size: clamp(30px, 11vw, 36px);
      }

      .hero-text,
      .services-intro {
        font-size: 13px;
        line-height: 20px;
        width: 100%;
        max-width: 100%;
      }

      .stats-panel,
      .proof-strip,
      .feature-card,
      .service-grid,
      .approach-track,
      .dark-cta,
      .contact-card {
        border-radius: 7px;
      }

      .team-scene,
      .services-visual img,
      .hero-visual,
      .services-visual {
        min-height: 205px;
        height: 205px;
      }

      .dark-stats {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 360px) {
      .brand img {
        width: 118px !important;
      }

      .header-inner {
        gap: 8px;
      }

      .hero-actions,
      .dark-stats,
      .footer-bottom nav {
        gap: 10px;
      }

      .footer-bottom nav {
        flex-wrap: wrap;
      }
    }
