  :root {
    /* Brand */
    --orange:   #f27f05;
    --orange-2: #ffb15a;
    --orange-soft: #fff3e1;
    --blue:     #0c3a85;
    --blue-2:   #1a52b3;
    --blue-soft: #eaf0fa;
    --red:      #e41e2d;
    --red-soft: #fdecec;

    /* Neutrals — warm light */
    --bg:        #ffffff;
    --bg-soft:   #f7f5f1;       /* warm paper */
    --bg-2:      #fbfaf7;
    --ink:       #0e1626;       /* near-black w/ blue cast */
    --ink-dim:   #54607a;
    --ink-faint: #8a92a3;
    --line:      #e6e2d8;
    --line-soft: #efece4;
    --rule: 1px solid var(--line);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
  body {
    font-family: 'Archivo', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  ::selection { background: var(--orange); color: #fff; }

  .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; letter-spacing: 0.02em; }
  .narrow { font-family: 'Archivo Narrow', 'Archivo', sans-serif; }

  .wrap { max-width: 1380px; margin: 0 auto; padding: 0 32px; }

  /* ── Utility bar ─────────────────────────────────────────── */
  .util {
    border-bottom: var(--rule);
    background: var(--blue);
    color: #ffffff;
    font-size: 12px;
  }
  .util .row {
    display: flex; align-items: center; justify-content: space-between;
    height: 38px;
  }
  .util-l, .util-r { display: flex; align-items: center; gap: 22px; }
  .util .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 10px var(--orange); }
  .util a { color: rgba(255,255,255,0.78); transition: color .2s; }
  .util a:hover { color: var(--orange-2); }
  .util .sep { color: rgba(255,255,255,0.25); }

  /* ── Header / Nav ────────────────────────────────────────── */
  header.site {
    border-bottom: var(--rule);
    background: rgba(255,255,255,0.92);
    position: sticky; top: 0; z-index: 30;
    backdrop-filter: blur(10px);
  }
  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 86px;
    gap: 40px;
  }
  .brand { display: flex; align-items: center; gap: 14px; }
  .brand-mark {
    width: 46px; height: 46px;
    background: var(--blue);
    display: grid; place-items: center;
    position: relative;
    overflow: hidden;
  }
  .brand-mark::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 4px; background: var(--orange);
  }
  .brand-mark svg { width: 28px; height: 28px; color: #fff; position: relative; z-index: 1; }
  /* Logo görsel kullanıldığında mavi arka planı kaldır */
  .brand-mark:has(img) { background: transparent; }
  .brand-mark:has(img)::after { display: none; }
  .brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .brand-name { line-height: 1; }
  .brand-name .b1 { font-weight: 700; letter-spacing: 0.05em; font-size: 16px; color: var(--blue); }
  .brand-name .b2 { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--ink-faint); margin-top: 4px; letter-spacing: 0.12em; text-transform: uppercase; }

  .nav-items {
    display: flex; gap: 18px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-dim);
    justify-content: center;
    height: 100%;
    align-items: center;
  }
  .nav-item { position: relative; height: 100%; display: flex; align-items: center; }
  .nav-item > a {
    padding: 6px 0; position: relative; transition: color .2s;
    display: inline-flex; align-items: center; gap: 5px;
    white-space: nowrap;
  }
  .nav-item > a .caret {
    width: 8px; height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    margin-left: 4px;
    transition: transform .2s;
    opacity: .5;
  }
  .nav-item:hover > a { color: var(--blue); }
  .nav-item:hover > a .caret { transform: rotate(45deg) translate(0px, 0px); opacity: 1; }
  .nav-item > a.active { color: var(--blue); font-weight: 600; }
  .nav-item > a.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -31px;
    height: 3px; background: var(--orange);
  }

  /* Dropdown */
  .submenu {
    position: absolute; top: calc(100% + 0px); left: -22px;
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--orange);
    padding: 14px 0;
    box-shadow: 0 20px 50px -20px rgba(12,58,133,0.22);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .18s, transform .18s, visibility .18s;
    z-index: 60;
  }
  .nav-item:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
  .submenu a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 22px;
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
    transition: all .15s;
  }
  .submenu a:hover { background: var(--bg-soft); color: var(--orange); padding-left: 28px; }
  .submenu a .sm-arr {
    font-family: 'JetBrains Mono', monospace;
    color: var(--ink-faint);
    font-size: 13px;
    opacity: 0;
    transition: opacity .15s;
  }
  .submenu a:hover .sm-arr { opacity: 1; color: var(--orange); }
  .submenu .sm-label {
    padding: 6px 22px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-faint);
    border-bottom: 1px dashed var(--line);
    margin-bottom: 8px;
  }
  .submenu.right { left: auto; right: -22px; }

  .nav-cta { display: flex; align-items: center; gap: 14px; }

  /* Hamburger */
  .hamburger {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
  }
  .hamburger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--blue);
    transition: all .2s;
  }
  .hamburger:hover { border-color: var(--blue); }

  /* ── Mobile drawer ────────────────────────────────────────── */
  .drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(12,58,133,0.45);
    backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity .25s, visibility .25s;
    z-index: 90;
  }
  .drawer-backdrop.open { opacity: 1; visibility: visible; }
  .drawer {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 88%; max-width: 380px;
    background: #fff;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    display: flex; flex-direction: column;
    box-shadow: 0 0 40px rgba(0,0,0,0.15);
  }
  .drawer.open { transform: translateX(0); }
  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    background: var(--blue);
    color: #fff;
    border-bottom: 3px solid var(--orange);
  }
  .drawer-head .brand-name .b1 { color: #fff; font-size: 14px; }
  .drawer-head .brand-name .b2 { color: rgba(255,255,255,0.55); }
  .drawer-head .brand-mark { background: #fff; width: 38px; height: 38px; }
  .drawer-head .brand-mark svg { color: var(--blue); width: 22px; height: 22px; }
  .drawer-head .brand { gap: 12px; }
  .drawer-close {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: #fff;
    display: grid; place-items: center;
    cursor: pointer;
    font-size: 18px;
    transition: all .2s;
  }
  .drawer-close:hover { background: var(--orange); border-color: var(--orange); }

  .drawer-body { flex: 1; overflow-y: auto; }
  .drawer-menu { list-style: none; padding: 0; margin: 0; }
  .drawer-menu > li { border-bottom: 1px solid var(--line); }
  .drawer-menu > li > a,
  .drawer-menu > li > button {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 18px 22px;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    transition: all .15s;
  }
  .drawer-menu > li > a:hover,
  .drawer-menu > li > button:hover { background: var(--bg-soft); color: var(--blue); }
  .drawer-menu .arrow {
    width: 8px; height: 8px;
    border-right: 1.6px solid var(--ink-faint);
    border-bottom: 1.6px solid var(--ink-faint);
    transform: rotate(-45deg);
    transition: transform .2s;
  }
  .drawer-menu li.open > button .arrow { transform: rotate(45deg); border-color: var(--orange); }
  .drawer-menu li.open > button { color: var(--blue); background: var(--bg-soft); }
  .drawer-sub {
    list-style: none; padding: 0; margin: 0;
    background: var(--bg-2);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .drawer-menu li.open > .drawer-sub { max-height: 500px; }
  .drawer-sub li { border-top: 1px solid var(--line-soft); }
  .drawer-sub a {
    display: flex; align-items: center;
    padding: 13px 22px 13px 38px;
    font-size: 13.5px;
    color: var(--ink-dim);
    transition: all .15s;
  }
  .drawer-sub a:hover { color: var(--orange); padding-left: 44px; background: #fff; }
  .drawer-sub a::before {
    content: '—';
    margin-right: 10px;
    color: var(--ink-faint);
  }

  .drawer-foot {
    padding: 20px 22px 24px;
    border-top: 1px solid var(--line);
    background: var(--bg-soft);
  }
  .drawer-foot .phone {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 16px;
    background: var(--blue);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13.5px;
    margin-bottom: 8px;
  }
  .drawer-foot .phone .pulse {
    width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
    animation: pulse 2s infinite;
  }
  .drawer-foot .email {
    font-size: 12.5px; color: var(--ink-dim);
    font-family: 'JetBrains Mono', monospace;
    display: block;
    padding: 6px 0;
  }
  .drawer-foot .socials { margin-top: 12px; display: flex; gap: 8px; }
  .drawer-foot .socials a {
    width: 36px; height: 36px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--blue);
    display: grid; place-items: center;
    transition: all .2s;
  }
  .drawer-foot .socials a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
  .drawer-foot .socials svg { width: 14px; height: 14px; }

  body.drawer-open { overflow: hidden; }
  .phone-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    color: var(--blue);
    font-weight: 500;
  }
  .phone-pill .pulse {
    width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 20px;
    background: var(--orange); color: #fff;
    font-weight: 600; font-size: 13.5px;
    letter-spacing: 0.01em;
    border: 1px solid var(--orange);
    transition: all .2s ease;
  }
  .btn:hover { background: #d96f00; border-color: #d96f00; transform: translateY(-1px); }
  .btn.ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
  .btn.ghost:hover { background: var(--blue); color: #fff; }
  .btn.dark { background: var(--blue); border-color: var(--blue); color: #fff; }
  .btn.dark:hover { background: #0a2f6c; border-color: #0a2f6c; }

  /* ── Hero quick-access tiles ─────────────────────────────── */
  .quick-tiles {
    margin-top: 36px;
    margin-bottom: -70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
    z-index: 5;
  }
  .qt {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    padding: 22px 22px 20px;
    min-height: 152px;
    display: flex; flex-direction: column;
    transition: all .25s ease;
    overflow: hidden;
    box-shadow: 0 4px 18px -10px rgba(12,58,133,0.10);
  }
  .qt::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--qt-color, var(--orange));
    transform: scaleY(0); transform-origin: top;
    transition: transform .25s ease;
  }
  .qt:hover { transform: translateY(-3px); border-color: var(--qt-color, var(--orange)); box-shadow: 0 14px 30px -18px rgba(12,58,133,0.22); }
  .qt:hover::before { transform: scaleY(1); }
  .qt:hover .qt-arr { color: var(--qt-color, var(--orange)); transform: translate(4px, -4px); }
  .qt-top {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 16px;
  }
  .qt-icon {
    width: 38px; height: 38px;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--qt-color, var(--orange));
    background: var(--bg-soft);
  }
  .qt-icon svg { width: 19px; height: 19px; }
  .qt-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }
  .qt-title {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.15;
    color: var(--blue);
    margin: 0 0 6px;
    letter-spacing: -0.005em;
  }
  .qt-sub {
    color: var(--ink-dim);
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0;
  }
  .qt-foot {
    margin-top: auto;
    padding-top: 14px;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px dashed var(--line);
  }
  .qt-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-dim);
    font-weight: 500;
  }
  .qt-arr {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    color: var(--ink-faint);
    transition: all .25s ease;
  }

  /* ── Hero ────────────────────────────────────────────────── */
  .hero {
    position: relative;
    padding: 48px 0 90px;
    border-bottom: var(--rule);
    overflow: visible;
    background:
      radial-gradient(900px 480px at 78% 10%, rgba(242,127,5,0.10), transparent 60%),
      radial-gradient(700px 400px at 5% 95%, rgba(12,58,133,0.07), transparent 60%),
      var(--bg);
  }
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: end;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 8px 14px;
    border: 1px solid var(--blue);
    background: #fff;
    margin-bottom: 22px;
  }
  .eyebrow .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 8px var(--orange); }

  .hero h1 {
    font-family: 'Archivo Narrow', 'Archivo', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
    color: var(--blue);
  }
  .hero h1 em {
    font-style: normal;
    color: var(--orange);
    font-family: inherit;
    position: relative;
  }
  .hero h1 .line { display: block; }

  .hero-sub {
    max-width: 540px;
    color: var(--ink-dim);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

  .hero-meta {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px dashed var(--line);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    max-width: 580px;
  }
  .hero-meta .m-k { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; }
  .hero-meta .m-v { font-size: 14.5px; color: var(--ink); font-weight: 500; }

  /* Hero visual */
  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 3.6;
    border: 1px solid var(--line);
    background:
      repeating-linear-gradient(135deg, transparent 0 18px, rgba(12,58,133,0.03) 18px 19px),
      linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
    overflow: hidden;
  }
  .hv-tag {
    position: absolute; top: 18px; left: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: #fff;
    padding: 6px 10px;
    background: var(--blue);
  }
  .hv-tag.r {
    left: auto; right: 18px;
    color: var(--ink-dim); background: #fff;
    border: 1px solid var(--line);
  }
  .hv-center {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    text-align: center;
  }
  .hv-center .gen {
    width: 60%;
    display: flex; flex-direction: column; align-items: center; gap: 18px;
    color: var(--ink-faint);
  }
  .hv-center .ph {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  }
  .hv-corner {
    position: absolute; width: 22px; height: 22px;
    border-color: var(--orange);
  }
  .hv-corner.tl { top: 10px; left: 10px; border-top: 2px solid; border-left: 2px solid; }
  .hv-corner.tr { top: 10px; right: 10px; border-top: 2px solid; border-right: 2px solid; }
  .hv-corner.bl { bottom: 10px; left: 10px; border-bottom: 2px solid; border-left: 2px solid; }
  .hv-corner.br { bottom: 10px; right: 10px; border-bottom: 2px solid; border-right: 2px solid; }

  .hv-readout {
    position: absolute; left: 18px; right: 18px; bottom: 18px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(6px);
  }
  .hv-readout > div {
    padding: 12px 14px;
    border-right: 1px solid var(--line-soft);
  }
  .hv-readout > div:last-child { border-right: 0; }
  .hv-readout .k { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.14em; }
  .hv-readout .v { font-family: 'Archivo Narrow', sans-serif; font-size: 22px; font-weight: 600; color: var(--blue); margin-top: 4px; }
  .hv-readout .v .u { font-size: 11px; color: var(--ink-faint); margin-left: 3px; letter-spacing: 0.1em; font-weight: 500; }

  /* ── Stats strip ─────────────────────────────────────────── */
  .stats {
    border-bottom: var(--rule);
    background: var(--blue);
    color: #fff;
    padding-top: 80px;
  }
  .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
  .stat {
    padding: 60px 32px;
    border-right: 1px solid rgba(255,255,255,0.10);
    position: relative;
  }
  .stat:last-child { border-right: 0; }
  .stat .n {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 88px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    display: flex; align-items: baseline; gap: 6px;
  }
  .stat .n .pct { color: var(--orange); font-size: 38px; }
  .stat .l {
    margin-top: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  .stat .idx {
    position: absolute; top: 22px; right: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--orange);
  }

  /* ── Section heading shared ──────────────────────────────── */
  section { padding: 120px 0; border-bottom: var(--rule); position: relative; }
  .sect-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 64px;
  }
  .sect-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
  }
  .sect-tag .num { color: var(--ink-faint); margin-right: 10px; font-weight: 400; }
  .sect-title {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(36px, 4.6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.015em;
    margin: 20px 0 0;
    color: var(--blue);
  }
  .sect-lede {
    font-size: 17px;
    color: var(--ink-dim);
    line-height: 1.65;
    max-width: 560px;
  }

  /* ── Services ────────────────────────────────────────────── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .svc {
    background: #fff;
    padding: 36px 32px 32px;
    grid-column: span 4;
    display: flex; flex-direction: column;
    min-height: 280px;
    position: relative;
    transition: all .25s ease;
  }
  .svc:hover { background: var(--bg-soft); }
  .svc:hover .svc-arrow { color: var(--orange); transform: translate(4px, -4px); }
  .svc.feature {
    grid-column: span 8;
    min-height: 320px;
    background: var(--blue);
    color: #fff;
  }
  .svc.feature .svc-num { color: var(--orange); }
  .svc.feature h3 { color: #fff; }
  .svc.feature p { color: rgba(255,255,255,0.78); }
  .svc.feature:hover { background: #0a2f6c; }
  .svc.feature:hover .svc-arrow { color: var(--orange); }
  .svc.feature .svc-arrow { color: rgba(255,255,255,0.5); }
  .svc.feature .chip { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
  .svc-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 32px;
  }
  .svc-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; color: var(--ink-faint);
    letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 500;
  }
  .svc-arrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px; color: var(--ink-faint);
    transition: transform .25s ease, color .25s ease;
  }
  .svc h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    color: var(--blue);
  }
  .svc.feature h3 { font-size: 40px; }
  .svc p {
    margin: 0;
    color: var(--ink-dim);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 440px;
  }
  .svc-foot {
    margin-top: auto;
    padding-top: 28px;
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .chip {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    padding: 5px 9px;
    border: 1px solid var(--line);
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #fff;
  }

  /* ── FPT feature ─────────────────────────────────────────── */
  .fpt {
    background: var(--bg-soft);
  }
  .fpt-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .fpt-text h2 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 5.2vw, 76px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 24px 0 24px;
    color: var(--blue);
  }
  .fpt-text h2 .am { color: var(--orange); }
  .fpt-text p {
    color: var(--ink-dim);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 520px;
  }
  .fpt-specs {
    margin-top: 32px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
  }
  .fpt-spec {
    padding: 22px 0;
    border-right: 1px dashed var(--line);
  }
  .fpt-spec:nth-child(2n) { border-right: 0; padding-left: 28px; }
  .fpt-spec:nth-child(n+3) { border-top: 1px dashed var(--line); }
  .fpt-spec .v {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 40px; font-weight: 600;
    line-height: 1;
    color: var(--blue);
  }
  .fpt-spec .v .u { font-size: 14px; color: var(--ink-faint); margin-left: 4px; font-weight: 500; }
  .fpt-spec .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 10px;
  }

  .fpt-visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
    border: 1px solid var(--line);
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 40%, rgba(242,127,5,0.10) 0%, transparent 55%),
      linear-gradient(180deg, #fff, var(--bg-soft));
  }
  .fpt-visual .grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(12,58,133,0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(12,58,133,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .fpt-visual .ph-c {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: var(--ink-faint);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  }
  .fpt-visual .model-tag {
    position: absolute; top: 22px; left: 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-dim);
  }
  .fpt-visual .model-tag b { color: var(--orange); font-weight: 600; }
  .fpt-visual .badge {
    position: absolute; bottom: 24px; right: 24px;
    border: 1px solid var(--blue);
    padding: 14px 18px;
    background: #fff;
  }
  .fpt-visual .badge .t1 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--orange); font-weight: 600;
  }
  .fpt-visual .badge .t2 {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 22px; font-weight: 600; margin-top: 4px; color: var(--blue);
  }

  /* ── Products ────────────────────────────────────────────── */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .product {
    border: 1px solid var(--line);
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: all .2s ease;
  }
  .product:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 12px 30px -18px rgba(12,58,133,0.25); }
  .product:hover .p-arr { color: var(--orange); }
  .p-img {
    aspect-ratio: 4 / 3.2;
    background:
      repeating-linear-gradient(45deg, transparent 0 14px, rgba(12,58,133,0.025) 14px 15px),
      linear-gradient(180deg, var(--bg-soft), #fff);
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .p-img .num {
    position: absolute; top: 14px; left: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; letter-spacing: 0.14em; color: var(--ink-faint);
  }
  .p-img .new {
    position: absolute; top: 14px; right: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: #fff; background: var(--red);
    padding: 4px 8px; font-weight: 600;
  }
  .p-img .ph {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-faint);
  }
  .p-body { padding: 22px 22px 24px; }
  .p-cat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
  }
  .p-title {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.15;
    margin: 8px 0 14px;
    color: var(--blue);
  }
  .p-row {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: var(--ink-dim);
  }
  .p-arr { font-size: 16px; color: var(--ink-faint); transition: color .2s; }

  /* ── References ──────────────────────────────────────────── */
  .refs { background: var(--bg-soft); }
  .refs-text {
    max-width: 760px;
    margin-bottom: 56px;
  }
  .refs-text h2 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(36px, 4.6vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.015em;
    margin: 18px 0 22px;
    color: var(--blue);
  }
  .refs-text p {
    color: var(--ink-dim);
    font-size: 16.5px;
    line-height: 1.7;
  }
  .logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--line);
    background: #fff;
  }
  .logo-cell {
    aspect-ratio: 5 / 2.6;
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    display: grid; place-items: center;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--ink-dim);
    letter-spacing: 0.02em;
    transition: all .2s;
  }
  .logo-cell:hover { color: var(--blue); background: var(--bg-soft); }
  .logo-cell:nth-child(6n) { border-right: 0; }
  .logo-cell:nth-last-child(-n+6) { border-bottom: 0; }

  .refs-foot {
    margin-top: 44px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
  }
  .refs-foot .mono { color: var(--ink-faint); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }

  /* ── Contact ─────────────────────────────────────────────── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 96px;
    align-items: start;
  }
  .contact h2 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(44px, 5.8vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 24px 0 0;
    color: var(--blue);
  }
  .contact h2 .am { color: var(--orange); }
  .contact-lede {
    margin-top: 28px;
    color: var(--ink-dim);
    font-size: 17px;
    max-width: 480px;
    line-height: 1.65;
  }
  .contact-cta {
    margin-top: 36px;
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .info-list {
    border-top: 1px solid var(--line);
  }
  .info-item {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: center;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    gap: 24px;
  }
  .info-item .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }
  .info-item .v {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--blue);
    line-height: 1.25;
  }
  .info-item .v small { display: block; font-size: 13px; color: var(--ink-dim); font-family: 'Archivo', sans-serif; font-weight: 400; margin-top: 3px; letter-spacing: 0; }
  .info-item .a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--orange);
    font-weight: 600;
  }

  /* ── Footer ──────────────────────────────────────────────── */
  footer {
    background: var(--blue);
    color: #fff;
    padding: 80px 0 32px;
  }
  footer .brand-name .b1 { color: #fff; }
  footer .brand-name .b2 { color: rgba(255,255,255,0.5); }
  footer .brand-mark { background: #fff; }
  footer .brand-mark svg { color: var(--blue); }
  footer .brand-mark::after { background: var(--orange); }

  .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .foot-brand .blurb {
    margin-top: 22px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
  }
  .foot-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 22px;
    font-weight: 600;
  }
  .foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .foot-col a { color: rgba(255,255,255,0.78); font-size: 14px; transition: color .2s; }
  .foot-col a:hover { color: var(--orange-2); }
  .foot-bottom {
    margin-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .socials { display: flex; gap: 10px; }
  .socials a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.18);
    display: grid; place-items: center;
    color: rgba(255,255,255,0.75);
    transition: all .2s;
  }
  .socials a:hover { color: #fff; background: var(--orange); border-color: var(--orange); }
  .socials svg { width: 14px; height: 14px; }

  /* ── Responsive ──────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .nav-items { display: none; }
    .hamburger { display: flex; }
    .quick-tiles { grid-template-columns: repeat(2, 1fr); margin-top: 36px; margin-bottom: -50px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 560px; aspect-ratio: 4 / 3.6; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat { border-bottom: 1px solid rgba(255,255,255,0.10); }
    .stat:nth-last-child(-n+2) { border-bottom: 0; }
    .stat:nth-child(2n) { border-right: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .svc, .svc.feature { grid-column: span 1; }
    .fpt-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .logos { grid-template-columns: repeat(3, 1fr); }
    .logo-cell:nth-child(6n) { border-right: 1px solid var(--line-soft); }
    .logo-cell:nth-child(3n) { border-right: 0; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 80px 0; }
    .stats { padding-top: 70px; }
    .sect-head { grid-template-columns: 1fr; gap: 18px; }
    .info-item { grid-template-columns: 1fr; gap: 6px; }
    .info-item .a { display: none; }
  }
  @media (max-width: 640px) {
    .wrap { padding: 0 18px; }
    .util .row { height: 36px; }
    .util .row span { font-size: 10.5px; letter-spacing: 0.06em; }
    .util-r { display: none; }
    .nav { grid-template-columns: 1fr auto; height: 68px; gap: 12px; }
    .nav-cta { gap: 8px; }
    .phone-pill { display: none; }
    .nav-cta .btn:not(.hamburger) { padding: 10px 13px; font-size: 12px; }
    .brand-name .b1 { font-size: 13px; }
    .brand-name .b2 { font-size: 9.5px; }
    .brand-mark { width: 40px; height: 40px; }

    .hero { padding: 48px 0 68px; }
    .hero h1 { font-size: 42px; }
    .hero .eyebrow { font-size: 10px; padding: 6px 12px; margin-bottom: 22px; }
    .hero-sub { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-actions .btn { justify-content: center; }
    .hero-visual { aspect-ratio: 4 / 4.4; }
    .hv-readout { grid-template-columns: repeat(2, 1fr); }
    .hv-readout > div:nth-child(2) { border-right: 0; }
    .hv-readout > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
    .hv-readout .v { font-size: 18px; }

    .quick-tiles { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; margin-bottom: -36px; }
    .qt { min-height: auto; padding: 18px 18px 16px; }

    .stat { padding: 32px 20px; }
    .stat .n { font-size: 52px; }
    .stat .n .pct { font-size: 22px; }
    .stat .l { font-size: 10.5px; }

    section { padding: 60px 0; }
    .sect-title { font-size: 34px; }
    .sect-lede { font-size: 14.5px; }
    .svc { padding: 26px 22px; min-height: auto; }
    .svc h3, .svc.feature h3 { font-size: 24px; }
    .fpt-text h2 { font-size: 36px; }
    .fpt-specs { grid-template-columns: 1fr; }
    .fpt-spec { border-right: 0 !important; padding-left: 0 !important; }
    .fpt-spec:nth-child(n+2) { border-top: 1px dashed var(--line); }
    .fpt-spec .v { font-size: 30px; }

    .products-grid { grid-template-columns: 1fr; }
    .logos { grid-template-columns: repeat(2, 1fr); }
    .logo-cell:nth-child(3n) { border-right: 1px solid var(--line-soft); }
    .logo-cell:nth-child(2n) { border-right: 0; }
    .logo-cell { font-size: 16px; }

    .contact h2 { font-size: 38px; }
    .contact-lede { font-size: 15px; }
    .info-item .v { font-size: 19px; }

    footer { padding: 56px 0 24px; }
    .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .foot-bottom { font-size: 10px; gap: 14px; }
  }
</style>

  /* ═════════════════════════════════════════════════════════
     SUB-PAGE PATTERNS
     ═════════════════════════════════════════════════════════ */

  /* ── Page header ─────────────────────────────────────────── */
  .page-header {
    position: relative;
    padding: 56px 0 64px;
    border-bottom: var(--rule);
    background:
      radial-gradient(700px 360px at 90% 10%, rgba(242,127,5,0.10), transparent 60%),
      radial-gradient(500px 320px at 0% 100%, rgba(12,58,133,0.06), transparent 60%),
      var(--bg);
  }
  .breadcrumb {
    display: flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
  }
  .breadcrumb a { color: var(--ink-faint); transition: color .2s; }
  .breadcrumb a:hover { color: var(--orange); }
  .breadcrumb .sep { color: var(--line); }
  .breadcrumb .current { color: var(--orange); font-weight: 600; }

  .ph-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: end;
  }
  .ph-title {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 5.6vw, 84px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 6px 0 18px;
    color: var(--blue);
  }
  .ph-title .am { color: var(--orange); }
  .ph-lede {
    color: var(--ink-dim);
    font-size: 17px;
    line-height: 1.65;
    max-width: 540px;
    margin: 0;
  }
  .ph-meta {
    display: flex; flex-direction: column; gap: 14px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    background: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
  }
  .ph-meta .row {
    display: flex; justify-content: space-between; gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line);
  }
  .ph-meta .row:last-child { border-bottom: 0; padding-bottom: 0; }
  .ph-meta .k { color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.14em; }
  .ph-meta .v { color: var(--blue); font-weight: 600; text-align: right; }

  /* ── Section pattern (lighter than home sections) ────────── */
  .content-section { padding: 100px 0; border-bottom: var(--rule); }
  .content-section.alt { background: var(--bg-soft); }
  .content-section.dark { background: var(--blue); color: #fff; }
  .content-section.dark .sect-title { color: #fff; }
  .content-section.dark .sect-tag { color: var(--orange); }
  .content-section.dark .sect-lede { color: rgba(255,255,255,0.78); }

  /* Two-column text + sidebar */
  .two-col {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .prose h2 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    color: var(--blue);
    margin: 0 0 24px;
    letter-spacing: -0.01em;
  }
  .prose h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--blue);
    margin: 36px 0 12px;
  }
  .prose p {
    color: var(--ink-dim);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 18px;
  }
  .prose .lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 28px;
  }
  .prose ul { padding: 0; margin: 0 0 20px; list-style: none; }
  .prose ul li {
    padding: 10px 0 10px 24px;
    border-bottom: 1px dashed var(--line);
    color: var(--ink);
    font-size: 15px;
    position: relative;
  }
  .prose ul li::before {
    content: '→';
    position: absolute; left: 0; top: 10px;
    color: var(--orange);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
  }
  .prose blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--bg-soft);
    border-left: 3px solid var(--orange);
    font-size: 18px;
    line-height: 1.55;
    color: var(--ink);
    font-style: italic;
  }
  .prose blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* Sidebar card */
  .side-card {
    border: 1px solid var(--line);
    background: #fff;
    padding: 28px;
    position: sticky;
    top: 110px;
  }
  .side-card h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 18px;
    font-weight: 600;
  }
  .side-card .item {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
  }
  .side-card .item:last-child { border-bottom: 0; }
  .side-card .item .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .side-card .item .v {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 15px;
    color: var(--blue);
    font-weight: 600;
    text-align: right;
  }
  .side-card .cta { margin-top: 22px; display: block; text-align: center; }

  /* ── Feature blocks (used on multiple pages) ─────────────── */
  .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .feature-cell {
    background: #fff;
    padding: 40px 36px;
  }
  .feature-cell .fc-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    margin-bottom: 18px;
  }
  .feature-cell h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.1;
    color: var(--blue);
    margin: 0 0 12px;
  }
  .feature-cell p {
    color: var(--ink-dim);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
  }

  /* ── Timeline (history page) ─────────────────────────────── */
  .timeline {
    position: relative;
    padding-left: 0;
  }
  .timeline::before {
    content: ''; position: absolute;
    left: 90px; top: 0; bottom: 0;
    width: 1px; background: var(--line);
  }
  .tl-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 48px;
    padding: 36px 0;
    position: relative;
    align-items: start;
  }
  .tl-year {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--orange);
    line-height: 1;
    text-align: right;
    padding-right: 8px;
    letter-spacing: -0.01em;
  }
  .tl-item::before {
    content: ''; position: absolute;
    left: 86px; top: 44px;
    width: 9px; height: 9px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--orange);
    z-index: 1;
  }
  .tl-body {
    padding-left: 32px;
  }
  .tl-body h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--blue);
    margin: 0 0 8px;
    line-height: 1.2;
  }
  .tl-body p {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
  }
  .tl-body .chip { margin-top: 14px; display: inline-block; }

  /* ── Team grid ───────────────────────────────────────────── */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .team-card {
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
  }
  .team-photo {
    aspect-ratio: 4 / 4.4;
    background:
      repeating-linear-gradient(45deg, transparent 0 14px, rgba(12,58,133,0.04) 14px 15px),
      linear-gradient(180deg, var(--bg-soft), #fff);
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .team-photo .ph {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-faint);
  }
  .team-photo .role-tag {
    position: absolute; top: 12px; left: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: #fff; background: var(--blue);
    padding: 4px 8px;
  }
  .team-body { padding: 18px 20px 22px; }
  .team-name {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--blue);
    margin: 0 0 4px;
  }
  .team-title {
    font-size: 13.5px;
    color: var(--ink-dim);
  }

  /* ── Form ────────────────────────────────────────────────── */
  .form {
    background: #fff;
    border: 1px solid var(--line);
    padding: 40px 40px 36px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field.full { grid-column: 1 / -1; }
  .field label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .field label .req { color: var(--red); }
  .field input,
  .field select,
  .field textarea {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--bg-soft);
    padding: 14px 16px;
    transition: all .2s;
    outline: none;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(12,58,133,0.10);
  }
  .field textarea { resize: vertical; min-height: 110px; }
  .field .hint {
    font-size: 12.5px;
    color: var(--ink-faint);
  }
  .form-foot {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px dashed var(--line);
    gap: 16px; flex-wrap: wrap;
  }
  .form-foot .legal {
    font-size: 12px;
    color: var(--ink-faint);
    max-width: 320px;
    line-height: 1.5;
  }
  .checkbox {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px;
    color: var(--ink-dim);
    cursor: pointer;
  }
  .checkbox input { margin-top: 3px; accent-color: var(--orange); }

  /* ── Blog cards ──────────────────────────────────────────── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .blog-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 56px;
    border: 1px solid var(--line);
    background: #fff;
  }
  .blog-feature .b-img {
    aspect-ratio: 4 / 3;
    background:
      repeating-linear-gradient(45deg, transparent 0 14px, rgba(12,58,133,0.04) 14px 15px),
      linear-gradient(180deg, var(--bg-soft), #fff);
    position: relative;
  }
  .blog-feature .b-body { padding: 40px 40px; display: flex; flex-direction: column; }
  .blog-feature .b-cat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .blog-feature h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--blue);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
  }
  .blog-feature p {
    color: var(--ink-dim);
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0 0 24px;
  }
  .blog-feature .b-meta {
    margin-top: auto;
    display: flex; justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .blog-card {
    border: 1px solid var(--line);
    background: #fff;
    display: flex; flex-direction: column;
    transition: all .2s;
  }
  .blog-card:hover { border-color: var(--orange); transform: translateY(-2px); }
  .blog-card .b-img {
    aspect-ratio: 16 / 10;
    background:
      repeating-linear-gradient(45deg, transparent 0 14px, rgba(12,58,133,0.04) 14px 15px),
      linear-gradient(180deg, var(--bg-soft), #fff);
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .blog-card .b-img .ph {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-faint);
  }
  .blog-card .b-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
  .blog-card .b-cat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .blog-card h4 {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--blue);
    margin: 0 0 12px;
  }
  .blog-card p {
    color: var(--ink-dim);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px;
  }
  .blog-card .b-meta {
    margin-top: auto;
    display: flex; justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
  }

  /* ── Tag/filter row ──────────────────────────────────────── */
  .filter-row {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .filter-row a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 8px 14px;
    border: 1px solid var(--line);
    color: var(--ink-dim);
    font-weight: 500;
    transition: all .2s;
  }
  .filter-row a:hover,
  .filter-row a.active {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-soft);
  }

  /* ── Jobs list (HR page) ─────────────────────────────────── */
  .job-list { border-top: 1px solid var(--line); }
  .job-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 32px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
  }
  .job-item .dept {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .job-item h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--blue);
    margin: 0;
    line-height: 1.2;
  }
  .job-item .job-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* ── CTA banner ──────────────────────────────────────────── */
  .cta-banner {
    background: var(--blue);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-bottom: var(--rule);
  }
  .cta-banner h2 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0 0 18px;
    color: #fff;
  }
  .cta-banner h2 .am { color: var(--orange); }
  .cta-banner p {
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }
  .cta-banner .actions {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  }
  .cta-banner .btn.ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
  .cta-banner .btn.ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }

  /* ── Sub-page responsive ─────────────────────────────────── */
  @media (max-width: 1024px) {
    .ph-grid { grid-template-columns: 1fr; gap: 32px; }
    .two-col { grid-template-columns: 1fr; gap: 48px; }
    .side-card { position: static; }
    .feature-row { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-feature { grid-template-columns: 1fr; }
    .blog-feature .b-body { padding: 32px 28px; }
    .timeline::before { left: 60px; }
    .tl-item { grid-template-columns: 60px 1fr; gap: 24px; }
    .tl-item::before { left: 56px; }
    .tl-year { font-size: 24px; }
    .tl-body { padding-left: 20px; }
    .job-item { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
    .content-section { padding: 72px 0; }
  }
  @media (max-width: 640px) {
    .page-header { padding: 36px 0 44px; }
    .ph-title { font-size: 38px; }
    .ph-lede { font-size: 15px; }
    .ph-meta { padding: 18px 20px; }
    .team-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .form { padding: 28px 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .feature-cell { padding: 32px 24px; }
    .feature-cell h3 { font-size: 24px; }
    .cta-banner { padding: 60px 0; }
  }


  /* ═════════════════════════════════════════════════════════
     PRODUCT PORTFOLIO + RED ACCENT SYSTEM
     ═════════════════════════════════════════════════════════ */

  /* ── Red accent (semantic: urgency / action / availability) ── */
  .red-strip {
    background: var(--red);
    color: #fff;
    padding: 8px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
  }
  .red-strip .dot {
    display: inline-block; width: 6px; height: 6px;
    background: #fff; border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    animation: blink 1.5s infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* Red badge */
  .badge-red {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    padding: 4px 9px;
  }
  .badge-blue {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    padding: 4px 9px;
  }
  .badge-orange {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    padding: 4px 9px;
  }

  /* Whatsapp / urgent floating CTA */
  .float-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    background: var(--red);
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 28px -8px rgba(228,30,45,0.5);
    transition: all .2s;
  }
  .float-cta:hover { background: #c0151f; transform: translateY(-2px); }
  .float-cta svg { width: 18px; height: 18px; }

  /* ── Category portfolio (FPT-style) ──────────────────────── */
  .category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .category-card {
    position: relative;
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    transition: all .3s ease;
    display: flex; flex-direction: column;
  }
  .category-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(12,58,133,0.30);
  }
  .category-card:hover .cc-img::after { transform: scale(1.04); }
  .category-card:hover .cc-arr { color: var(--orange); transform: translate(6px, -6px); }
  .cc-img {
    position: relative;
    aspect-ratio: 5 / 4;
    background: linear-gradient(135deg, var(--blue) 0%, #1a52b3 100%);
    overflow: hidden;
    border-bottom: 4px solid var(--orange);
  }
  .cc-img::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
  }
  .cc-img::after {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--cc-illustration, none);
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    transition: transform .4s ease;
  }
  .cc-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 22px 24px;
    color: #fff;
  }
  .cc-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange-2);
    font-weight: 600;
  }
  .cc-illust {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.22);
    pointer-events: none;
  }
  .cc-illust svg { width: 56%; height: 56%; }
  .cc-tag {
    align-self: flex-start;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 10px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.18);
  }
  .cc-body {
    padding: 26px 28px 28px;
    display: flex; flex-direction: column; flex: 1;
  }
  .cc-title {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    color: var(--blue);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .cc-desc {
    color: var(--ink-dim);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 22px;
  }
  .cc-foot {
    margin-top: auto;
    padding-top: 18px;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px dashed var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-dim);
  }
  .cc-foot .meta-count { color: var(--orange); font-weight: 600; }
  .cc-arr {
    font-size: 18px;
    color: var(--ink-faint);
    transition: all .3s;
  }

  /* ── Sub-category navigator (in-page) ───────────────────── */
  .subcat-nav {
    display: flex; gap: 0;
    border: 1px solid var(--line);
    background: #fff;
    margin-bottom: 48px;
    overflow-x: auto;
  }
  .subcat-nav a {
    flex: 1;
    padding: 22px 24px;
    text-align: center;
    border-right: 1px solid var(--line);
    transition: all .2s;
    position: relative;
    min-width: 160px;
  }
  .subcat-nav a:last-child { border-right: 0; }
  .subcat-nav a:hover { background: var(--bg-soft); }
  .subcat-nav a.active {
    background: var(--blue);
    color: #fff;
  }
  .subcat-nav a.active::after {
    content: ''; position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 3px; background: var(--orange);
  }
  .subcat-nav .sn-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .subcat-nav a.active .sn-num { color: var(--orange-2); }
  .subcat-nav .sn-label {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: inherit;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .subcat-nav .sn-meta {
    margin-top: 4px;
    font-size: 12px;
    color: var(--ink-faint);
  }
  .subcat-nav a.active .sn-meta { color: rgba(255,255,255,0.7); }

  /* ── Engine / product card (in sub-category grid) ──────── */
  .engine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .engine-card {
    border: 1px solid var(--line);
    background: #fff;
    display: flex; flex-direction: column;
    transition: all .25s ease;
    overflow: hidden;
  }
  .engine-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(12,58,133,0.25);
  }
  .engine-card:hover .ec-img { background-position: center right; }
  .engine-card:hover .ec-cta { color: var(--orange); }
  .engine-card:hover .ec-cta::after { transform: translateX(3px); color: var(--orange); }

  .ec-img {
    aspect-ratio: 5 / 3;
    background:
      repeating-linear-gradient(135deg, transparent 0 16px, rgba(12,58,133,0.04) 16px 17px),
      linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: background .4s ease;
  }
  .ec-img .ec-ph {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: rgba(12,58,133,0.18);
  }
  .ec-img .ec-ph svg { width: 56%; height: 60%; }
  .ec-img .ec-model {
    position: absolute; top: 14px; left: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--blue);
    background: #fff;
    padding: 4px 9px;
    border: 1px solid var(--line);
    letter-spacing: 0.12em;
    font-weight: 600;
  }
  .ec-img .ec-badges {
    position: absolute; top: 14px; right: 14px;
    display: flex; gap: 6px;
  }
  .ec-body {
    padding: 22px 24px 22px;
    display: flex; flex-direction: column; flex: 1;
  }
  .ec-series {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .ec-title {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.15;
    color: var(--blue);
    margin: 0 0 6px;
    letter-spacing: -0.005em;
  }
  .ec-tagline {
    font-size: 13.5px;
    color: var(--ink-dim);
    line-height: 1.5;
    margin: 0 0 16px;
  }
  .ec-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-bottom: 18px;
  }
  .ec-specs > div {
    background: var(--bg-soft);
    padding: 10px 12px;
  }
  .ec-specs .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .ec-specs .v {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 15px;
    color: var(--blue);
    font-weight: 600;
    margin-top: 2px;
  }
  .ec-foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    display: flex; justify-content: space-between; align-items: center;
  }
  .ec-cta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    transition: color .2s;
  }
  .ec-cta::after {
    content: ' →';
    color: var(--ink-faint);
    transition: all .2s;
  }
  .ec-availability {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .ec-availability .dot { width: 6px; height: 6px; border-radius: 50%; }
  .ec-availability.in-stock { color: #1c8a4a; }
  .ec-availability.in-stock .dot { background: #22c55e; }
  .ec-availability.limited { color: var(--red); }
  .ec-availability.limited .dot { background: var(--red); animation: blink 1.5s infinite; }
  .ec-availability.order { color: var(--ink-dim); }
  .ec-availability.order .dot { background: var(--ink-faint); }

  /* ── Product detail layout ───────────────────────────────── */
  .product-detail {
    padding: 60px 0 100px;
    border-bottom: var(--rule);
  }
  .pd-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .pd-gallery {
    position: sticky;
    top: 110px;
  }
  .pd-main-img {
    aspect-ratio: 5 / 4;
    border: 1px solid var(--line);
    background:
      repeating-linear-gradient(135deg, transparent 0 18px, rgba(12,58,133,0.03) 18px 19px),
      linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
  }
  .pd-main-img .pd-ph {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: rgba(12,58,133,0.20);
  }
  .pd-main-img .pd-ph svg { width: 55%; height: 60%; }
  .pd-main-img .pd-corner {
    position: absolute;
    width: 28px; height: 28px;
    border-color: var(--orange);
  }
  .pd-main-img .pd-corner.tl { top: 12px; left: 12px; border-top: 2px solid; border-left: 2px solid; }
  .pd-main-img .pd-corner.tr { top: 12px; right: 12px; border-top: 2px solid; border-right: 2px solid; }
  .pd-main-img .pd-corner.bl { bottom: 12px; left: 12px; border-bottom: 2px solid; border-left: 2px solid; }
  .pd-main-img .pd-corner.br { bottom: 12px; right: 12px; border-bottom: 2px solid; border-right: 2px solid; }
  .pd-main-img .pd-model-tag {
    position: absolute; top: 16px; left: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #fff;
    background: var(--blue);
    padding: 5px 10px;
    letter-spacing: 0.14em;
    font-weight: 600;
  }
  .pd-main-img .pd-badges {
    position: absolute; top: 16px; right: 16px;
    display: flex; gap: 6px;
  }
  .pd-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .pd-thumb {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line);
    background:
      linear-gradient(180deg, var(--bg-soft), #fff);
    display: grid; place-items: center;
    cursor: pointer;
    color: var(--ink-faint);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.1em;
    transition: all .2s;
  }
  .pd-thumb:hover { border-color: var(--orange); color: var(--blue); }
  .pd-thumb.active { border-color: var(--orange); border-width: 2px; }

  .pd-info { padding-top: 4px; }
  .pd-bcrumb {
    display: flex; align-items: center; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }
  .pd-bcrumb a { color: var(--ink-faint); transition: color .2s; }
  .pd-bcrumb a:hover { color: var(--orange); }
  .pd-bcrumb .sep { color: var(--line); }
  .pd-series {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .pd-title {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 4.6vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    color: var(--blue);
    margin: 0 0 14px;
  }
  .pd-subtitle {
    font-size: 17px;
    color: var(--ink-dim);
    line-height: 1.55;
    margin: 0 0 28px;
    max-width: 520px;
  }

  .pd-badges-inline {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 28px;
  }

  /* Headline spec rail (large numbers) */
  .pd-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    background: #fff;
    margin-bottom: 32px;
  }
  .pd-rail > div {
    padding: 22px 22px;
    border-right: 1px solid var(--line);
  }
  .pd-rail > div:last-child { border-right: 0; }
  .pd-rail .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }
  .pd-rail .v {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: var(--blue);
    letter-spacing: -0.01em;
  }
  .pd-rail .v .u {
    font-size: 13px;
    color: var(--ink-faint);
    font-weight: 500;
    margin-left: 4px;
    letter-spacing: 0.04em;
  }

  /* Spec table */
  .spec-section { margin-top: 36px; }
  .spec-section h2 {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--blue);
    margin: 0 0 18px;
    letter-spacing: -0.005em;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
  }
  .spec-table {
    border: 1px solid var(--line);
    background: #fff;
    border-collapse: collapse;
    width: 100%;
    font-size: 14.5px;
  }
  .spec-table tr { border-bottom: 1px solid var(--line); }
  .spec-table tr:last-child { border-bottom: 0; }
  .spec-table tr:nth-child(odd) { background: var(--bg-soft); }
  .spec-table th, .spec-table td {
    padding: 14px 18px;
    text-align: left;
  }
  .spec-table th {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    width: 40%;
  }
  .spec-table td {
    color: var(--blue);
    font-weight: 600;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
  }

  /* CTA strip in product detail */
  .pd-cta {
    margin-top: 32px;
    padding: 28px 28px;
    background: var(--blue);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
  }
  .pd-cta-title {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px;
  }
  .pd-cta-sub {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    margin: 0;
  }
  .pd-cta .actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .pd-cta .btn.ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
  .pd-cta .btn.ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }
  .pd-cta .btn.urgent { background: var(--red); border-color: var(--red); color: #fff; }
  .pd-cta .btn.urgent:hover { background: #c0151f; border-color: #c0151f; }

  /* Features block */
  .pd-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 36px;
  }
  .pd-feat {
    background: #fff;
    padding: 22px 22px;
  }
  .pd-feat .icon {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    color: var(--orange);
    margin-bottom: 14px;
  }
  .pd-feat .icon svg { width: 22px; height: 22px; }
  .pd-feat h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--blue);
    margin: 0 0 6px;
  }
  .pd-feat p {
    font-size: 13px;
    color: var(--ink-dim);
    line-height: 1.55;
    margin: 0;
  }

  /* Related products */
  .related-section { padding: 80px 0 100px; background: var(--bg-soft); border-bottom: var(--rule); }
  .related-section .sect-head { margin-bottom: 40px; }

  /* ── Responsive ────────────────────────────────────────── */
  @media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .engine-grid { grid-template-columns: repeat(2, 1fr); }
    .subcat-nav a { min-width: 140px; padding: 18px 16px; }
    .pd-grid { grid-template-columns: 1fr; gap: 40px; }
    .pd-gallery { position: static; }
    .pd-features { grid-template-columns: 1fr; }
    .pd-cta { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .category-grid { grid-template-columns: 1fr; gap: 16px; }
    .engine-grid { grid-template-columns: 1fr; gap: 16px; }
    .pd-rail { grid-template-columns: 1fr; }
    .pd-rail > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .pd-rail > div:last-child { border-bottom: 0; }
    .pd-title { font-size: 36px; }
    .float-cta {
      right: 14px; bottom: 14px;
      padding: 12px 14px;
      font-size: 12px;
    }
    .float-cta .ft-label { display: none; }
    .subcat-nav { flex-direction: column; }
    .subcat-nav a { border-right: 0; border-bottom: 1px solid var(--line); min-width: 0; }
    .subcat-nav a:last-child { border-bottom: 0; }
  }


  /* ═════════════════════════════════════════════════════════
     BOLDER RED ACCENT + NEW PATTERNS
     ═════════════════════════════════════════════════════════ */

  /* Red corner ribbon */
  .corner-ribbon {
    position: absolute;
    top: 0; right: 0;
    background: var(--red);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 14px 6px 16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%);
    z-index: 2;
  }

  /* Red highlight section accent */
  .accent-red-top {
    border-top: 4px solid var(--red);
    padding-top: 14px;
  }
  .accent-red-side {
    border-left: 4px solid var(--red);
    padding-left: 22px;
  }

  /* Red urgency banner */
  .urgency-bar {
    background: var(--red);
    color: #fff;
    padding: 14px 0;
    position: relative;
    overflow: hidden;
  }
  .urgency-bar::before {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg,
      transparent 0 12px, rgba(255,255,255,0.05) 12px 13px);
    pointer-events: none;
  }
  .urgency-bar .row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px;
    position: relative;
    flex-wrap: wrap;
  }
  .urgency-bar .left { display: flex; align-items: center; gap: 14px; font-weight: 600; }
  .urgency-bar .icon {
    width: 32px; height: 32px;
    background: #fff; color: var(--red);
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
  }
  .urgency-bar h2,
  .urgency-bar .title {
    margin: 0;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.1;
    color: #fff;
  }
  .urgency-bar .sub {
    font-size: 12.5px;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
    font-weight: 400;
  }
  .urgency-bar .btn.urgent {
    background: #fff;
    color: var(--red);
    border-color: #fff;
    font-weight: 700;
  }
  .urgency-bar .btn.urgent:hover { background: #1a1208; color: #fff; border-color: #1a1208; }

  /* Stamp badge */
  .stamp {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid var(--red);
    color: var(--red);
    background: rgba(228,30,45,0.06);
    padding: 8px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    transform: rotate(-1.5deg);
  }
  .stamp.blue { border-color: var(--blue); color: var(--blue); background: rgba(12,58,133,0.05); }
  .stamp.orange { border-color: var(--orange); color: var(--orange); background: rgba(242,127,5,0.06); }
  .stamp .dot { width: 6px; height: 6px; background: currentColor; border-radius: 50%; }

  /* ── Brand / Partner page hero ──────────────────────────── */
  .brand-hero {
    position: relative;
    padding: 0;
    background: var(--blue);
    color: #fff;
    overflow: hidden;
  }
  .brand-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(600px 320px at 88% 12%, rgba(242,127,5,0.18), transparent 60%),
      radial-gradient(500px 320px at 10% 90%, rgba(228,30,45,0.12), transparent 60%);
    pointer-events: none;
  }
  .brand-hero::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 33%, var(--red) 33%, var(--red) 66%, var(--blue-2) 66%);
  }
  .brand-hero-inner {
    position: relative;
    padding: 64px 0 70px;
  }
  .brand-hero .breadcrumb { color: rgba(255,255,255,0.5); margin-bottom: 18px; }
  .brand-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
  .brand-hero .breadcrumb a:hover { color: var(--orange-2); }
  .brand-hero .breadcrumb .current { color: var(--orange-2); }
  .brand-hero .breadcrumb .sep { color: rgba(255,255,255,0.20); }

  .brand-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: end;
  }
  .brand-relation {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 18px;
    background: var(--red);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .brand-relation.distributor { background: var(--red); }
  .brand-relation.master { background: var(--orange); }
  .brand-relation.dealer { background: var(--blue-2); }
  .brand-relation.service { background: var(--blue-2); }
  .brand-relation .year {
    background: rgba(0,0,0,0.25);
    padding: 2px 8px;
    border-radius: 2px;
    color: #fff;
  }

  .brand-h1 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 18px;
    text-transform: uppercase;
  }
  .brand-tagline {
    color: rgba(255,255,255,0.8);
    font-size: 19px;
    line-height: 1.55;
    max-width: 540px;
    margin: 0 0 28px;
  }
  .brand-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .brand-hero .btn { background: var(--orange); color: #fff; border-color: var(--orange); }
  .brand-hero .btn:hover { background: #d96f00; border-color: #d96f00; }
  .brand-hero .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
  .brand-hero .btn.ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }

  /* Brand logo card on right side */
  .brand-card {
    background: #fff;
    color: var(--ink);
    padding: 36px 32px;
    aspect-ratio: 1 / 1;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
    border-top: 6px solid var(--red);
  }
  .brand-card.distributor { border-top-color: var(--red); }
  .brand-card.master { border-top-color: var(--orange); }
  .brand-card.dealer { border-top-color: var(--blue); }
  .brand-card.service { border-top-color: var(--blue); }
  .brand-card .bc-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .brand-card .bc-logo {
    flex: 1;
    display: grid;
    place-items: center;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: var(--blue);
    text-align: center;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }
  .brand-card .bc-logo small {
    display: block;
    font-size: 13px;
    color: var(--ink-faint);
    letter-spacing: 0.14em;
    margin-top: 8px;
    font-weight: 500;
  }
  .brand-card .bc-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
  }
  .brand-card .bc-foot .since { color: var(--red); font-weight: 700; }

  /* ── Partnership matrix (landing page) ──────────────────── */
  .partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
  }
  .partner-card {
    background: #fff;
    padding: 28px 28px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column;
    transition: all .25s;
    position: relative;
    overflow: hidden;
  }
  .partner-card:hover { background: var(--bg-soft); }
  .partner-card:hover .pc-arr { transform: translate(4px, -4px); color: var(--orange); }
  .partner-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--pc-color, var(--blue));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s;
  }
  .partner-card:hover::before { transform: scaleY(1); }
  .partner-card:nth-child(3n) { border-right: 0; }
  .partner-card:nth-last-child(-n+3) { border-bottom: 0; }
  .pc-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 18px;
  }
  .pc-year {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--pc-color, var(--blue));
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .pc-relation {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--pc-color, var(--blue));
    border: 1px solid var(--pc-color, var(--blue));
    padding: 4px 8px;
    font-weight: 700;
  }
  .pc-name {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.05;
    color: var(--blue);
    margin: 8px 0 8px;
    text-transform: uppercase;
    letter-spacing: -0.005em;
  }
  .pc-tagline {
    color: var(--ink-dim);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 22px;
    flex: 1;
  }
  .pc-foot {
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-faint);
  }
  .pc-arr {
    color: var(--ink-faint);
    transition: all .25s;
    font-size: 16px;
  }

  /* ── Service detail page sections ───────────────────────── */
  .service-hero {
    position: relative;
    padding: 64px 0 60px;
    background:
      radial-gradient(800px 360px at 88% 10%, rgba(228,30,45,0.10), transparent 60%),
      radial-gradient(600px 320px at 10% 95%, rgba(242,127,5,0.10), transparent 60%),
      var(--bg);
    border-bottom: var(--rule);
  }
  .service-h1 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(44px, 5.8vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: var(--blue);
    margin: 14px 0 18px;
  }
  .service-h1 .am { color: var(--orange); }
  .service-h1 .red { color: var(--red); }

  .step-list {
    counter-reset: step;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
  }
  .step-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 28px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    background: #fff;
    transition: background .2s;
  }
  .step-item:hover { background: var(--bg-soft); }
  .step-item:last-child { border-bottom: 0; }
  .step-item::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .step-item h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--blue);
    margin: 0 0 6px;
  }
  .step-item p {
    color: var(--ink-dim);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
  }
  .step-item .step-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-align: right;
    line-height: 1.4;
  }

  /* FAQ accordion */
  .faq-list { border-top: 1px solid var(--line); }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-item summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 4px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--blue);
    cursor: pointer;
    list-style: none;
    gap: 16px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    color: var(--orange);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    transition: transform .2s;
  }
  .faq-item[open] summary::after {
    content: '−';
    color: var(--red);
  }
  .faq-item summary:hover { color: var(--orange); }
  .faq-item .faq-body {
    padding: 0 4px 22px;
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.65;
  }

  /* Capability cards (services) */
  .capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .capability-card {
    background: #fff;
    padding: 28px 24px;
  }
  .capability-card .icon {
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--red);
    display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .capability-card .icon svg { width: 22px; height: 22px; }
  .capability-card h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--blue);
    margin: 0 0 8px;
  }
  .capability-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-dim);
    margin: 0;
  }

  /* ── Form pages (large, multi-step style) ───────────────── */
  .form-page {
    padding: 60px 0 100px;
    background: var(--bg-soft);
    border-bottom: var(--rule);
  }
  .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
  }
  .form.large {
    padding: 48px 48px 44px;
  }
  .form-section {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px dashed var(--line);
  }
  .form-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .form-section h2 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--blue);
    margin: 0 0 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
  }
  .form-section h2 .num {
    color: var(--red);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-right: 10px;
    vertical-align: middle;
  }

  .field-row-3 { grid-template-columns: repeat(3, 1fr) !important; }
  .field-row-4 { grid-template-columns: repeat(4, 1fr) !important; }

  /* Radio / checkbox cards */
  .opt-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .opt-card {
    display: block;
    cursor: pointer;
    border: 1px solid var(--line);
    padding: 16px 18px;
    background: var(--bg-soft);
    transition: all .2s;
    position: relative;
  }
  .opt-card input { position: absolute; opacity: 0; pointer-events: none; }
  .opt-card:hover { border-color: var(--blue); }
  .opt-card .o-label {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 4px;
  }
  .opt-card .o-sub {
    font-size: 12px;
    color: var(--ink-dim);
    line-height: 1.4;
  }
  .opt-card input:checked + .o-label,
  .opt-card input:checked ~ .o-label { color: var(--red); }
  .opt-card:has(input:checked) {
    border-color: var(--red);
    background: rgba(228,30,45,0.04);
    box-shadow: inset 4px 0 0 var(--red);
    padding-left: 22px;
  }

  /* Form sidebar */
  .form-side {
    position: sticky;
    top: 110px;
  }
  .form-side-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    margin-bottom: 14px;
  }
  .form-side-card.urgent {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
  }
  .form-side-card.urgent h4 { color: #fff; }
  .form-side-card.urgent p { color: rgba(255,255,255,0.85); }
  .form-side-card.urgent .item .k { color: rgba(255,255,255,0.6); }
  .form-side-card.urgent .item .v { color: #fff; }
  .form-side-card.urgent .item { border-bottom-color: rgba(255,255,255,0.15); }
  .form-side-card.urgent .btn {
    background: #fff; color: var(--red); border-color: #fff; width: 100%; justify-content: center;
    margin-top: 12px;
  }
  .form-side-card.urgent .btn:hover { background: #1a1208; color: #fff; border-color: #1a1208; }

  .form-side-card h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 16px;
    font-weight: 600;
  }
  .form-side-card p {
    font-size: 13.5px;
    color: var(--ink-dim);
    line-height: 1.55;
    margin: 0 0 14px;
  }

  /* Progress / submit bar */
  .form-progress {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: 6px;
    margin-bottom: 32px;
  }
  .fp-step {
    text-align: center;
    padding: 14px 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    position: relative;
  }
  .fp-step.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
  }
  .fp-step.active::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -1px;
    height: 3px; background: var(--orange);
  }
  .fp-step .n {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    color: var(--ink-faint);
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .fp-step.active .n { color: var(--orange); }
  .fp-step .lbl {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }
  .fp-step.active .lbl { color: #fff; }

  /* ── Blog detail / article ──────────────────────────────── */
  .article-hero {
    padding: 56px 0 56px;
    border-bottom: var(--rule);
    background: #fff;
  }
  .article-meta-top {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-faint);
    flex-wrap: wrap;
  }
  .article-meta-top .cat {
    color: var(--red);
    font-weight: 700;
    padding: 5px 11px;
    border: 1px solid var(--red);
    background: rgba(228,30,45,0.06);
  }
  .article-meta-top .sep { color: var(--line); }
  .article-h1 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 5.4vw, 78px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--blue);
    margin: 0 0 26px;
    max-width: 920px;
  }
  .article-lede {
    font-size: 21px;
    color: var(--ink-dim);
    line-height: 1.55;
    max-width: 760px;
    font-weight: 400;
    margin: 0 0 32px;
  }
  .article-author-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 18px;
  }
  .article-author {
    display: flex; align-items: center; gap: 14px;
  }
  .author-avatar {
    width: 44px; height: 44px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
  }
  .author-name {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--blue);
    line-height: 1.2;
  }
  .author-role {
    font-size: 12.5px;
    color: var(--ink-dim);
  }
  .article-share {
    display: flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-faint);
  }
  .article-share a {
    width: 32px; height: 32px;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--ink-dim);
    transition: all .2s;
  }
  .article-share a:hover { border-color: var(--red); color: var(--red); }
  .article-share svg { width: 14px; height: 14px; }

  .article-cover {
    aspect-ratio: 16 / 7.5;
    background:
      repeating-linear-gradient(135deg, transparent 0 18px, rgba(12,58,133,0.04) 18px 19px),
      linear-gradient(180deg, var(--bg-soft), #fff);
    border: 1px solid var(--line);
    position: relative;
    margin-bottom: 0;
  }
  .article-cover .ph {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }

  .article-body {
    padding: 64px 0 60px;
    background: #fff;
    border-bottom: var(--rule);
  }
  .article-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 80px;
    align-items: start;
  }
  .article-content {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
    max-width: 720px;
  }
  .article-content > p,
  .article-content > ul,
  .article-content > ol,
  .article-content > blockquote,
  .article-content > figure,
  .article-content > h2,
  .article-content > h3 { margin: 0 0 22px; }
  .article-content h2 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.15;
    color: var(--blue);
    margin-top: 48px;
    letter-spacing: -0.01em;
  }
  .article-content h3 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--blue);
    margin-top: 32px;
  }
  .article-content a { color: var(--orange); border-bottom: 1px solid currentColor; }
  .article-content a:hover { color: var(--red); }
  .article-content blockquote {
    padding: 24px 28px;
    background: var(--bg-soft);
    border-left: 4px solid var(--red);
    font-size: 19px;
    color: var(--ink);
    font-style: italic;
    line-height: 1.55;
  }
  .article-content blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .article-content ul,
  .article-content ol { padding-left: 24px; }
  .article-content li { margin-bottom: 10px; }
  .article-content figure {
    aspect-ratio: 16 / 9;
    background:
      repeating-linear-gradient(135deg, transparent 0 16px, rgba(12,58,133,0.04) 16px 17px),
      linear-gradient(180deg, var(--bg-soft), #fff);
    border: 1px solid var(--line);
    position: relative;
    display: grid; place-items: center;
  }
  .article-content figure figcaption {
    position: absolute; bottom: 12px; left: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255,255,255,0.88);
    padding: 4px 8px;
  }
  .pull-quote {
    margin: 40px -24px;
    padding: 28px 32px;
    background: var(--blue);
    color: #fff;
    position: relative;
  }
  .pull-quote::before {
    content: '"';
    position: absolute;
    top: -10px; left: 24px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 100px;
    color: var(--orange);
    line-height: 1;
  }
  .pull-quote p {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    padding-left: 60px;
    color: #fff;
  }

  .article-side {
    position: sticky;
    top: 110px;
  }
  .toc-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    padding: 24px;
  }
  .toc-card h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 16px;
    font-weight: 700;
  }
  .toc-card ol {
    list-style: none;
    margin: 0; padding: 0;
    counter-reset: toc;
  }
  .toc-card li {
    counter-increment: toc;
    padding: 8px 0 8px 32px;
    border-bottom: 1px dashed var(--line);
    position: relative;
    font-size: 13.5px;
    line-height: 1.45;
  }
  .toc-card li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute; left: 0; top: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--orange);
    font-weight: 600;
  }
  .toc-card li:last-child { border-bottom: 0; }
  .toc-card a { color: var(--ink); transition: color .2s; }
  .toc-card a:hover { color: var(--red); }

  .related-articles { padding: 80px 0; background: var(--bg-soft); border-bottom: var(--rule); }

  /* ── Stats inside content (esp. brand & service pages) ── */
  .ic-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin: 36px 0;
  }
  .ic-stat {
    background: #fff;
    padding: 26px 24px;
    text-align: left;
  }
  .ic-stat .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
  }
  .ic-stat .v {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    color: var(--red);
    letter-spacing: -0.02em;
  }
  .ic-stat .v.blue { color: var(--blue); }
  .ic-stat .v.orange { color: var(--orange); }
  .ic-stat .v small {
    font-size: 13px;
    color: var(--ink-faint);
    margin-left: 4px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  /* ── Responsive (additions) ─────────────────────────────── */
  @media (max-width: 1024px) {
    .brand-grid { grid-template-columns: 1fr; gap: 36px; }
    .brand-card { aspect-ratio: auto; min-height: 240px; }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-card:nth-child(3n) { border-right: 1px solid var(--line); }
    .partner-card:nth-child(2n) { border-right: 0; }
    .partner-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
    .partner-card:nth-last-child(-n+2) { border-bottom: 0; }
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .opt-cards { grid-template-columns: repeat(2, 1fr); }
    .form-grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .form-side { position: static; }
    .article-grid { grid-template-columns: 1fr; gap: 36px; }
    .article-side { position: static; }
    .ic-stats { grid-template-columns: repeat(2, 1fr); }
    .step-item { grid-template-columns: 80px 1fr; gap: 18px; padding: 22px 20px; }
    .step-item::before { font-size: 42px; }
    .step-item .step-meta { display: none; }
  }
  @media (max-width: 640px) {
    .partner-grid { grid-template-columns: 1fr; }
    .partner-card { border-right: 0; border-bottom: 1px solid var(--line) !important; }
    .partner-card:last-child { border-bottom: 0 !important; }
    .capability-grid { grid-template-columns: 1fr; }
    .opt-cards { grid-template-columns: 1fr; }
    .form.large { padding: 28px 24px; }
    .ic-stats { grid-template-columns: 1fr; }
    .pull-quote { margin: 32px 0; padding: 24px; }
    .pull-quote p { font-size: 21px; padding-left: 0; }
    .pull-quote::before { display: none; }
    .article-content { font-size: 16px; }
    .urgency-bar .row { flex-direction: column; align-items: flex-start; }
    .brand-h1 { font-size: 44px; }
  }
