﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
:root {
      --white:       #ffffff;
      --off-white:   #f5f6f8;
      --grey-light:  #eef0f4;
      --grey-mid:    #d1d5de;
      --grey-text:   #6b7280;
      --grey-dark:   #374151;
      --black:       #111318;
      --orange:      #e8490c;
      --orange-light:#fff1ec;
      --blue:        #1a56db;
      --blue-light:  #eff4ff;
      --green:       #16a34a;
      --green-light: #f0fdf4;
      --shadow-sm:  0 1px 4px rgba(17,19,24,0.08);
      --shadow-md:  0 4px 20px rgba(17,19,24,0.10);
      --shadow-lg:  0 12px 48px rgba(17,19,24,0.13);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--white);
      color: var(--black);
      font-family: 'Roboto', sans-serif;
      font-size: 15px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    h1, h2, h3, h4, .brand, .stat-num { font-family: 'Montserrat', sans-serif; }

    /* == HEADER == */
    .site-header {
      position: sticky; top: 0; z-index: 999;
      background: var(--white);
      border-bottom: 1px solid var(--grey-light);
      box-shadow: var(--shadow-sm);
    }
    .nav-wrap {
      max-width: 1320px; margin: 0 auto;
      padding: 0 32px; height: 66px;
      display: flex; align-items: center; gap: 32px;
    }
    .brand-logo { width: 120px; height: auto; display: block; }
    .nav-area { margin-left: auto; display: flex; align-items: center; }
    .nav-contact-btn { margin-left: 12px; white-space: nowrap; flex-shrink: 0; }
    .main-nav, .nav-menu, .nav-submenu, .nav-childmenu { list-style: none; }
    .main-nav { display: flex; align-items: center; gap: 0; }
    .nav-item, .menu-item { position: relative; }

    .nav-link {
      display: inline-flex; align-items: center; gap: 4px;
      padding: 8px 13px;
      font-size: 12.5px; font-weight: 600;
      font-family: 'Roboto', sans-serif;
      color: var(--grey-dark);
      border-radius: 6px;
      transition: color 0.15s, background 0.15s;
      white-space: nowrap; cursor: pointer;
    }
    .nav-link:hover, .nav-item.is-open > .nav-link {
      color: var(--orange); background: var(--orange-light);
    }
    /* CTA button */
    .nav-item.nav-cta .nav-link {
      margin-left: 10px; padding: 9px 22px;
      background: var(--orange); color: var(--white) !important;
      border-radius: 6px; font-weight: 700;
    }
    .nav-item.nav-cta .nav-link:hover { background: #c73a08 !important; }

    /* chevron on items that have a dropdown */
    .nav-item.has-drop > .nav-link::after {
      content: '';
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      margin-left: 2px;
      opacity: 0.55;
      transition: transform 0.2s;
    }
    .nav-item.has-drop.is-open > .nav-link::after { transform: rotate(180deg); }

    /* -- L1 dropdown -- */
    .nav-menu {
      position: absolute;
      top: calc(100% + 6px); left: 0;
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: 10px;
      box-shadow: 0 8px 40px rgba(17,19,24,0.14);
      padding: 6px;
      width: 230px;
      z-index: 1000;
      /* hidden by default */
      visibility: hidden; opacity: 0; pointer-events: none;
      transform: translateY(8px);
      transition: opacity 0.18s, transform 0.18s, visibility 0s 0.18s;
    }
    .nav-menu.two-col {
      width: 480px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    /* open */
    .nav-item.has-drop:hover > .nav-menu,
    .nav-item.has-drop:focus-within > .nav-menu,
    .nav-menu.is-open {
      visibility: visible; opacity: 1; pointer-events: auto;
      transform: translateY(0);
      transition: opacity 0.18s, transform 0.18s, visibility 0s 0s;
    }
    /* flip right-side menus */
    .nav-menu.align-right { left: auto; right: 0; }

    /* -- L2 submenu -- */
    .nav-submenu {
      position: absolute;
      top: 0; left: 100%;
      margin-left: 4px;
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: 10px;
      box-shadow: 0 8px 40px rgba(17,19,24,0.14);
      padding: 6px;
      width: 220px;
      z-index: 1001;
      visibility: hidden; opacity: 0; pointer-events: none;
      transform: translateX(8px);
      transition: opacity 0.15s, transform 0.15s, visibility 0s 0.15s;
    }
    .menu-item.has-sub:hover > .nav-submenu,
    .menu-item.has-sub:focus-within > .nav-submenu,
    .nav-submenu.is-open {
      visibility: visible; opacity: 1; pointer-events: auto;
      transform: translateX(0);
      transition: opacity 0.15s, transform 0.15s, visibility 0s 0s;
    }
    /* flip submenu left if near right edge */
    .nav-submenu.flip-left { left: auto; right: 100%; margin-left: 0; margin-right: 4px; transform: translateX(-8px); }
    .nav-submenu.flip-left.is-open { transform: translateX(0); }

    /* -- L3 child menu -- */
    .nav-childmenu {
      position: absolute;
      top: 0; left: 100%;
      margin-left: 4px;
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: 10px;
      box-shadow: 0 8px 40px rgba(17,19,24,0.14);
      padding: 6px;
      width: 210px;
      z-index: 1002;
      visibility: hidden; opacity: 0; pointer-events: none;
      transform: translateX(8px);
      transition: opacity 0.15s, transform 0.15s, visibility 0s 0.15s;
    }
    .submenu-item { position: relative; }
    .submenu-item.has-child:hover > .nav-childmenu,
    .submenu-item.has-child:focus-within > .nav-childmenu {
      visibility: visible; opacity: 1; pointer-events: auto;
      transform: translateX(0);
      transition: opacity 0.15s, transform 0.15s, visibility 0s 0s;
    }
    .submenu-link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 9px 12px;
      font-size: 13px; font-weight: 600;
      color: var(--grey-dark);
      border-radius: 7px;
      transition: color 0.12s, background 0.12s;
      white-space: nowrap; cursor: pointer;
    }
    .submenu-link:hover,
    .submenu-item.has-child:hover > .submenu-link { color: var(--blue); background: var(--blue-light); }
    .submenu-item.has-child > .submenu-link::after {
      content: '›';
      font-size: 18px; color: var(--grey-mid); margin-left: 6px; flex-shrink: 0;
    }
    .child-link {
      display: flex;
      padding: 9px 12px;
      font-size: 13px; font-weight: 500;
      color: var(--grey-dark);
      border-radius: 7px;
      transition: color 0.12s, background 0.12s;
      white-space: nowrap;
    }
    .child-link:hover { color: var(--green); background: var(--green-light); }

    .menu-link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 9px 12px;
      font-size: 13px; font-weight: 500;
      color: var(--grey-dark);
      border-radius: 7px;
      transition: color 0.12s, background 0.12s;
      white-space: nowrap; cursor: pointer;
    }
    .menu-link:hover, .menu-item.is-open > .menu-link {
      color: var(--orange); background: var(--orange-light);
    }
    /* chevron for submenu items */
    .menu-item.has-sub > .menu-link::after {
      content: '>';
      font-size: 16px; color: var(--grey-mid);
      margin-left: 6px; flex-shrink: 0;
    }

    /* == HERO SLIDER == */
    .hero {
      position: relative; overflow: hidden;
      background: var(--white); height: 580px;
    }
    .hero-slides { position: relative; width: 100%; height: 100%; }
    .hero-slide {
      position: absolute; inset: 0;
      display: grid; grid-template-columns: 1fr 1fr;
      opacity: 0; pointer-events: none;
      transition: opacity 0.7s ease;
    }
    .hero-slide.active { opacity: 1; pointer-events: auto; }

    .slide-content {
      display: flex; flex-direction: column; justify-content: center;
      padding: 56px 56px 56px 64px; position: relative; z-index: 2;
    }
    .slide-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 10.5px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--orange); margin-bottom: 18px;
    }
    .slide-eyebrow::before {
      content: ''; width: 24px; height: 2px;
      background: var(--orange); border-radius: 2px;
    }
    .slide-content h1 {
      font-size: clamp(24px, 3.8vw, 42px); font-weight: 700;
      line-height: 1.1; letter-spacing: -0.025em;
      color: var(--black); margin-bottom: 18px;
    }
    .slide-content h1 em { font-style: normal; color: var(--blue); }
    .hero-slide:nth-child(2) .slide-eyebrow,
    .hero-slide:nth-child(2) .slide-content h1 em { color: var(--blue); }
    .hero-slide:nth-child(2) .slide-eyebrow::before { background: var(--blue); }
    .hero-slide:nth-child(3) .slide-eyebrow,
    .hero-slide:nth-child(3) .slide-content h1 em { color: var(--green); }
    .hero-slide:nth-child(3) .slide-eyebrow::before { background: var(--green); }
    .slide-content p { font-size: 15px; color: var(--grey-text); max-width: 460px; line-height: 1.7; margin-bottom: 28px; }
    .slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .slide-visual { position: relative; overflow: hidden; background: #0d1117; display: flex; align-items: stretch; justify-content: stretch; min-width: 0; }

    /* Full hero visual scenes */
    .hero-scene { position: relative; width: 100%; height: 100%; min-height: 580px; overflow: hidden; isolation: isolate; }
    .hero-scene-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.04); opacity: 0.82; }
    .hero-scene::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(13,17,23,0.92) 0%, rgba(13,17,23,0.56) 48%, rgba(13,17,23,0.2) 100%); }
    .hero-scene::after { content: ''; position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 72% 24%, rgba(232,73,12,0.28), transparent 34%), radial-gradient(circle at 20% 78%, rgba(26,86,219,0.24), transparent 32%); mix-blend-mode: screen; }
    .rings-mark { position: absolute; right: -64px; top: -42px; width: min(56vw, 520px); opacity: 0.36; z-index: 2; animation: floatY 6s ease-in-out infinite; pointer-events: none; }
    .hero-scene-content { position: relative; z-index: 3; height: 100%; padding: 46px; display: grid; align-content: end; gap: 18px; }
    .scene-kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-width: 520px; }
    .scene-kpi { min-height: 92px; padding: 18px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.09); backdrop-filter: blur(14px); border-radius: 10px; color: var(--white); box-shadow: 0 14px 34px rgba(0,0,0,0.18); }
    .scene-kpi strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
    .scene-kpi span { display: block; margin-top: 8px; font-size: 11px; line-height: 1.4; color: rgba(255,255,255,0.68); }
    .scene-strip { max-width: 560px; display: flex; flex-wrap: wrap; gap: 8px; }
    .scene-chip { display: inline-flex; align-items: center; min-height: 30px; padding: 7px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.82); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; backdrop-filter: blur(12px); }
    .scene-panel { width: min(520px, 92%); border: 1px solid rgba(255,255,255,0.13); border-radius: 12px; background: rgba(255,255,255,0.92); box-shadow: 0 22px 60px rgba(0,0,0,0.26); overflow: hidden; justify-self: end; }
    .scene-panel.dark { background: rgba(13,17,23,0.9); color: var(--white); backdrop-filter: blur(16px); }
    .scene-panel-head { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; border-bottom: 1px solid rgba(17,19,24,0.08); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-text); }
    .scene-panel.dark .scene-panel-head { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
    .scene-row { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid rgba(17,19,24,0.08); color: var(--grey-dark); font-size: 12.5px; }
    .scene-row:last-child { border-bottom: none; }
    .scene-panel.dark .scene-row { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.74); }
    .scene-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }
    .scene-dot.run { background: var(--orange); }
    .scene-status { margin-left: auto; padding: 3px 8px; border-radius: 4px; background: var(--green-light); color: var(--green); font-size: 9px; font-weight: 800; text-transform: uppercase; }
    .scene-panel.dark .scene-status { background: rgba(74,222,128,0.14); color: #4ade80; }
    .scene-status.run { background: var(--orange-light); color: var(--orange); }
    .scene-panel.dark .scene-status.run { background: rgba(232,73,12,0.16); color: #fb923c; }
    .scene-network { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.72; }
    .scene-network line { stroke: rgba(255,255,255,0.38); stroke-width: 1; stroke-dasharray: 7 6; animation: dashFlow 8s linear infinite; }
    .payment-node { position: absolute; z-index: 3; display: grid; place-items: center; width: 78px; height: 78px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.12); color: var(--white); backdrop-filter: blur(16px); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 900; text-align: center; line-height: 1.25; box-shadow: 0 16px 36px rgba(0,0,0,0.18); }
    .payment-node.center { left: 50%; top: 48%; transform: translate(-50%,-50%); width: 112px; height: 112px; background: rgba(17,19,24,0.76); }
    .payment-node.n1 { left: 18%; top: 20%; } .payment-node.n2 { right: 16%; top: 24%; } .payment-node.n3 { right: 12%; bottom: 22%; } .payment-node.n4 { left: 22%; bottom: 18%; }
    @keyframes dashFlow { to { stroke-dashoffset: -80; } }
    .slide-visual > .viz-orbit,
    .slide-visual > .viz-dashboard,
    .slide-visual > .viz-network { display: none; }
    .hero-scene { background: #0d1117; }
    .hero-scene-photo { display: none; }
    .hero-scene::before { z-index: 1; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 32px 32px; }
    .hero-scene::after { z-index: 2; background: rgba(255,255,255,0.02); }
    .rings-mark { display: none; }
    .assurance-radar { position: absolute; width: min(42vw, 370px); height: min(42vw, 370px); left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); pointer-events: none; }
    .assurance-radar::before, .assurance-radar::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }
    .assurance-radar::before { inset: 58px; }
    .assurance-radar::after { inset: 116px; }
    .radar-sweep { position: absolute; width: 50%; height: 50%; left: 50%; top: 50%; transform-origin: 0 0; background: linear-gradient(45deg, rgba(232,73,12,0.36), rgba(232,73,12,0)); clip-path: polygon(0 0, 100% 0, 0 100%); animation: radarSweep 4.2s linear infinite; }
    .radar-core { position: absolute; left: 50%; top: 50%; width: 116px; height: 116px; transform: translate(-50%, -50%); display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.94); border: 1px solid rgba(255,255,255,0.55); box-shadow: 0 22px 60px rgba(0,0,0,0.28); z-index: 5; }
    .radar-core img { width: 78px; height: 78px; object-fit: contain; }
    .assurance-node { position: absolute; z-index: 4; width: 104px; min-height: 44px; display: grid; place-items: center; padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.88); backdrop-filter: blur(14px); font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 800; text-align: center; line-height: 1.25; box-shadow: 0 14px 34px rgba(0,0,0,0.16); animation: nodeFloat 4s ease-in-out infinite; }
    .assurance-node::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); position: absolute; left: 9px; top: 9px; box-shadow: 0 0 0 5px rgba(22,163,74,0.12); }
    .assurance-node.orange::before { background: var(--orange); box-shadow: 0 0 0 5px rgba(232,73,12,0.13); }
    .assurance-node.blue::before { background: var(--blue); box-shadow: 0 0 0 5px rgba(26,86,219,0.13); }
    .assurance-node.n1 { left: 50%; top: 8%; transform: translateX(-50%); }
    .assurance-node.n2 { right: 8%; top: 27%; animation-delay: .3s; }
    .assurance-node.n3 { right: 13%; bottom: 18%; animation-delay: .6s; }
    .assurance-node.n4 { left: 50%; bottom: 8%; transform: translateX(-50%); animation-delay: .9s; }
    .assurance-node.n5 { left: 8%; bottom: 24%; animation-delay: 1.2s; }
    .assurance-node.n6 { left: 9%; top: 27%; animation-delay: 1.5s; }
    .hero-scene-content { align-content: end; padding: 38px; }
    .hero-scene-content { display: none; }
    .hero-scene-content .scene-panel { display: none; }
    .scene-kpis { max-width: none; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .scene-kpi { min-height: 76px; padding: 14px; background: rgba(255,255,255,0.09); }
    .scene-kpi strong { font-size: 24px; }
    .scene-kpi span { font-size: 10.5px; }
    .scene-strip { display: none; }
    .assurance-radar, .radar-core, .assurance-node, .scene-network, .payment-node { display: none; }
    .digital-command {
      position: absolute;
      inset: 42px;
      z-index: 6;
      display: grid;
      grid-template-rows: auto auto 1fr;
      gap: 18px;
      color: var(--white);
    }
    .digital-command::before {
      content: '';
      position: absolute;
      inset: -16px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      background: rgba(255,255,255,0.025);
      pointer-events: none;
    }
    .digital-command > * { position: relative; z-index: 1; }
    .command-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding-bottom: 18px;
    }
    .command-top span {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.48);
    }
    .command-top strong {
      max-width: 270px;
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      line-height: 1.18;
      text-align: right;
      color: var(--white);
    }
    .command-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 12px;
    }
    .command-panel {
      min-height: 136px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      background: rgba(255,255,255,0.055);
      padding: 18px;
      box-shadow: 0 18px 42px rgba(0,0,0,0.18);
    }
    .command-panel.command-primary { border-color: rgba(232,73,12,0.42); box-shadow: inset 4px 0 0 var(--orange), 0 18px 42px rgba(0,0,0,0.18); }
    .automation-command .command-panel.command-primary { border-color: rgba(26,86,219,0.45); box-shadow: inset 4px 0 0 var(--blue), 0 18px 42px rgba(0,0,0,0.18); }
    .payments-command .command-panel.command-primary { border-color: rgba(22,163,74,0.45); box-shadow: inset 4px 0 0 var(--green), 0 18px 42px rgba(0,0,0,0.18); }
    .command-panel span {
      display: block;
      margin-bottom: 18px;
      color: rgba(255,255,255,0.48);
      font-size: 11px;
    }
    .command-panel strong {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 38px;
      line-height: 1;
      font-weight: 900;
      color: var(--orange);
      margin-bottom: 12px;
    }
    .automation-command .command-panel strong { color: #60a5fa; }
    .payments-command .command-panel strong { color: #4ade80; }
    .command-panel small {
      display: block;
      color: rgba(255,255,255,0.62);
      font-size: 11px;
      line-height: 1.45;
    }
    .command-lanes {
      display: grid;
      align-content: end;
      gap: 10px;
    }
    .command-lane {
      display: grid;
      grid-template-columns: minmax(120px, 0.34fr) minmax(120px, 1fr) minmax(80px, 0.22fr);
      align-items: center;
      gap: 12px;
      min-height: 42px;
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 9px;
      background: rgba(255,255,255,0.04);
      overflow: hidden;
    }
    .command-lane b, .command-lane em {
      font-family: 'Montserrat', sans-serif;
      font-size: 10.5px;
      font-weight: 800;
      color: rgba(255,255,255,0.78);
      font-style: normal;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .command-lane em { text-align: right; color: var(--orange); }
    .automation-command .command-lane em { color: #60a5fa; }
    .payments-command .command-lane em { color: #4ade80; }
    .command-lane i {
      position: relative;
      height: 2px;
      background: rgba(255,255,255,0.13);
      overflow: hidden;
    }
    .command-lane i::before {
      content: '';
      position: absolute;
      top: 0;
      left: -30%;
      width: 30%;
      height: 2px;
      background: var(--orange);
      animation: packetMove 2.4s linear infinite;
    }
    .automation-command .command-lane i::before { background: #60a5fa; animation-duration: 2s; }
    .payments-command .command-lane i::before { background: #4ade80; animation-duration: 2.2s; }
    .command-lane:nth-child(2) i::before { animation-delay: 0.35s; }
    .command-lane:nth-child(3) i::before { animation-delay: 0.7s; }
    .command-lane:nth-child(4) i::before { animation-delay: 1.05s; }
    @keyframes packetMove { to { left: 100%; } }
    @keyframes radarSweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes ringBreathe { 0%,100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.04); } }
    @keyframes nodeFloat { 0%,100% { margin-top: 0; } 50% { margin-top: -8px; } }

    /* Orbit visual */
    .viz-orbit { position: relative; width: 380px; height: 380px; display: flex; align-items: center; justify-content: center; }
    .orbit-ring { position: absolute; border-radius: 50%; border: 1px solid var(--grey-mid); }
    .orbit-ring.r1 { width: 380px; height: 380px; border-color: rgba(232,73,12,0.15); animation: rotSlow 28s linear infinite; }
    .orbit-ring.r2 { width: 280px; height: 280px; border-color: rgba(26,86,219,0.2); animation: rotSlow 20s linear infinite reverse; border-style: dashed; }
    .orbit-ring.r3 { width: 185px; height: 185px; border-color: rgba(22,163,74,0.25); animation: rotSlow 14s linear infinite; }
    .orbit-dot { position: absolute; border-radius: 50%; }
    .orbit-ring.r1 .orbit-dot { width: 10px; height: 10px; top: -5px; left: calc(50% - 5px); background: var(--orange); box-shadow: 0 0 8px rgba(232,73,12,0.5); }
    .orbit-ring.r2 .orbit-dot { width: 9px; height: 9px; top: -4.5px; left: calc(50% - 4.5px); background: var(--blue); box-shadow: 0 0 8px rgba(26,86,219,0.5); }
    .orbit-ring.r2 .orbit-dot.d2 { top: auto; bottom: -4.5px; }
    .orbit-ring.r3 .orbit-dot { width: 8px; height: 8px; top: -4px; left: calc(50% - 4px); background: var(--green); box-shadow: 0 0 6px rgba(22,163,74,0.5); }
    .orbit-core { position: relative; z-index: 5; width: 110px; height: 110px; border-radius: 50%; background: var(--white); border: 2px solid var(--grey-light); box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; animation: floatY 4s ease-in-out infinite; }
    .orbit-core img { width: 70px; height: 70px; object-fit: contain; }
    .orbit-core-logo { filter: brightness(0); width: 60px; }
    .orbit-label { position: absolute; background: var(--white); border: 1px solid var(--grey-light); border-radius: 8px; padding: 10px 14px; box-shadow: var(--shadow-md); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; white-space: nowrap; animation: floatY 4s ease-in-out infinite; }
    .orbit-label span { display: block; font-family: 'Roboto', sans-serif; font-size: 10px; font-weight: 400; color: var(--grey-text); margin-top: 2px; }
    .orbit-label.l1 { top: 18px; left: 48%; transform: translateX(-50%); animation-delay: 0s; border-top: 2px solid var(--orange); }
    .orbit-label.l2 { right: 0; top: 38%; animation-delay: 0.5s; border-top: 2px solid var(--blue); }
    .orbit-label.l3 { bottom: 18px; left: 50%; transform: translateX(-50%); animation-delay: 1s; border-top: 2px solid var(--green); }
    .orbit-label.l4 { left: 0; top: 38%; animation-delay: 1.5s; border-top: 2px solid var(--orange); }

    /* Dashboard visual */
    .viz-dashboard { width: 420px; background: var(--white); border: 1px solid var(--grey-light); border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; animation: floatY 5s ease-in-out infinite; }
    .dash-header { background: var(--black); padding: 12px 18px; display: flex; align-items: center; gap: 8px; }
    .dash-dot { width: 9px; height: 9px; border-radius: 50%; }
    .dash-dot.r { background: #e8341c; } .dash-dot.y { background: #f5c518; } .dash-dot.g { background: #4ade80; }
    .dash-title { margin-left: 8px; font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
    .dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--grey-light); border-bottom: 1px solid var(--grey-light); }
    .dash-metric { background: var(--white); padding: 14px 16px; }
    .dash-metric-num { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; line-height: 1; }
    .dash-metric-num.orange { color: var(--orange); } .dash-metric-num.blue { color: var(--blue); } .dash-metric-num.green { color: var(--green); }
    .dash-metric-label { font-size: 10px; color: var(--grey-text); margin-top: 3px; }
    .dash-rows { padding: 4px 0; }
    .dash-row { display: flex; align-items: center; gap: 10px; padding: 10px 18px; border-bottom: 1px solid var(--grey-light); font-size: 12.5px; }
    .dash-row:last-child { border-bottom: none; }
    .dash-status { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .dash-status.pass { background: var(--green); } .dash-status.run { background: var(--orange); }
    .dash-row-text { flex: 1; color: var(--grey-dark); }
    .dash-badge { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
    .dash-badge.pass { background: var(--green-light); color: var(--green); }
    .dash-badge.run  { background: var(--orange-light); color: var(--orange); }

    /* Network visual */
    .viz-network { position: relative; width: 380px; height: 340px; }
    .net-node { position: absolute; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; box-shadow: var(--shadow-md); animation: pulse 3s ease-in-out infinite; text-align: center; line-height: 1.3; }
    .net-node.center { width: 90px; height: 90px; background: var(--black); color: var(--white); top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 10px; animation: none; }
    .net-node.n1 { width: 60px; height: 60px; background: var(--orange-light); color: var(--orange); top: 8%; left: 50%; transform: translateX(-50%); animation-delay: 0s; border: 1.5px solid rgba(232,73,12,0.25); }
    .net-node.n2 { width: 56px; height: 56px; background: var(--blue-light); color: var(--blue); top: 25%; right: 4%; animation-delay: 0.4s; border: 1.5px solid rgba(26,86,219,0.25); }
    .net-node.n3 { width: 56px; height: 56px; background: var(--green-light); color: var(--green); bottom: 16%; right: 10%; animation-delay: 0.8s; border: 1.5px solid rgba(22,163,74,0.25); }
    .net-node.n4 { width: 60px; height: 60px; background: var(--green-light); color: var(--green); bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; border: 1.5px solid rgba(22,163,74,0.25); }
    .net-node.n5 { width: 56px; height: 56px; background: var(--blue-light); color: var(--blue); bottom: 16%; left: 10%; animation-delay: 1.6s; border: 1.5px solid rgba(26,86,219,0.25); }
    .net-node.n6 { width: 56px; height: 56px; background: var(--orange-light); color: var(--orange); top: 25%; left: 4%; animation-delay: 2s; border: 1.5px solid rgba(232,73,12,0.25); }
    .viz-network svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

    /* Chart visual */
    .viz-chart { background: var(--white); border: 1px solid var(--grey-light); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 24px; width: 400px; animation: floatY 5s ease-in-out infinite; }
    .chart-title { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--black); margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
    .chart-legend { display: flex; gap: 12px; }
    .legend-dot { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: var(--grey-text); }
    .legend-dot::before { content: ''; width: 8px; height: 8px; border-radius: 2px; }
    .legend-dot.o::before { background: var(--orange); } .legend-dot.b::before { background: var(--blue); } .legend-dot.g::before { background: var(--green); }
    .chart-bars { display: flex; align-items: flex-end; gap: 12px; height: 160px; }
    .bar-group { flex: 1; display: flex; align-items: flex-end; gap: 3px; }
    .bar { flex: 1; border-radius: 3px 3px 0 0; animation: growBar 1.2s ease-out forwards; transform-origin: bottom; }
    .bar.orange { background: var(--orange); } .bar.blue { background: var(--blue); } .bar.green { background: var(--green); }
    @keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
    .chart-labels { display: flex; gap: 12px; margin-top: 10px; border-top: 1px solid var(--grey-light); padding-top: 10px; }
    .chart-label { flex: 1; font-size: 10px; color: var(--grey-text); text-align: center; }

    /* Slider controls */
    .hero-controls { position: absolute; bottom: 28px; left: 64px; z-index: 10; display: flex; align-items: center; gap: 16px; }
    .hero-dots { display: flex; gap: 8px; }
    .hero-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grey-mid); cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; padding: 0; }
    .hero-dot.active { background: var(--orange); transform: scale(1.3); }
    .hero-arrows { display: flex; gap: 6px; }
    .hero-arrow { width: 34px; height: 34px; border: 1px solid var(--grey-mid); border-radius: 50%; background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--grey-dark); transition: border-color 0.15s, background 0.15s; }
    .hero-arrow:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
    .hero-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--orange); width: 0; transition: width 0.1s linear; z-index: 10; }

    /* == STATS BAR == */
    .stats-bar { background: var(--black); border-top: 3px solid var(--orange); }
    .stats-bar-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
    .stat-item { padding: 30px 36px; border-right: 1px solid rgba(255,255,255,0.08); }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-size: 38px; font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
    .stat-num .ao { color: var(--orange); } .stat-num .ab { color: #60a5fa; } .stat-num .ag { color: #4ade80; }
    .stat-label { margin-top: 6px; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.03em; }

    /* == PLATFORM BAR == */
    .platform-bar { background: var(--off-white); border-bottom: 1px solid var(--grey-light); padding: 18px 32px; }
    .platform-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .platform-label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--grey-text); padding-right: 18px; border-right: 1px solid var(--grey-mid); white-space: nowrap; }
    .platform-chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .chip { padding: 5px 14px; border: 1px solid var(--grey-mid); border-radius: 100px; font-size: 11.5px; font-weight: 600; font-family: 'Montserrat', sans-serif; color: var(--grey-dark); background: var(--white); transition: border-color 0.15s, color 0.15s; }
    .chip:hover { border-color: var(--orange); color: var(--orange); }

    /* Customer logo marquee */
    .logo-marquee { background: var(--black); border-top: 3px solid var(--orange); border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
    .logo-marquee-inner { max-width: 1320px; margin: 0 auto; padding: 24px 32px; display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 28px; align-items: center; }
    .logo-marquee-label { color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; line-height: 1.45; }
    .logo-marquee-label span { display: block; margin-top: 5px; color: rgba(255,255,255,0.45); font-family: 'Roboto', sans-serif; font-size: 11px; font-weight: 500; }
    .logo-marquee-track-wrap { position: relative; overflow: hidden; }
    .logo-marquee-track-wrap::before,
    .logo-marquee-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 58px; z-index: 2; pointer-events: none; }
    .logo-marquee-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--black), rgba(17,19,24,0)); }
    .logo-marquee-track-wrap::after { right: 0; background: linear-gradient(270deg, var(--black), rgba(17,19,24,0)); }
    .logo-marquee-track { display: flex; width: max-content; gap: 14px; animation: logoScroll 28s linear infinite; }
    .logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
    .customer-logo { width: 156px; height: 58px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.72); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
    .customer-logo img { max-width: 118px; max-height: 34px; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); opacity: 0.78; }
    @keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }

    /* == BUTTONS == */
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 7px; font-family: 'Roboto', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; border: 2px solid transparent; transition: all 0.18s; letter-spacing: 0.02em; }
    .btn-primary { background: var(--blue);   color: var(--white); border-color: var(--blue); }
    .btn-primary:hover { background: #1344b8; border-color: #1344b8; }
    .btn-primary-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
    .btn-primary-blue:hover { background: #1344b8; border-color: #1344b8; }
    .btn-primary-green { background: var(--green); color: var(--white); border-color: var(--green); }
    .btn-primary-green:hover { background: #138d3f; border-color: #138d3f; }
    .btn-outline { background: transparent; color: var(--black); border-color: var(--grey-mid); }
    .btn-outline:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
    .btn-white { background: var(--white); color: var(--black); border-color: var(--white); font-family: 'Roboto', sans-serif; font-weight: 700; }
    .btn-white:hover { background: var(--off-white); }
    .btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); font-family: 'Roboto', sans-serif; font-weight: 700; }
    .btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

    /* == SECTIONS == */
    .section { padding: 88px 32px; }
    .section.alt { background: var(--off-white); }
    .section.grey { background: var(--grey-light); }
    .section-inner { max-width: 1320px; margin: 0 auto; }
    .section-header { margin-bottom: 52px; }
    .section-header-compact { margin-bottom: 32px; }
    .section-header-tight { margin-bottom: 28px; }
    .section-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange); margin-bottom: 12px; }
    .section-eyebrow.blue { color: var(--orange); } .section-eyebrow.green { color: var(--orange); }
    .section-header h2 { font-size: 32px; font-weight: 700; line-height: 1.12; color: var(--black); letter-spacing: -0.02em; max-width: 640px; }
    .section-header p { margin-top: 14px; font-size: 15.5px; color: var(--grey-text); max-width: 540px; line-height: 1.7; }

    /* Pillars */
    .pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .pillar { background: var(--white); border: 1px solid var(--grey-light); border-radius: 12px; padding: 36px 32px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
    .pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
    .pillar:nth-child(1)::before { background: var(--orange); }
    .pillar:nth-child(2)::before { background: var(--blue); }
    .pillar:nth-child(3)::before { background: var(--green); }
    .pillar-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 800; }
    .pillar:nth-child(1) .pillar-icon { background: var(--orange-light); color: var(--orange); }
    .pillar:nth-child(2) .pillar-icon { background: var(--blue-light); color: var(--blue); }
    .pillar:nth-child(3) .pillar-icon { background: var(--green-light); color: var(--green); }
    .pillar h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; color: var(--black); }
    .pillar p { font-size: 14px; color: var(--grey-text); line-height: 1.7; }
    .text-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
    .pillar:nth-child(1) .text-link { color: var(--orange); }
    .pillar:nth-child(2) .text-link { color: var(--blue); }
    .pillar:nth-child(3) .text-link { color: var(--green); }
    .text-link::after { content: '\2192'; }

    /* Services */
    /* == SERVICES REDESIGN == */
    .svc-layout { display: grid; grid-template-columns: 65fr 35fr; gap: 56px; align-items: start; }
    .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .svc-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: 10px; padding: 24px 22px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s; border-left: 3px solid transparent; display: flex; gap: 16px; align-items: flex-start; }
    .svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .svc-card.svc-active { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(232,73,12,0.2); background: var(--orange-light); }
    .svc-card:nth-child(1), .svc-card:nth-child(2) { border-left-color: var(--orange); }
    .svc-card:nth-child(3), .svc-card:nth-child(4) { border-left-color: var(--blue); }
    .svc-card:nth-child(5), .svc-card:nth-child(6) { border-left-color: var(--green); }
    .svc-num { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; color: var(--grey-mid); margin-bottom: 8px; }
    .svc-card h3 { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
    .svc-card p { font-size: 13px; color: var(--grey-text); line-height: 1.6; }
    .svc-icon { flex-shrink: 0; width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
    .svc-card:nth-child(1) .svc-icon, .svc-card:nth-child(2) .svc-icon { background: var(--orange-light); }
    .svc-card:nth-child(3) .svc-icon, .svc-card:nth-child(4) .svc-icon { background: var(--blue-light); }
    .svc-card:nth-child(5) .svc-icon, .svc-card:nth-child(6) .svc-icon { background: var(--green-light); }

    /* Services animated visual */
    .svc-visual { position: sticky; top: 90px; }
    .svc-viz-wrap { background: #0d1117; border-radius: 16px; padding: 22px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.07); }
    .svc-viz-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .svc-viz-title { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); }
    .svc-live-badge { display: flex; align-items: center; gap: 5px; font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 700; color: #4ade80; text-transform: uppercase; letter-spacing: 0.1em; }
    .svc-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: livePulse 1.2s ease-in-out infinite; }
    @keyframes livePulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(74,222,128,0.5); } 50%{ box-shadow: 0 0 0 5px rgba(74,222,128,0); } }
    .svc-workstreams {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-bottom: 14px;
      padding: 12px;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px;
      background: rgba(255,255,255,0.035);
    }
    .svc-workstream {
      min-height: 58px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      border-radius: 8px;
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.56);
      font-family: 'Montserrat', sans-serif;
      padding: 10px 12px;
      transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
    }
    .svc-workstream span {
      font-size: 9.5px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .svc-workstream b {
      font-size: 12px;
      line-height: 1.15;
      color: rgba(255,255,255,0.72);
    }
    .svc-workstream.active {
      color: var(--white);
      border-color: rgba(232,73,12,0.5);
      background: rgba(232,73,12,0.14);
      transform: translateY(-1px);
    }
    .svc-workstream.active b { color: var(--white); }
    /* Test runner rows */
    .svc-runner { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .svc-test-row { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 9px 12px; transition: border-color 0.3s, background 0.3s; }
    .svc-test-row.highlighted { border-color: rgba(232,73,12,0.44); background: rgba(232,73,12,0.08); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
    .svc-test-top { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
    .svc-test-icon { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; background: rgba(255,255,255,0.2); transition: background 0.4s; }
    .svc-test-icon.pass { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.5); }
    .svc-test-icon.run { background: var(--orange); box-shadow: 0 0 6px rgba(232,73,12,0.5); animation: livePulse 0.8s ease-in-out infinite; }
    .svc-test-icon.fail { background: #f87171; box-shadow: 0 0 6px rgba(248,113,113,0.5); }
    .svc-test-name { font-size: 11.5px; color: rgba(255,255,255,0.7); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .svc-test-badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; flex-shrink: 0; }
    .svc-test-badge.pass { background: rgba(74,222,128,0.12); color: #4ade80; }
    .svc-test-badge.run  { background: rgba(232,73,12,0.15); color: #fb923c; }
    .svc-test-badge.fail { background: rgba(248,113,113,0.12); color: #f87171; }
    .svc-test-badge.idle { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); }
    /* Progress bar */
    .svc-prog-track { height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
    .svc-prog-fill { height: 100%; width: 0%; border-radius: 2px; transition: width 0.08s linear; }
    .svc-prog-fill.pass { background: #4ade80; }
    .svc-prog-fill.run  { background: linear-gradient(90deg, #fb923c, #e8490c); animation: progShimmer 1s ease-in-out infinite; }
    .svc-prog-fill.fail { background: #f87171; }
    @keyframes progShimmer { 0%,100%{opacity:1} 50%{opacity:0.65} }
    /* Counter row */
    .svc-counters { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
    .svc-counter { background: rgba(255,255,255,0.03); padding: 10px 12px; text-align: center; }
    .svc-counter-num { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; line-height: 1; }
    .svc-counter-num.green { color: #4ade80; } .svc-counter-num.orange { color: var(--orange); } .svc-counter-num.red { color: #f87171; } .svc-counter-num.muted { color: rgba(255,255,255,0.4); }
    .svc-counter-lbl { font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.07em; }

    /* Products animated visual */
    .prod-visual { position: sticky; top: 90px; }
    .prod-viz-wrap { background: #0d1117; border-radius: 16px; padding: 22px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.07); min-height: 420px; }
    .prod-viz-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .prod-viz-label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); }
    .prod-hint { font-size: 9px; color: rgba(255,255,255,0.2); font-style: italic; }
    /* Panels - each product shows its own scene */
    .prod-panel { display: none; animation: panelIn 0.35s ease; }
    .prod-panel.active { display: block; }
    @keyframes panelIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
    .prod-panel-title { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 900; color: #fff; margin-bottom: 4px; }
    .prod-panel-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 16px; line-height: 1.5; }
    /* Workbench: drag-and-drop test builder */
    .wb-step { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 7px; background: rgba(255,255,255,0.03); margin-bottom: 6px; cursor: grab; transition: border-color 0.2s, background 0.2s, transform 0.25s; }
    .wb-step.wb-active { border-color: rgba(232,73,12,0.5); background: rgba(232,73,12,0.07); transform: scale(1.02); }
    .wb-step-num { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 800; color: rgba(255,255,255,0.25); width: 16px; }
    .wb-step-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .wb-step-label { font-size: 12px; color: rgba(255,255,255,0.75); flex: 1; }
    .wb-step-chip { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; text-transform: uppercase; }
    .wb-connector { width: 1px; height: 8px; background: rgba(255,255,255,0.1); margin-left: 37px; margin-bottom: 0; }
    /* TruSim: service dependency graph */
    .trusim-svg { width: 100%; height: 170px; }
    .trusim-node { transition: opacity 0.4s; }
    .trusim-line { stroke-dasharray: 4 3; }
    .trusim-status { font-family: 'Montserrat', sans-serif; margin-top: 8px; font-size: 11px; color: rgba(255,255,255,0.5); text-align: center; }
    /* Pulse: live sparkline chart */
    .pulse-chart { width: 100%; height: 110px; position: relative; overflow: hidden; margin-bottom: 10px; }
    .pulse-chart svg { width: 100%; height: 100%; }
    .pulse-legend { display: flex; gap: 14px; margin-bottom: 10px; }
    .pulse-legend-item { display: flex; align-items: center; gap: 5px; font-size: 10px; color: rgba(255,255,255,0.45); }
    .pulse-legend-dot { width: 8px; height: 8px; border-radius: 2px; }
    .pulse-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
    .pulse-kpi { background: rgba(255,255,255,0.04); border-radius: 7px; padding: 9px 10px; text-align: center; }
    .pulse-kpi-num { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 900; color: #fff; line-height: 1; }
    .pulse-kpi-lbl { font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
    /* TDM: data masking stream */
    .tdm-row { font-family: monospace; font-size: 11px; padding: 5px 10px; border-radius: 5px; margin-bottom: 4px; display: flex; gap: 8px; align-items: center; }
    .tdm-row.raw { background: rgba(248,113,113,0.07); color: #f87171; border: 1px solid rgba(248,113,113,0.15); }
    .tdm-row.masked { background: rgba(74,222,128,0.07); color: #4ade80; border: 1px solid rgba(74,222,128,0.15); }
    .tdm-arrow { font-size: 14px; color: rgba(255,255,255,0.2); flex-shrink: 0; }
    .tdm-tag { font-size: 9px; font-weight: 700; padding: 1px 6px; border-radius: 3px; text-transform: uppercase; flex-shrink: 0; }
    .tdm-tag.raw { background: rgba(248,113,113,0.2); color: #f87171; }
    .tdm-tag.ok { background: rgba(74,222,128,0.2); color: #4ade80; }
    /* Observability: signal timeline */
    .obs-timeline { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
    .obs-event { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 6px; background: rgba(255,255,255,0.03); border-left: 3px solid; transition: opacity 0.4s; }
    .obs-event.ok { border-left-color: #4ade80; }
    .obs-event.warn { border-left-color: #fbbf24; }
    .obs-event.alert { border-left-color: #f87171; }
    .obs-time { font-size: 9px; color: rgba(255,255,255,0.3); font-family: monospace; flex-shrink: 0; }
    .obs-msg { font-size: 11px; color: rgba(255,255,255,0.65); flex: 1; }
    .obs-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .obs-dot.ok { background: #4ade80; } .obs-dot.warn { background: #fbbf24; } .obs-dot.alert { background: #f87171; animation: livePulse 1s ease-in-out infinite; }
    /* PMaaS: payment flow diagram */
    .pmaas-flow { display: flex; align-items: center; justify-content: space-between; gap: 4px; margin-bottom: 14px; }
    .pmaas-node { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 8px 10px; text-align: center; font-size: 10px; font-weight: 700; font-family: 'Montserrat', sans-serif; color: rgba(255,255,255,0.8); flex: 1; transition: border-color 0.3s, background 0.3s; }
    .pmaas-node.active { border-color: rgba(96,165,250,0.6); background: rgba(96,165,250,0.1); color: #93c5fd; }
    .pmaas-arrow { font-size: 13px; color: rgba(255,255,255,0.2); flex-shrink: 0; }
    .pmaas-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
    .pmaas-stat { background: rgba(255,255,255,0.04); border-radius: 7px; padding: 10px 12px; }
    .pmaas-stat-num { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; color: #60a5fa; line-height: 1; }
    .pmaas-stat-lbl { font-size: 9px; color: rgba(255,255,255,0.3); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.06em; }
    /* hover highlight on product cards */
    .product-card.prod-hover { border-color: var(--orange); box-shadow: 0 0 0 2px rgba(232,73,12,0.15), var(--shadow-md); }
    .domain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
    .domain-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: 10px; padding: 24px 20px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s, background 0.2s; position: relative; overflow: hidden; }
    .domain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: transparent; transition: background 0.2s; }
    .domain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(232,73,12,0.28); background: linear-gradient(180deg, var(--orange-light), var(--white) 42%); }
    .domain-card:hover::before { background: var(--orange); }
    .domain-card:hover .domain-tag { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 22px rgba(232,73,12,0.16); }
    .domain-tag { display: none; }
    .domain-tag svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
    .domain-card:nth-child(1) .domain-tag, .domain-card:nth-child(5) .domain-tag { background: var(--orange-light); color: var(--orange); }
    .domain-card:nth-child(2) .domain-tag, .domain-card:nth-child(6) .domain-tag { background: var(--blue-light); color: var(--blue); }
    .domain-card:nth-child(3) .domain-tag, .domain-card:nth-child(7) .domain-tag { background: var(--green-light); color: var(--green); }
    .domain-card:nth-child(4) .domain-tag, .domain-card:nth-child(8) .domain-tag { background: var(--orange-light); color: var(--orange); }
    .domain-card h3 { font-size: 16px; font-weight: 600; color: var(--orange); margin-bottom: 8px; }
    .domain-card p  { font-size: 12.5px; color: var(--grey-text); line-height: 1.6; }
    .domain-card-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; font-size: 12px; font-weight: 700; font-family: 'Roboto', sans-serif; color: var(--orange); text-decoration: none; letter-spacing: 0.01em; }
    .domain-card-link::after { content: '→'; transition: transform 0.2s; }
    .domain-card-link:hover::after { transform: translateX(3px); }

    /* Tenjin */
    .tenjin-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .tenjin-layout h2 { font-size: 32px; font-weight: 700; line-height: 1.12; color: var(--black); margin-bottom: 16px; }
    .tenjin-layout > div > p { font-size: 15px; color: var(--grey-text); line-height: 1.7; margin-bottom: 24px; }
    .feature-list { display: grid; gap: 10px; margin-bottom: 30px; }
    .feature-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--grey-dark); line-height: 1.55; }
    .feature-item::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--orange-light); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23e8490c' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; margin-top: 1px; }
    .product-ui { background: var(--white); border: 1px solid var(--grey-light); border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; }
    .ui-titlebar { background: var(--black); padding: 13px 18px; display: flex; align-items: center; gap: 8px; }
    .ui-dot { width: 9px; height: 9px; border-radius: 50%; }
    .ui-dot.r { background: #e8341c; } .ui-dot.y { background: #f5c518; } .ui-dot.g { background: #4ade80; }
    .ui-label { margin-left: 8px; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
    .ui-row { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-bottom: 1px solid var(--grey-light); }
    .ui-row:last-of-type { border-bottom: none; }
    .ui-status { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
    .ui-status.pass { background: var(--green); } .ui-status.run { background: var(--orange); }
    .ui-text { flex: 1; font-size: 12.5px; color: var(--grey-dark); }
    .ui-badge { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
    .ui-badge.pass { background: var(--green-light); color: var(--green); } .ui-badge.run { background: var(--orange-light); color: var(--orange); }
    .ui-metrics { display: grid; grid-template-columns: 1fr 1fr; background: var(--off-white); border-top: 1px solid var(--grey-light); }
    .ui-metric { padding: 18px; border-right: 1px solid var(--grey-light); }
    .ui-metric:last-child { border-right: none; }
    .ui-big { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 900; color: var(--black); line-height: 1; }
    .ui-sub { font-size: 10px; color: var(--grey-text); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

    /* Products */
    .prod-layout { display: grid; grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr); gap: 42px; align-items: stretch; }
    .prod-layout > div { min-width: 0; }
    .prod-layout .section-header { text-align: left; margin-left: 0; margin-right: 0; }
    .products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .product-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: 10px; padding: 16px 18px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s; position: relative; overflow: hidden; display: flex; align-items: flex-start; gap: 13px; min-height: 124px; }
    .product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .product-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
    .product-card:nth-child(1)::before { background: var(--orange); }
    .product-card:nth-child(2)::before { background: var(--blue); }
    .product-card:nth-child(3)::before { background: var(--green); }
    .product-card:nth-child(4)::before { background: var(--orange); }
    .product-card:nth-child(5)::before { background: var(--blue); }
    .product-card:nth-child(6)::before { background: var(--green); }
    .product-card-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; }
    .product-card:nth-child(1) .product-card-icon, .product-card:nth-child(4) .product-card-icon { background: var(--orange-light); }
    .product-card:nth-child(2) .product-card-icon, .product-card:nth-child(5) .product-card-icon { background: var(--blue-light); }
    .product-card:nth-child(3) .product-card-icon, .product-card:nth-child(6) .product-card-icon { background: var(--green-light); }
    .product-card-body { flex: 1; }
    .product-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-mid); margin-bottom: 3px; font-family: 'Montserrat', sans-serif; }
    .product-card h3 { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 3px; }
    .product-card p { font-size: 12px; color: var(--grey-text); line-height: 1.5; }
    .product-arrow { font-size: 18px; color: var(--grey-mid); flex-shrink: 0; transition: color 0.15s, transform 0.15s; }
    .product-card:hover .product-arrow { color: var(--orange); transform: translateX(3px); }

    /* Products animated visual */
    .prod-visual { position: sticky; top: 100px; width: 100%; align-self: start; }
    .prod-viz-wrap { background: #0d1117; border-radius: 16px; padding: 22px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.07); width: 100%; max-width: 420px; min-height: 492px; height: auto; display: grid; grid-template-rows: auto auto auto; gap: 16px; }
    .prod-viz-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
    .prod-viz-label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); }
    .prod-hint { font-size: 9px; color: rgba(255,255,255,0.2); font-style: italic; }
    .prod-active-panel { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; }
    .prod-panel-name { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 900; color: #fff; margin-bottom: 4px; transition: color 0.3s; }
    .prod-panel-desc { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.55; margin-bottom: 10px; min-height: 34px; transition: opacity 0.3s; }
    .prod-panel-tags { display: flex; flex-wrap: wrap; gap: 5px; }
    .prod-badge { display: inline-flex; align-items: center; padding: 4px 8px; border-radius: 999px; font-size: 9px; font-weight: 800; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }
    .prod-badge.orange { background: rgba(232,73,12,0.14); color: #fb923c; }
    .prod-badge.blue { background: rgba(96,165,250,0.14); color: #60a5fa; }
    .prod-badge.green { background: rgba(74,222,128,0.14); color: #4ade80; }
    .prod-hint { font-size: 9px; color: rgba(255,255,255,0.2); font-style: italic; }
    .prod-viz-heading { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
    .prod-viz-heading em { font-style: normal; color: #60a5fa; }
    #prodCanvas { display: block; width: 100%; height: auto; min-height: 0; border-radius: 10px; cursor: crosshair; }
    .prod-active-label { margin-top: 12px; min-height: 38px; display: flex; flex-direction: column; justify-content: center; }
    .prod-active-name { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 3px; transition: color 0.2s; }
    .prod-active-desc { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.5; }
    .prod-flow { display: grid; gap: 8px; align-self: end; }
    .prod-flow-step { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; background: rgba(255,255,255,0.035); color: rgba(255,255,255,0.72); font-size: 11.5px; }
    .prod-flow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(232,73,12,0.1); flex-shrink: 0; }
    .prod-flow-step:nth-child(2) .prod-flow-dot { background: var(--blue); box-shadow: 0 0 0 5px rgba(26,86,219,0.1); }
    .prod-flow-step:nth-child(3) .prod-flow-dot { background: var(--green); box-shadow: 0 0 0 5px rgba(22,163,74,0.1); }
    .prod-flow-step:nth-child(4) .prod-flow-dot { background: var(--orange); }
    .prod-flow-step strong { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.08em; min-width: 54px; }
    .products-grid .product-tag { display: none; }

    /* Resources */
    .recognition-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .resources-grid { grid-template-columns: repeat(4,1fr); }
    .recognition-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: 10px; padding: 30px 26px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
    .recognition-card:hover { box-shadow: var(--shadow-md); }
    .award-tag { display: inline-block; padding: 4px 12px; background: var(--orange-light); border: 1px solid rgba(232,73,12,0.18); border-radius: 4px; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
    .recognition-card:nth-child(2) .award-tag { background: var(--blue-light); border-color: rgba(26,86,219,0.16); color: var(--blue); }
    .recognition-card:nth-child(3) .award-tag { background: var(--green-light); border-color: rgba(22,163,74,0.16); color: var(--green); }
    .recognition-card h3 { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 10px; }
    .recognition-card p { font-size: 13.5px; color: var(--grey-text); line-height: 1.6; }

    /* CTA */
    .cta-section { background: var(--black); padding: 88px 32px; position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(26,86,219,0.15) 0%, transparent 65%); pointer-events: none; }
    .cta-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
    .cta-section h2 { font-size: 32px; font-weight: 700; color: var(--white); max-width: 580px; line-height: 1.1; }
    .cta-section h2 em { font-style: normal; color: var(--blue); }
    .cta-copy p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.7; margin-top: 14px; max-width: 540px; }
    .cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

    /* Footer */
    .site-footer { background: #0e1117; border-top: 3px solid var(--orange); padding: 64px 32px 0; }
    .footer-inner { max-width: 1320px; margin: 0 auto; }
    .footer-main { display: grid; grid-template-columns: 1.4fr repeat(4,1fr); gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-brand img { width: 120px; height: auto; display: block; margin-bottom: 18px; filter: brightness(0) invert(1); }
    .footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; }
    .footer-contact { margin-top: 20px; display: grid; gap: 5px; font-size: 13px; color: rgba(255,255,255,0.45); }
    .footer-contact a:hover { color: var(--white); }
    .footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--white); margin-bottom: 18px; }
    .footer-col ul { list-style: none; display: grid; gap: 10px; }
    .footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 12.5px; color: rgba(255,255,255,0.35); }
    .footer-legal { display: flex; gap: 18px; }
    .footer-legal a { color: rgba(255,255,255,0.35); }
    .footer-legal a:hover { color: var(--white); }

    /* Animations */
    @keyframes rotSlow { to { transform: rotate(360deg); } }
    @keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    @keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(232,73,12,0); } 50% { box-shadow: 0 0 0 6px rgba(232,73,12,0.1); } }

    /* Core Banking page */
    .cb-page { background: var(--white); }
    .cb-hero {
      background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
      border-bottom: 1px solid var(--grey-light);
      overflow: hidden;
    }
    .cb-hero-inner {
      max-width: 1320px;
      margin: 0 auto;
      min-height: 0;
      padding: 76px 32px 54px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 34px;
      align-items: start;
    }
    .cb-hero-copy {
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .cb-hero-copy h1 {
      max-width: 980px;
      font-size: 42px;
      line-height: 1.02;
      letter-spacing: -0.03em;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 24px;
    }
    .cb-hero-copy p {
      max-width: 780px;
      font-size: 17px;
      line-height: 1.7;
      color: var(--grey-dark);
      margin-bottom: 32px;
    }
    .cb-hero-visual {
      min-width: 0;
      padding: 0;
      background: transparent;
      display: flex;
      align-items: center;
    }
    /* Shared hero canvas animation */
    .cb-hero, .hero-section { position: relative; }
    .hero-anim {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 44%;
      pointer-events: none;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 28%, black 58%);
      mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 28%, black 58%);
    }
    .hero-canvas { width: 100%; height: 100%; display: block; }
    @media (max-width: 900px) { .hero-anim { display: none; } }
    .cb-dashboard {
      background: #111318;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      box-shadow: var(--shadow-lg);
      padding: 24px;
      color: var(--white);
      position: relative;
      overflow: hidden;
      width: 100%;
      max-width: none;
      display: grid;
      grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
      gap: 22px;
      align-items: stretch;
    }
    .cb-dashboard::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }
    .cb-dashboard > * { position: relative; z-index: 1; }
    .cb-dash-top {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
      align-items: flex-start;
      padding: 4px 10px 4px 0;
      border-bottom: 0;
      margin-bottom: 0;
    }
    .cb-dash-top span {
      font-size: 11px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.46);
    }
    .cb-dash-top strong {
      font-family: 'Montserrat', sans-serif;
      font-size: 30px;
      line-height: 1.2;
      text-align: left;
    }
    .cb-risk-board { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .cb-risk {
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.045);
      border-radius: 12px;
      padding: 14px;
      min-height: 86px;
    }
    .cb-risk span {
      display: block;
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      margin-bottom: 16px;
    }
    .cb-risk b {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      color: var(--white);
    }
    .cb-risk.active { border-color: rgba(22,163,74,0.42); box-shadow: inset 3px 0 0 var(--green); }
    .cb-risk.warning { border-color: rgba(232,73,12,0.42); box-shadow: inset 3px 0 0 var(--orange); }
    .cb-flow {
      display: grid;
      grid-template-columns: 1fr 34px 1fr 34px 1fr;
      align-items: center;
      gap: 10px;
      margin: 0;
      grid-column: 1 / -1;
    }
    .cb-flow span {
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 12px 10px;
      font-size: 11px;
      text-align: center;
      color: rgba(255,255,255,0.66);
      background: rgba(255,255,255,0.035);
    }
    .cb-flow i {
      height: 1px;
      background: linear-gradient(90deg, var(--orange), var(--blue));
      position: relative;
    }
    .cb-flow i::after {
      content: '';
      position: absolute;
      right: -1px;
      top: -3px;
      width: 7px;
      height: 7px;
      border-top: 1px solid var(--blue);
      border-right: 1px solid var(--blue);
      transform: rotate(45deg);
    }
    .cb-evidence { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
    .cb-evidence { grid-column: 1 / -1; }
    .cb-evidence div { background: rgba(255,255,255,0.04); padding: 18px 14px; }
    .cb-evidence strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 28px; line-height: 1; color: var(--orange); margin-bottom: 8px; }
    .cb-evidence span { display: block; font-size: 11px; line-height: 1.45; color: rgba(255,255,255,0.48); }
    .cb-proof { background: var(--white); border-bottom: 1px solid var(--grey-light); }
    .cb-proof-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 24px 32px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1px;
      background: var(--grey-light);
    }
    .cb-proof-inner div { background: var(--white); padding: 22px 18px; min-height: 112px; }
    .cb-proof-inner strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 32px; line-height: 1; color: var(--orange); margin-bottom: 10px; }
    .cb-proof-inner span { color: var(--grey-text); font-size: 13.5px; line-height: 1.5; }
    .cb-wide-header h2 { max-width: 900px; }
    .cb-wide-header p { max-width: 820px; }
    .cb-bullet-list { max-width: 820px; margin: 12px 0 0; padding-left: 20px; color: var(--grey-dark); font-size: 15px; line-height: 1.9; }
    .cb-bullet-list li { margin-bottom: 4px; }
    .cb-risk-split {
      display: grid;
      grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
      gap: 44px;
      align-items: center;
    }
    .cb-risk-split .section-header { margin-bottom: 0; }
    .cb-risk-image {
      margin: 0;
      border-radius: 12px;
      overflow: hidden;
      min-height: 360px;
      border: 1px solid var(--grey-light);
      box-shadow: var(--shadow-md);
      position: relative;
      background: var(--grey-light);
    }
    .cb-risk-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(17,19,24,0) 45%, rgba(17,19,24,0.22) 100%);
      pointer-events: none;
    }
    .cb-risk-image img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      display: block;
      object-fit: cover;
    }
    .cb-risk-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
    }
    .cb-card {
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: 10px;
      padding: 26px;
      box-shadow: var(--shadow-sm);
      min-height: 270px;
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    }
    .cb-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(232,73,12,0.26); }
    .cb-card span {
      display: inline-flex;
      width: 32px;
      height: 32px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--orange-light);
      color: var(--orange);
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 900;
      margin-bottom: 22px;
    }
    .cb-card h3, .cb-coverage-grid h3, .cb-method-list h3, .cb-platform-card h3, .cb-services-grid h3 {
      font-size: 16px;
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 12px;
      color: var(--black);
    }
    .cb-card p, .cb-coverage-grid p, .cb-method-list p, .cb-platform-card p, .cb-services-grid p {
      color: var(--grey-text);
      font-size: 14px;
      line-height: 1.7;
    }
    .cb-card-feature { grid-column: auto; background: var(--orange-light); border-color: rgba(232,73,12,0.22); }
    .cb-card-feature h3 { color: var(--black); }
    .cb-card-feature p { color: var(--grey-dark); }
    .cb-coverage-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }
    .cb-coverage-grid article {
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-top: 3px solid var(--orange);
      border-radius: 10px;
      padding: 28px;
      min-height: 232px;
      box-shadow: var(--shadow-sm);
    }
    .cb-split {
      display: grid;
      grid-template-columns: 1fr;
      gap: 6px;
      align-items: start;
    }
    .cb-method-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
    .cb-method-list article {
      display: block;
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: 10px;
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      min-height: 196px;
    }
    .cb-platform-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
    }
    .cb-platform-card {
      display: flex;
      align-items: center;
      background: var(--white);
      border: 1px solid var(--grey-mid);
      border-radius: 10px;
      padding: 18px;
      min-height: 118px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }
    .cb-platform-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--orange); }
    .cb-platform-card span {
      display: inline-flex;
      margin-bottom: 18px;
      font-size: 10.5px;
      font-weight: 800;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
    }
    .cb-platform-logo {
      height: 70px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0;
    }
    .cb-platform-logo strong {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(16px, 1.35vw, 22px);
      line-height: 1.15;
      font-weight: 900;
      letter-spacing: 0;
      color: var(--black);
      text-align: center;
    }
    .cb-platform-logo img {
      display: block;
      max-width: 170px;
      max-height: 54px;
      width: auto;
      height: auto;
      object-fit: contain;
    }
    .cb-services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    .cb-services-grid article {
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: 10px;
      padding: 24px;
      min-height: 210px;
      box-shadow: var(--shadow-sm);
    }
    .cb-case {
      display: grid;
      grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
      gap: 54px;
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: 12px;
      padding: 42px;
      box-shadow: var(--shadow-md);
    }
    .cb-case h2 { font-size: 32px; font-weight: 700; line-height: 1.12; max-width: 520px; }
    .cb-case-body { display: grid; gap: 14px; }
    .cb-case-body article { border-left: 3px solid var(--orange); padding-left: 18px; }
    .cb-case-body span { display: block; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
    .cb-case-body p { color: var(--grey-dark); line-height: 1.7; }
    .platform-page .cb-hero-inner { padding-bottom: 64px; }
    .platform-page .cb-hero {
      background: var(--off-white);
    }
    .platform-page h1 em, .platform-page h2 em {
      color: var(--blue);
      font-style: normal;
    }
    .cb-page h1 em, .cb-page h2 em {
      color: var(--blue);
      font-style: normal;
    }
    .platform-hero-panel {
      background: #111318;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      box-shadow: var(--shadow-lg);
      padding: 24px;
      display: grid;
      grid-template-columns: minmax(240px, 0.55fr) minmax(0, 0.45fr);
      gap: 16px;
      align-items: stretch;
    }
    .platform-logo-card {
      background: var(--white);
      border-radius: 10px;
      min-height: 170px;
      padding: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .platform-logo-card img { max-width: 230px; max-height: 76px; object-fit: contain; }
    .platform-version-strip, .platform-module-strip {
      display: grid;
      gap: 8px;
    }
    .platform-version-strip { grid-template-columns: repeat(3, 1fr); }
    .platform-module-strip { grid-column: 1 / -1; grid-template-columns: repeat(5, 1fr); }
    .platform-version-strip span, .platform-module-strip span {
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 9px;
      padding: 14px 10px;
      color: var(--white);
      text-align: center;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 800;
    }
    .platform-module-strip span {
      color: rgba(255,255,255,0.72);
      font-size: 11px;
    }
    .platform-version-grid, .platform-region-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .platform-version-grid article, .platform-module-grid article, .platform-challenge-grid article, .platform-tenjin-list article, .platform-region-grid article {
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: 10px;
      padding: 26px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      position: relative;
      overflow: hidden;
    }
    .platform-version-grid article::before, .platform-module-grid article::before, .platform-challenge-grid article::before, .platform-tenjin-list article::before, .platform-region-grid article::before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 4px;
      background: var(--orange);
    }
    .platform-version-grid article:hover, .platform-module-grid article:hover, .platform-challenge-grid article:hover, .platform-tenjin-list article:hover, .platform-region-grid article:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 34px rgba(17,19,24,0.12);
      border-color: rgba(232,73,12,0.32);
    }
    .platform-version-grid span {
      display: inline-flex;
      width: 54px;
      height: 54px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--orange-light);
      color: var(--orange);
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      margin-bottom: 26px;
    }
    .platform-version-grid h3, .platform-module-grid h3, .platform-challenge-grid h3, .platform-tenjin-list h3, .platform-region-grid h3 {
      font-size: 16px;
      font-weight: 600;
      line-height: 1.25;
      margin-bottom: 12px;
    }
    .platform-version-grid p, .platform-module-grid p, .platform-challenge-grid p, .platform-tenjin-list p, .platform-region-grid p {
      color: var(--grey-text);
      font-size: 14px;
      line-height: 1.7;
    }
    .platform-module-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }
    .platform-module-grid article { min-height: 236px; }
    .platform-module-grid article:first-child {
      background: var(--orange-light);
      border-color: rgba(232,73,12,0.2);
    }
    .platform-challenge-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .platform-tenjin {
      display: grid;
      grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
      gap: 48px;
      align-items: start;
    }
    .platform-tenjin .section-header { margin-bottom: 0; }
    .platform-tenjin-list { display: grid; gap: 12px; }
    .platform-tenjin-list article {
      display: grid;
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .platform-region-grid article {
      min-height: 220px;
      border-top: 3px solid var(--orange);
    }

    /* Responsive */
    @media (max-width: 1080px) {
      .hero { height: auto; }
      .hero-slide { position: relative; grid-template-columns: 1fr; height: auto; }
      .hero-slide:not(.active) { display: none; }
      .slide-visual { height: auto; min-height: 420px; }
      .hero-scene { min-height: 420px; }
      .hero-scene-content { padding: 30px; }
      .digital-command { inset: 30px; gap: 14px; }
      .command-grid { grid-template-columns: 1fr 1fr; }
      .command-panel.command-primary { grid-column: span 2; }
      .command-panel { min-height: 112px; padding: 16px; }
      .command-panel strong { font-size: 30px; }
      .rings-mark { width: 360px; right: -56px; top: -24px; }
      .assurance-radar { width: 330px; height: 330px; }
      .assurance-node { width: 96px; font-size: 9.5px; }
      .logo-marquee-inner { grid-template-columns: 1fr; gap: 18px; }
      .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
      .pillars, .recognition-grid { grid-template-columns: 1fr 1fr; }
      .svc-layout, .prod-layout { grid-template-columns: 1fr; gap: 40px; }
      .prod-visual { position: static; display: block; }
      .prod-viz-wrap { max-width: 520px; min-height: 520px; grid-template-rows: auto auto auto; }
      .products-grid { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .domain-grid { grid-template-columns: repeat(2,1fr); }
      .tenjin-layout { grid-template-columns: 1fr; gap: 40px; }
      .footer-main { grid-template-columns: 1fr 1fr; }
      .cta-inner { flex-direction: column; }
      .cb-hero-inner { min-height: auto; padding: 64px 32px; gap: 36px; }
      .cb-hero-copy h1 { max-width: 900px; }
      .cb-dashboard { grid-template-columns: 1fr; max-width: none; }
      .cb-risk-board { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .cb-proof-inner { grid-template-columns: repeat(3, 1fr); }
      .cb-risk-grid, .cb-coverage-grid, .cb-services-grid, .cb-method-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cb-platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .cb-risk-split, .cb-split, .cb-case { grid-template-columns: 1fr; gap: 34px; }
      .cb-risk-image, .cb-risk-image img { min-height: 320px; }
      .platform-hero-panel, .platform-tenjin { grid-template-columns: 1fr; }
      .platform-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .platform-challenge-grid, .platform-version-grid, .platform-region-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 720px) {
      .main-nav { display: none; }
      .nav-contact-btn { display: none; }
      .slide-content { padding: 40px 20px; }
      .slide-visual { min-height: 520px; }
      .hero-scene { min-height: 520px; }
      .hero-scene-content { padding: 24px 20px; align-content: end; }
      .digital-command { inset: 22px; gap: 12px; }
      .digital-command::before { inset: -8px; }
      .command-top { display: block; padding-bottom: 14px; }
      .command-top strong { display: block; margin-top: 8px; max-width: none; text-align: left; font-size: 17px; }
      .command-grid { grid-template-columns: 1fr; gap: 8px; }
      .command-panel.command-primary { grid-column: auto; }
      .command-panel { min-height: auto; padding: 14px; }
      .command-panel span { margin-bottom: 8px; }
      .command-panel strong { font-size: 26px; margin-bottom: 8px; }
      .command-lanes { gap: 8px; }
      .command-lane { grid-template-columns: 1fr; gap: 7px; min-height: auto; }
      .command-lane em { text-align: left; }
      .scene-kpis { grid-template-columns: 1fr; gap: 8px; }
      .scene-kpi { min-height: auto; padding: 14px; }
      .scene-kpi strong { font-size: 24px; }
      .scene-panel { width: 100%; justify-self: stretch; }
      .rings-mark { width: 310px; right: auto; top: 45%; opacity: 0.34; }
      .assurance-radar { width: 300px; height: 300px; top: 45%; }
      .assurance-radar::before { inset: 48px; }
      .assurance-radar::after { inset: 96px; }
      .radar-core { width: 92px; height: 92px; top: 45%; }
      .radar-core img { width: 64px; height: 64px; }
      .assurance-node { width: 86px; min-height: 38px; font-size: 8.5px; }
      .assurance-node.n1 { top: 7%; }
      .assurance-node.n2 { right: 4%; top: 24%; }
      .assurance-node.n3 { right: 6%; bottom: 30%; }
      .assurance-node.n4 { bottom: 20%; }
      .assurance-node.n5 { left: 4%; bottom: 30%; }
      .assurance-node.n6 { left: 4%; top: 24%; }
      .payment-node { width: 62px; height: 62px; font-size: 8.5px; }
      .payment-node.center { width: 88px; height: 88px; }
      .pillars, .domain-grid, .products-grid, .recognition-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .section { padding: 60px 20px; }
      .logo-marquee-inner { padding: 22px 20px; }
      .customer-logo { width: 136px; height: 54px; font-size: 11px; }
      .prod-viz-wrap { min-height: auto; }
      #prodCanvas { height: auto; min-height: 0; }
      .stats-bar-inner { grid-template-columns: 1fr 1fr; }
      .footer-main { grid-template-columns: 1fr; }
      .cb-hero-inner { padding: 48px 20px 44px; gap: 34px; }
      .cb-hero-copy h1 { font-size: 34px; }
      .cb-hero-copy p { font-size: 16px; }
      .cb-dash-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
      .cb-dash-top strong { text-align: left; }
      .cb-risk-board, .cb-evidence, .cb-risk-grid, .cb-coverage-grid, .cb-services-grid, .cb-method-list { grid-template-columns: 1fr; }
      .cb-platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cb-proof-inner { grid-template-columns: repeat(2, 1fr); }
      .cb-flow { grid-template-columns: 1fr; }
      .cb-flow i { height: 28px; width: 1px; justify-self: center; background: linear-gradient(180deg, var(--orange), var(--blue)); }
      .cb-flow i::after { right: -3px; top: auto; bottom: -1px; transform: rotate(135deg); }
      .cb-proof-inner { padding: 20px; }
      .cb-card, .cb-card-feature { grid-column: auto; min-height: auto; }
      .cb-method-list article { grid-template-columns: 1fr; gap: 12px; }
      .cb-case { padding: 28px 22px; }
      .cb-risk-image, .cb-risk-image img { min-height: 260px; }
      .platform-version-strip, .platform-module-strip, .platform-module-grid, .platform-challenge-grid, .platform-version-grid, .platform-region-grid { grid-template-columns: 1fr; }
      .platform-logo-card { min-height: 130px; }
    }




/* ============================================================
   YETHI BRAND FIX — applied by fix-styles.php
   Last rules win; !important guarantees specificity is not an issue.
   Remove this block only after merging into the source CSS.
   ============================================================ */
/* == YETHI-BRAND-FIX-V2 == */

/* 1. Body / paragraph text → Roboto Regular 15px */
body {
  font-family: 'Roboto', sans-serif !important;
  font-size: 15px !important;
}
p, li, td, th, span, label, input, textarea, select {
  font-family: 'Roboto', sans-serif !important;
}

/* 2. Section eyebrow labels → orange (all variants) */
.section-eyebrow,
.section-eyebrow.blue,
.section-eyebrow.green {
  color: var(--orange) !important;
}

/* 3. Primary CTA buttons → blue */
.btn-primary {
  background:   var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background:   #1344b8 !important;
  border-color: #1344b8 !important;
}

/* 4. All buttons → Roboto Bold 15px */
.btn {
  font-family: 'Roboto', sans-serif !important;
  font-size:   15px !important;
  font-weight: 700 !important;
}

/* 5. <em> inside headings → blue (across all page types) */
h1 em, h2 em,
.slide-content h1 em,
.cb-hero-copy h1 em,
.platform-page h1 em,
.platform-page h2 em,
.cb-page h1 em,
.cb-page h2 em,
.cta-section h2 em,
.section-header h2 em {
  font-style: normal !important;
  color: var(--blue) !important;
}

/* 6. CTA section radial glow → blue tint */
.cta-section::before {
  background: radial-gradient(circle, rgba(26,86,219,0.15) 0%, transparent 65%) !important;
}

/* 7. H1 → Montserrat Bold 42px */
.slide-content h1 {
  font-size:   clamp(24px, 3.8vw, 42px) !important;
  font-weight: 700 !important;
}
.cb-hero-copy h1 {
  font-size:   42px !important;
  font-weight: 700 !important;
}
@media (max-width: 1100px) { .cb-hero-copy h1 { font-size: 38px !important; } }
@media (max-width:  900px) { .cb-hero-copy h1 { font-size: 34px !important; } }
@media (max-width:  480px) { .cb-hero-copy h1 { font-size: 28px !important; } }
@media (max-width:  380px) { .cb-hero-copy h1 { font-size: 24px !important; } }

/* 8. H2 → Montserrat Bold 32px */
.section-header h2,
.tenjin-layout h2,
.cta-section h2,
.cb-case h2 {
  font-size:   32px !important;
  font-weight: 700 !important;
}

/* 9. H3 → Montserrat Semi-Bold 16px */
.pillar h3,
.svc-card h3,
.domain-card h3,
.product-card h3,
.recognition-card h3,
.cb-card h3,
.cb-coverage-grid h3,
.cb-method-list h3,
.cb-platform-card h3,
.cb-services-grid h3,
.platform-version-grid h3,
.platform-module-grid h3,
.platform-challenge-grid h3,
.platform-tenjin-list h3,
.platform-region-grid h3 {
  font-size:   16px !important;
  font-weight: 600 !important;
}

/* == END YETHI-BRAND-FIX-V2 == */