﻿
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg:         #ffffff;
      --bg-alt:     #f8fafc;
      --bg-card:    #ffffff;
      --blue:       #00579c;
      --blue-dim:   #004a85;
      --blue-glow:  rgba(0,87,156,0.22);
      --blue-faint: rgba(0,87,156,0.07);
      --blue-mid:   rgba(0,87,156,0.14);
      /* Finet-style sparkle accent �?used only for the eyebrow star icons */
      --spark:      #0288d1;
      /* Variable names kept for compatibility; values re-aligned to ZStack blue family.
         --orange �?bright sky highlight   --teal �?deep navy accent */
      --orange:     #0288d1;
      --orange-dim: rgba(2,136,209,0.10);
      --teal:       #003c6e;
      --teal-dim:   rgba(0,60,110,0.10);
      /* The ONLY non-blue accent. Reserved for "new / hot / promoted" semantics.
         Used �?5 places site-wide. Do not extend casually. */
      --amber:      #0288d1;
      --amber-dim:  rgba(2,136,209,0.10);
      --amber-border: rgba(2,136,209,0.28);
      --amber-glow: rgba(2,136,209,0.32);
      --green:      #2e7d32;
      --border:     rgba(148,163,184,0.28);
      --border-hi:  rgba(0,87,156,0.20);
      --t1: #0f172a;
      --t2: #475569;
      --t3: #94a3b8;
      --font: 'Inter', system-ui, sans-serif;
      --mono: 'JetBrains Mono', monospace;
      --radius: 14px;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font); background: var(--bg);
      color: var(--t1); line-height: 1.6;
      -webkit-font-smoothing: antialiased; overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    b, strong { font-weight: 600; }
    img { display: block; max-width: 100%; }
    .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

    /* ── Utilities ── */
    .lbl {
      display: inline-flex; align-items: center;
      font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--blue); background: #e9edf9; border: none; padding: 8px 18px; border-radius: 6px;
    }
    .lbl svg { display: none; }
    .lbl--orange { color: var(--blue); background: #e9edf9; border: none; }
    .h2 { font-size: clamp(28px,3.8vw,46px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; }
    .h2 em { font-style: normal; color: var(--blue); }
    .sec-sub { font-size: 17px; color: var(--t2); line-height: 1.72; margin-top: 14px; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font); font-weight: 600; border-radius: 12px;
      border: none; cursor: pointer; transition: all .22s ease; text-decoration: none;
    }
    .btn--lg { padding: 15px 30px; font-size: 16px; }
    .btn--md { padding: 12px 24px; font-size: 15px; }
    .btn--primary {
      background: linear-gradient(180deg, #0a5fb0 0%, #014a8c 100%);
      color: #fff;
      box-shadow: 0 10px 24px -8px rgba(20,95,180,0.55), inset 0 1px 0 rgba(255,255,255,0.28);
    }
    .btn--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px -10px rgba(20,95,180,0.6), inset 0 1px 0 rgba(255,255,255,0.32);
    }
    .btn--ghost {
      background: #ffffff; color: var(--t1);
      border: 1px solid rgba(15,23,42,0.07);
      box-shadow: 0 4px 14px -4px rgba(15,23,42,0.10);
    }
    .btn--ghost:hover {
      transform: translateY(-2px); color: var(--blue);
      border-color: rgba(0,87,156,0.25);
      box-shadow: 0 10px 24px -6px rgba(15,23,42,0.16);
    }
    .btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
    .btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
    .btn--white { background: #fff; color: var(--blue); box-shadow: 0 8px 22px -8px rgba(0,0,0,0.28); }
    .btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,0.34); }
    .fade { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
    .fade.in { opacity: 1; transform: none; }

    /* ══════════════════════════════════════════
       NAV
    ══════════════════════════════════════════ */
    body.zstack-index-page .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: 62px;
      background: transparent; border-bottom: 1px solid transparent;
      font-family: var(--font);
      transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
    }
    body.zstack-index-page .nav-inner {
      max-width: 1280px; margin: 0 auto; padding: 0 32px;
      height: 100%; display: flex; align-items: center;
    }
    body.zstack-index-page .nav-logo {
      display: flex; align-items: center; gap: 9px;
      font-size: 18px; font-weight: 500; letter-spacing: -0.04em;
      color: var(--t1); margin-right: 32px; flex-shrink: 0;
    }
    body.zstack-index-page .nav-logo-mark {
      width: 30px; height: 30px; border-radius: 6px;
      background: linear-gradient(135deg, var(--blue), var(--blue-dim));
      display: grid; place-items: center;
      font-size: 15px; font-weight: 500; color: #fff;
    }
    body.zstack-index-page .nav-links { display: flex; align-items: stretch; flex: 1; }
    body.zstack-index-page .nav-item { position: relative; display: flex; align-items: center; }
    body.zstack-index-page .nav-link {
      display: flex; align-items: center; gap: 5px;
      padding: 0 14px; height: 62px;
      font-size: 14px; font-weight: 500; color: var(--t2);
      cursor: pointer; white-space: nowrap; transition: color .15s; user-select: none;
    }
    body.zstack-index-page .nav-link:hover, body.zstack-index-page .nav-item.open > .nav-link { color: var(--blue); }
    body.zstack-index-page .nav-link svg { transition: transform .2s; flex-shrink: 0; }
    body.zstack-index-page .nav-item.open > .nav-link svg { transform: rotate(180deg); }
    body.zstack-index-page .nav-item.open > .nav-link::after {
      content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
      height: 2px; background: var(--blue); border-radius: 2px 2px 0 0;
    }
    body.zstack-index-page .nav-right { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-shrink: 0; }
    body.zstack-index-page .nav-search {
      display: flex; align-items: center; gap: 8px;
      padding: 7px 14px; border-radius: 7px;
      background: var(--bg-alt); border: 1px solid var(--border);
      font-size: 13px; color: var(--t3); cursor: pointer; transition: border-color .15s;
    }
    body.zstack-index-page .nav-search:hover { border-color: var(--border-hi); color: var(--t2); }
    body.zstack-index-page .nav-lang {
      display: flex; align-items: center; gap: 5px;
      padding: 7px 12px; border-radius: 7px;
      font-size: 13px; font-weight: 500; color: var(--t2);
      cursor: pointer; transition: color .15s; border: 1px solid transparent;
    }
    body.zstack-index-page .nav-lang:hover { color: var(--blue); border-color: var(--border); }
    body.zstack-index-page .nav-contact-btn {
      padding: 8px 18px; border-radius: 7px;
      background: var(--blue); color: #fff;
      font-size: 13px; font-weight: 500;
      cursor: pointer; transition: background .15s;
      border: none; font-family: var(--font);
    }
    body.zstack-index-page .nav-contact-btn:hover { background: var(--blue-dim); }

    /* ── transparent nav over hero (default) vs solid on scroll ── */
    body.zstack-index-page .nav.scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px) saturate(160%);
      border-bottom-color: var(--border);
    }
    /* top state �?light foreground over the blue hero */
    body.zstack-index-page .nav:not(.scrolled) .nav-logo { color: #fff; }
    body.zstack-index-page .nav:not(.scrolled) .nav-link { color: rgba(255,255,255,0.82); }
    body.zstack-index-page .nav:not(.scrolled) .nav-link:hover,
    body.zstack-index-page .nav:not(.scrolled) .nav-item.open > .nav-link { color: #fff; }
    body.zstack-index-page .nav:not(.scrolled) .nav-search { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); color: rgba(255,255,255,0.72); }
    body.zstack-index-page .nav:not(.scrolled) .nav-search:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
    body.zstack-index-page .nav:not(.scrolled) .nav-lang { color: rgba(255,255,255,0.82); }
    body.zstack-index-page .nav:not(.scrolled) .nav-lang:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
    body.zstack-index-page .nav:not(.scrolled) .nav-contact-btn { background: #fff; color: var(--blue); }
    body.zstack-index-page .nav:not(.scrolled) .nav-contact-btn:hover { background: rgba(255,255,255,0.88); }
    /* scrolled state �?restore dark foreground */
    body.zstack-index-page .nav.scrolled .nav-logo { color: var(--t1); }
    body.zstack-index-page .nav.scrolled .nav-link { color: var(--t2); }
    body.zstack-index-page .nav.scrolled .nav-link:hover, body.zstack-index-page .nav.scrolled .nav-item.open > .nav-link { color: var(--blue); }
    body.zstack-index-page .nav.scrolled .nav-search { background: var(--bg-alt); border-color: var(--border); color: var(--t3); }
    body.zstack-index-page .nav.scrolled .nav-search:hover { border-color: var(--border-hi); color: var(--t2); }
    body.zstack-index-page .nav.scrolled .nav-lang { color: var(--t2); }
    body.zstack-index-page .nav.scrolled .nav-lang:hover { color: var(--blue); border-color: var(--border); }
    body.zstack-index-page .nav.scrolled .nav-contact-btn { background: var(--blue); color: #fff; }
    body.zstack-index-page .nav.scrolled .nav-contact-btn:hover { background: var(--blue-dim); }

    /* ── Mega menu ── */
    /* Full-width alignment: positioned relative to viewport, content constrained to 1280px */
    body.zstack-index-page .mega {
      position: fixed; top: 62px; left: 0; right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 24px 64px -12px rgba(0,87,156,0.10), 0 4px 16px -4px rgba(0,0,0,0.06);
      opacity: 0; visibility: hidden; pointer-events: none;
      transform: translateY(-6px);
      transition: opacity .2s ease, transform .2s ease, visibility .2s;
      z-index: 400;
    }
    body.zstack-index-page .nav-item.open .mega {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateY(0);
    }
    body.zstack-index-page .mega-wrap {
      max-width: 1280px; margin: 0 auto; padding: 0 32px;
    }
    body.zstack-index-page .mega-body { display: flex; align-items: stretch; }
    body.zstack-index-page .mega-main { flex: 1; padding: 28px 0; display: flex; gap: 32px; }
    body.zstack-index-page .mega-sidebar {
      width: 220px; flex-shrink: 0;
      background: var(--bg-alt);
      border-left: 1px solid var(--border);
      padding: 28px 22px;
      display: flex; flex-direction: column; gap: 16px;
    }
    body.zstack-index-page .mega-col { flex: 1; min-width: 0; }
    body.zstack-index-page .mega-col + .mega-col { padding-left: 28px; border-left: 1px solid var(--border); }
    body.zstack-index-page .mega-group { margin-bottom: 24px; }
    body.zstack-index-page .mega-group:last-child { margin-bottom: 0; }
    body.zstack-index-page .mega-group-title {
      font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--t3); font-family: var(--font);
      margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
    }
    body.zstack-index-page .mega-group-desc { font-size: 12px; color: var(--t3); margin-bottom: 12px; line-height: 1.5; font-style: italic; }
    body.zstack-index-page .mega-product {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 10px; border-radius: 8px;
      transition: background .15s; cursor: pointer; margin-bottom: 2px;
    }
    body.zstack-index-page .mega-product:hover { background: var(--blue-faint); }
    body.zstack-index-page .mega-product-icon {
      width: 34px; height: 34px; border-radius: 7px; flex-shrink: 0;
      background: var(--blue-faint); border: 1px solid var(--border-hi);
      display: grid; place-items: center;
      font-size: 11px; font-weight: 500; color: var(--blue); font-family: var(--font);
    }
    body.zstack-index-page .mega-product-name { font-size: 13.5px; font-weight: 500; color: var(--t1); margin-bottom: 2px; }
    body.zstack-index-page .mega-product-sub  { font-size: 11.5px; color: var(--t3); line-height: 1.45; }
    body.zstack-index-page .mega-product-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 5px; }
    body.zstack-index-page .mega-product-tag {
      font-size: 10px; font-weight: 500; color: var(--blue);
      background: var(--blue-faint); border: 1px solid var(--border-hi);
      border-radius: 4px; padding: 1px 7px; font-family: var(--font);
      cursor: pointer; transition: background .15s;
    }
    body.zstack-index-page .mega-product-tag:hover { background: var(--blue-mid); }
    body.zstack-index-page .mega-link {
      display: flex; align-items: center; gap: 8px;
      padding: 7px 10px; border-radius: 7px;
      font-size: 13.5px; color: var(--t2); font-weight: 500;
      transition: background .15s, color .15s; cursor: pointer; margin-bottom: 1px;
    }
    body.zstack-index-page .mega-link:hover { background: var(--blue-faint); color: var(--blue); }
    body.zstack-index-page .mega-link::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: var(--border-hi); flex-shrink: 0; transition: background .15s;
    }
    body.zstack-index-page .mega-link:hover::before { background: var(--blue); }
    body.zstack-index-page .mega-industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
    body.zstack-index-page .mega-industry-link {
      display: flex; align-items: center; gap: 8px;
      padding: 7px 8px; border-radius: 6px;
      font-size: 13px; color: var(--t2); font-weight: 500;
      transition: background .15s, color .15s; cursor: pointer;
    }
    body.zstack-index-page .mega-industry-link:hover { background: var(--blue-faint); color: var(--blue); }
    body.zstack-index-page .mega-industry-link span { font-size: 14px; }
    body.zstack-index-page .mega-platform-bar {
      background: linear-gradient(90deg, var(--blue-faint), rgba(0,87,156,0.05));
      border-top: 1px solid var(--border);
      padding: 12px 0;
      display: flex; align-items: center; gap: 16px;
    }
    body.zstack-index-page .mega-platform-label { font-size: 11px; font-weight: 500; color: var(--t3); font-family: var(--font); text-transform: uppercase; letter-spacing: 0.1em; }
    body.zstack-index-page .mega-platform-text { font-size: 12.5px; color: var(--t2); flex: 1; }
    body.zstack-index-page .mega-platform-text strong { color: var(--t1); }
    /* Sidebar */
    body.zstack-index-page .sidebar-title { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t3); font-family: var(--font); margin-bottom: 14px; }
    body.zstack-index-page .sidebar-card { background: #fff; border: 1px solid var(--border-hi); border-radius: 10px; padding: 16px; position: relative; overflow: hidden; }
    body.zstack-index-page .sidebar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--teal)); }
    body.zstack-index-page .sidebar-card-name { font-size: 13px; font-weight: 500; color: var(--t1); margin-bottom: 5px; line-height: 1.4; }
    body.zstack-index-page .sidebar-card-desc { font-size: 11.5px; color: var(--t3); margin-bottom: 14px; line-height: 1.5; }
    body.zstack-index-page .sidebar-card-btn {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 500; color: #fff;
      background: var(--blue); padding: 7px 14px; border-radius: 6px;
      transition: background .15s; width: 100%; justify-content: center;
    }
    body.zstack-index-page .sidebar-card-btn:hover { background: var(--blue-dim); }
    body.zstack-index-page .sidebar-card-link { display: block; margin-top: 8px; text-align: center; font-size: 11.5px; color: var(--blue); font-weight: 500; }
    body.zstack-index-page .sidebar-card-link:hover { text-decoration: underline; }
    /* Simple dropdown */
    body.zstack-index-page .dropdown {
      position: fixed; top: 62px;
      background: #fff; border: 1px solid var(--border); border-radius: 0 0 12px 12px;
      box-shadow: 0 16px 40px -8px rgba(0,87,156,0.10);
      padding: 10px 8px; min-width: 200px;
      opacity: 0; visibility: hidden; pointer-events: none;
      transform: translateY(-6px);
      transition: opacity .2s, transform .2s, visibility .2s; z-index: 400;
    }
    body.zstack-index-page .nav-item.open .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
    body.zstack-index-page .dropdown-item {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 12px; border-radius: 7px;
      font-size: 13.5px; color: var(--t2); font-weight: 500;
      transition: background .15s, color .15s; cursor: pointer;
    }
    body.zstack-index-page .dropdown-item:hover { background: var(--blue-faint); color: var(--blue); }
    /* Backdrop */
    body.zstack-index-page .nav-backdrop { position: fixed; inset: 0; top: 62px; z-index: 390; display: none; }
    body.zstack-index-page .nav-backdrop.active { display: block; }

    /* ══════════════════════════════════════════
       HERO
    ══════════════════════════════════════════ */
    /* ===== HERO �?deep blue, particles, 3D cloud ===== */
    body.zstack-index-page .hero {
      position: relative; overflow: hidden;
      background:
        radial-gradient(56% 40% at 50% 101%, rgba(156,205,255,0.45) 0%, rgba(156,205,255,0.16) 40%, rgba(156,205,255,0) 70%),
        linear-gradient(180deg, #022f54 0%, #014277 42%, #00579c 100%);
      padding: 70px 0 182px;
    }
    body.zstack-index-page .hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
    body.zstack-index-page .hero-rays { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; mix-blend-mode: screen; pointer-events: none; }
    body.zstack-index-page .hero-particles svg { width: 100%; height: 100%; }
    body.zstack-index-page .hero-inner {
      position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 40px 48px 0;
      display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; gap: 28px; min-height: 520px;
    }
    body.zstack-index-page .hero-content { color: #fff; text-align: center; min-width: 0; max-width: 100%; }
    body.zstack-index-page .hero-eyebrow { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 22px; }
    body.zstack-index-page .hero-title { font-size: clamp(30px, 3.9vw, 50px); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; color: #fff; margin-bottom: 28px; }
    body.zstack-index-page .hero-title span { display: block; }
    body.zstack-index-page .hero-sub { font-size: 18px; line-height: 1.62; color: rgba(255,255,255,0.85); margin: 0 auto 34px; max-width: 760px; }
    body.zstack-index-page .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
    body.zstack-index-page .btn--hero-primary {
      background: #fff; color: var(--blue); padding: 6px 26px 6px 6px; border-radius: 100px;
      display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px;
      box-shadow: 0 12px 30px -10px rgba(0,20,55,0.45); transition: transform .22s, box-shadow .22s;
    }
    body.zstack-index-page .btn--hero-primary .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    body.zstack-index-page .btn--hero-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(0,20,55,0.5); }
    body.zstack-index-page .btn--hero-ghost {
      background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5);
      padding: 0 30px; height: 52px; border-radius: 100px; display: inline-flex; align-items: center;
      font-weight: 600; font-size: 15px; transition: background .22s, border-color .22s;
    }
    body.zstack-index-page .btn--hero-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
    body.zstack-index-page .hero-cloud { display: flex; align-items: center; justify-content: center; }
    body.zstack-index-page .hero-cloud svg, body.zstack-index-page .hero-cloud img { width: 100%; max-width: 440px; height: auto; filter: drop-shadow(0 34px 54px rgba(0,18,55,0.42)); }
    body.zstack-index-page .hero-arch-label {
      position: relative; z-index: 2; text-align: center;
      color: rgba(255,255,255,0.72); font-size: 13px; letter-spacing: 0.24em; font-weight: 500;
      padding: 0 0 22px;
    }

    /* ===== HERO GLASS PRODUCT CARDS (floating, overlap into next section) ===== */
    body.zstack-index-page .hero-cards-wrap { position: relative; z-index: 3; max-width: 1240px; margin: -158px auto 0; padding: 0 48px; }
    body.zstack-index-page .hero-wave { position: absolute; left: 0; bottom: -1px; width: 100%; height: 96px; display: block; z-index: 2; pointer-events: none; }
    body.zstack-index-page .hero-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
    body.zstack-index-page .hero-card {
      position: relative; overflow: hidden; text-decoration: none;
      display: flex; flex-direction: column; min-height: 188px; padding: 26px 24px 22px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(30,100,172,0.60) 0%, rgba(14,52,96,0.93) 100%);
      -webkit-backdrop-filter: blur(17px) saturate(125%); backdrop-filter: blur(17px) saturate(125%);
      border: 1px solid rgba(255,255,255,0.16);
      box-shadow: 0 26px 54px -24px rgba(0,14,40,0.75), inset 0 1px 0 rgba(255,255,255,0.13);
      transition: transform .3s, background .3s, border-color .3s, box-shadow .3s;
    }
    body.zstack-index-page .hero-card:hover { transform: translateY(-7px); border-color: rgba(165,208,255,0.62); box-shadow: 0 0 0 1px rgba(150,200,255,0.32), 0 30px 60px -18px rgba(0,18,46,0.82), 0 8px 46px rgba(120,180,255,0.48), inset 0 1px 0 rgba(255,255,255,0.34); }
    body.zstack-index-page .hero-card--active { background: linear-gradient(180deg, rgba(30,100,172,0.60) 0%, rgba(14,52,96,0.93) 100%); }
    body.zstack-index-page .hc-code { font-size: 24px; font-weight: 600; color: #fff; letter-spacing: -0.01em; position: relative; z-index: 1; }
    body.zstack-index-page .hc-name { font-size: 13.5px; color: rgba(255,255,255,0.74); margin-top: 7px; line-height: 1.42; max-width: 92%; position: relative; z-index: 1; }
    body.zstack-index-page .hc-explore { margin-top: auto; padding-top: 22px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #c6deff; font-family: var(--font); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s, color .2s; position: relative; z-index: 1; }
    body.zstack-index-page .hero-card:hover .hc-explore { gap: 9px; color: #fff; }
    body.zstack-index-page .hero-card:hover .hc-icon { color: rgba(190,222,255,0.45); }
    body.zstack-index-page .hc-icon { position: absolute; right: 12px; top: 13px; width: 66px; height: 66px; color: rgba(255,255,255,0.16); pointer-events: none; z-index: 0; }
    body.zstack-index-page .hc-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

    /* ===== PRODUCT BAND �?full-width white, 4 columns ===== */
    body.zstack-index-page .prod-band { display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border-bottom: 1px solid var(--border); }
    body.zstack-index-page .prod-cell {
      position: relative; overflow: hidden; padding: 38px 34px 32px; min-height: 196px;
      text-decoration: none; border-right: 1px solid var(--border);
      display: flex; flex-direction: column; transition: background .35s;
    }
    body.zstack-index-page .prod-cell:last-child { border-right: none; }
    body.zstack-index-page .prod-code { font-size: 25px; font-weight: 600; color: var(--t1); letter-spacing: -0.01em; transition: color .35s; position: relative; z-index: 1; }
    body.zstack-index-page .prod-fullname { font-size: 14px; color: var(--t2); margin-top: 8px; transition: color .35s; position: relative; z-index: 1; max-width: 70%; }
    body.zstack-index-page .prod-explore {
      margin-top: auto; padding-top: 26px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--blue); font-family: var(--font);
      display: inline-flex; align-items: center; gap: 6px; transition: color .35s, gap .2s; position: relative; z-index: 1;
    }
    body.zstack-index-page .prod-icon {
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      width: 124px; height: 124px; color: rgba(0,87,156,0.11); pointer-events: none; transition: color .35s; z-index: 0;
    }
    body.zstack-index-page .prod-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
    body.zstack-index-page .prod-cell:hover { background: linear-gradient(155deg, #0a5fb0 0%, #00528f 100%); }
    body.zstack-index-page .prod-cell:hover .prod-code { color: #fff; }
    body.zstack-index-page .prod-cell:hover .prod-fullname { color: rgba(255,255,255,0.85); }
    body.zstack-index-page .prod-cell:hover .prod-explore { color: #fff; gap: 9px; }
    body.zstack-index-page .prod-cell:hover .prod-icon { color: rgba(255,255,255,0.2); }
    body.zstack-index-page .prod-cell--active { background: linear-gradient(155deg, #0a5fb0 0%, #00528f 100%); }
    body.zstack-index-page .prod-cell--active .prod-code { color: #fff; }
    body.zstack-index-page .prod-cell--active .prod-fullname { color: rgba(255,255,255,0.85); }
    body.zstack-index-page .prod-cell--active .prod-explore { color: #fff; }
    body.zstack-index-page .prod-cell--active .prod-icon { color: rgba(255,255,255,0.2); }

    /* ===== CROSS-PRODUCT ENHANCEMENT MODULES ===== */
    body.zstack-index-page .modules-section { background: #fff; padding: 104px 0 84px; }
    body.zstack-index-page .modules-label {
      display: block; width: fit-content; margin: 0 auto 40px;
      font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--blue); background: #e9edf9; padding: 8px 18px; border-radius: 6px;
    }
    body.zstack-index-page .modules-grid { max-width: 1240px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(8,1fr); gap: 14px; }
    body.zstack-index-page .module-box {
      border: 1px solid rgba(0,87,156,0.16); border-radius: 14px; padding: 22px 10px 18px; text-align: center;
      transition: border-color .28s, transform .28s, box-shadow .28s;
      background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    }
    body.zstack-index-page .module-box:hover { transform: translateY(-5px); border-color: rgba(120,180,255,0.6);
      box-shadow: 0 0 0 1px rgba(140,190,255,0.34), 0 18px 38px -14px rgba(30,100,190,0.34), 0 0 26px rgba(130,185,255,0.30); }
    body.zstack-index-page .module-icon { width: 30px; height: 30px; margin: 0 auto 12px; color: var(--blue); transition: color .28s, transform .28s; }
    body.zstack-index-page .module-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    body.zstack-index-page .module-box:hover .module-icon { color: #0a66c2; transform: translateY(-1px); }
    body.zstack-index-page .module-name { font-size: 13px; font-weight: 600; color: var(--t1); line-height: 1.25; }
    body.zstack-index-page .module-sub { font-size: 11px; color: var(--t3); margin-top: 5px; }

    @media (max-width: 980px) {
      body.zstack-index-page .hero-inner { grid-template-columns: minmax(0, 1fr); padding-left: 24px; padding-right: 24px; min-height: auto; }
      body.zstack-index-page .hero-content { min-width: 0; max-width: 100%; }
      body.zstack-index-page .hero-content > * { min-width: 0; max-width: 100%; }
      body.zstack-index-page .hero-title span { white-space: normal; overflow-wrap: break-word; }
      body.zstack-index-page .hero-stats { grid-template-columns: 1fr 1fr !important; max-width: 100%; width: 100%; box-sizing: border-box; }
      body.zstack-index-page .hero-cloud { display: none; }
      body.zstack-index-page .prod-band { grid-template-columns: 1fr 1fr; }
      body.zstack-index-page .prod-cell:nth-child(2) { border-right: none; }
      body.zstack-index-page .modules-grid { grid-template-columns: repeat(4,1fr); }
      body.zstack-index-page .hero-cards { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      body.zstack-index-page .prod-band { grid-template-columns: 1fr; }
      body.zstack-index-page .prod-cell { border-right: none; }
      body.zstack-index-page .modules-grid { grid-template-columns: 1fr 1fr; }
      body.zstack-index-page .hero-cards { grid-template-columns: 1fr; }
      body.zstack-index-page .hero-cards-wrap { margin-top: -120px; }
    }




    /* Recognition bar */
    .recog-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; background: var(--bg); }
    .recog-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
    .recog-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); }
    .recog-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
    .recog-logo { font-size: 14px; font-weight: 500; color: var(--t3); transition: color .2s; cursor: default; letter-spacing: -0.01em; }
    .recog-logo:hover { color: var(--blue); }
    .recog-logo sup { font-size: 10px; font-weight: 500; }

    /* ══════════════════════════════════════════
       SOLUTIONS
    ══════════════════════════════════════════ */
    .solutions-section { padding: 72px 0; background: var(--bg-alt); position: relative; overflow: hidden; }
    .solutions-section::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 1200px; height: 600px; background: radial-gradient(ellipse at center, rgba(0,87,156,0.05) 0%, transparent 60%); pointer-events: none; }
    .sec-header { margin-bottom: 40px; text-align: center; position: relative; }
    .sec-header .sec-sub { max-width: 600px; margin-left: auto; margin-right: auto; }

    .sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; position: relative; }

    /* ───────────── Unified ZStack Engineered-Card system ─────────────
       �?Hairline border + blueprint dot-grid + brand-blue corner brackets.
       �?Re-used by .why-pill and .recog-card via shared declarations below. */
    .sol-card {
      --accent: #00579c;
      --accent-2: #0277bd;
      --accent-soft: rgba(0,87,156,0.07);
      background-color: var(--bg-card);
      background-image: none;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px 28px 26px;
      min-height: 280px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
      transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, background-color .35s ease;
    }

    /* Top-left engineering bracket */
    .sol-card::before {
      content: '';
      position: absolute;
      top: 10px; left: 10px;
      width: 16px; height: 16px;
      border-top: 1.5px solid var(--accent);
      border-left: 1.5px solid var(--accent);
      border-top-left-radius: 4px;
      opacity: .35;
      transition: opacity .35s ease, transform .35s ease;
    }
    /* Bottom-right engineering bracket */
    .sol-card::after {
      content: '';
      position: absolute;
      bottom: 10px; right: 10px;
      width: 16px; height: 16px;
      border-bottom: 1.5px solid var(--accent);
      border-right: 1.5px solid var(--accent);
      border-bottom-right-radius: 4px;
      opacity: .35;
      transition: opacity .35s ease, transform .35s ease;
    }

    .sol-card:hover {
      border-color: rgba(0,87,156,0.32);
      transform: translateY(-6px);
      box-shadow:
        0 24px 48px -20px rgba(0,87,156,0.22),
        0 4px 14px -6px rgba(15,23,42,0.08),
        inset 0 1px 0 rgba(255,255,255,0.7);
    }
    .sol-card:hover::before { opacity: 1; transform: translate(-2px,-2px); }
    .sol-card:hover::after  { opacity: 1; transform: translate(2px,2px); }

    /* Per-card accent �?ALL in ZStack blue family, only depth varies */
    .sol-card:nth-child(1) { --accent: #00579c; --accent-2: #0d83d4; }
    .sol-card:nth-child(2) { --accent: #004a85; --accent-2: #00579c; }
    .sol-card:nth-child(3) { --accent: #0277bd; --accent-2: #0d83d4; }
    .sol-card:nth-child(4) { --accent: #003c6e; --accent-2: #00579c; }
    .sol-card:nth-child(5) { --accent: #004a85; --accent-2: #0277bd; }
    .sol-card:nth-child(6) { --accent: #00579c; --accent-2: #0288d1; }

    /* Featured (Popular) card �?deeper brand wash + brackets always on */
    .sol-card--featured {
      background-color: #f6fafe;
      background-image:
        radial-gradient(circle, rgba(0,87,156,0.10) 1px, transparent 1.3px);
      border-color: rgba(0,87,156,0.25);
      box-shadow:
        0 12px 28px -16px rgba(0,87,156,0.18),
        inset 0 1px 0 rgba(255,255,255,0.8);
    }
    .sol-card--featured::before,
    .sol-card--featured::after { opacity: 1; }
    /* cleaned: no brackets / wash / badge / watermark / deco */
    .sol-card::before, .sol-card::after { content: none !important; }
    .sol-card--featured { background: var(--bg-card) !important; background-image: none !important; border-color: var(--border) !important; box-shadow: inset 0 1px 0 rgba(255,255,255,0.7) !important; }
    .sol-popular, .sol-icon, .sol-deco { display: none !important; }

    /* Popular badge �?amber pill (only accent color in body sections) */
    .sol-popular {
      position: absolute; top: 14px; right: 14px;
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.10em; text-transform: uppercase;
      color: var(--amber);
      background: rgba(255,253,247,0.95);
      border: 1px solid var(--amber-border);
      border-radius: 100px;
      padding: 4px 10px 4px 8px;
      font-family: var(--font);
      line-height: 1;
      backdrop-filter: blur(4px);
      box-shadow: 0 2px 8px -2px var(--amber-glow);
    }
    .sol-popular svg { width: 10px; height: 10px; }

    /* Icon �?large faded-blue stroke watermark anchored bottom-right.
       Idles with a slow drift, accelerates on hover. */
    .sol-icon {
      position: absolute;
      right: -16px; bottom: -18px;
      width: 140px; height: 140px;
      color: var(--accent);
      opacity: .09;
      pointer-events: none;
      transform-origin: 65% 65%;
      transition: opacity .5s ease;
      animation: sol-icon-drift 14s ease-in-out infinite;
    }
    .sol-icon svg {
      width: 100%; height: 100%;
      stroke-width: 1.25;
      fill: none;
      stroke: currentColor;
      filter: drop-shadow(0 0 0.5px currentColor);
    }
    .sol-card:hover .sol-icon {
      opacity: .26;
      animation: sol-icon-spin 18s linear infinite;
    }
    @keyframes sol-icon-drift {
      0%, 100% { transform: rotate(-4deg) translate(0,0); }
      50%      { transform: rotate(4deg)  translate(-4px,-4px); }
    }
    @keyframes sol-icon-spin {
      from { transform: rotate(0deg)   scale(1.08); }
      to   { transform: rotate(360deg) scale(1.08); }
    }

    /* Top-right ambient glow remains, but more restrained */
    .sol-deco {
      position: absolute;
      right: -40px; top: -40px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
      pointer-events: none;
      opacity: .55;
      transition: opacity .5s ease;
    }
    .sol-card:hover .sol-deco { opacity: 1; }

    /* Keep readable content above the watermark icon */
    .sol-title, .sol-txt, .sol-stats, .sol-foot {
      position: relative; z-index: 1;
    }
    .sol-popular { z-index: 2; } /* keep absolute positioning intact */
    .sol-title { font-size: 18px; font-weight: 500; letter-spacing: -0.02em; color: var(--t1); margin-bottom: 10px; line-height: 1.3; }
    .sol-txt { font-size: 13.5px; color: var(--t2); line-height: 1.7; margin-bottom: 18px; flex-grow: 1; }

    /* Stat chips row */
    .sol-stats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
    .sol-stat {
      display: inline-flex; align-items: baseline; gap: 4px;
      font-size: 11px; font-weight: 500; color: var(--t2);
      background: var(--bg-alt);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 3px 9px;
      line-height: 1.3;
    }
    .sol-stat b { font-weight: 500; color: var(--accent); font-size: 11.5px; letter-spacing: -0.01em; }

    /* Bottom CTA row with divider */
    .sol-foot {
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px dashed var(--border);
      display: flex; align-items: center;
    }
    .sol-link {
      font-size: 12.5px; font-weight: 500;
      color: var(--accent);
      display: inline-flex; align-items: center; gap: 6px;
      letter-spacing: -0.01em;
    }
    .sol-link svg { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
    .sol-card:hover .sol-link svg { transform: translateX(4px); }

    /* ══════════════════════════════════════════
       PRODUCT LINES STRIP
    ══════════════════════════════════════════ */
    .products-strip { padding: 64px 0; background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .products-strip-label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); margin-bottom: 24px; text-align: center; }
    .prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
    .prod-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 12px; padding: 28px 24px;
      display: flex; align-items: center; gap: 18px;
      transition: border-color .2s, transform .2s, box-shadow .2s;
      cursor: pointer;
    }
    .prod-card:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: 0 10px 28px -6px rgba(0,87,156,0.12); }
    .prod-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; background: var(--blue); color: #fff; border-radius: 6px; padding: 6px 10px; font-family: var(--font); flex-shrink: 0; line-height: 1; }
    .prod-tag--teal   { background: var(--teal); }
    .prod-tag--orange { background: var(--orange); }
    .prod-tag--dark   { background: #1a2744; }
    .prod-name { font-size: 14px; font-weight: 500; color: var(--t1); margin-bottom: 2px; }
    .prod-desc { font-size: 12px; color: var(--t3); }
    .prod-card-arrow { margin-left: auto; color: var(--t3); flex-shrink: 0; transition: color .2s, transform .2s; }
    .prod-card:hover .prod-card-arrow { color: var(--blue); transform: translateX(3px); }

    /* ══════════════════════════════════════════
       WHY ZSTACK �?5 horizontal pillars + CTA below
    ══════════════════════════════════════════ */
    .why-section { padding: 72px 0; background: var(--bg); }
    .why-pillars { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-top: 0; }
    .why-pill {
      --accent: #00579c;
      background-color: var(--bg-card);
      background-image: radial-gradient(circle, rgba(0,87,156,0.06) 1px, transparent 1.3px);
      background-size: 22px 22px;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 26px 22px 24px;
      position: relative; overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
      transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
    }
    /* Single top-left bracket only (less repetitive, more refined) */
    .why-pill::before {
      content: ''; position: absolute; top: 10px; left: 10px;
      width: 12px; height: 12px;
      border-top: 1.5px solid var(--accent);
      border-left: 1.5px solid var(--accent);
      border-top-left-radius: 4px;
      opacity: .3; transition: opacity .35s ease, transform .35s ease;
    }
    .why-pill:hover {
      border-color: rgba(0,87,156,0.32);
      transform: translateY(-4px);
      box-shadow:
        0 18px 36px -16px rgba(0,87,156,0.22),
        inset 0 1px 0 rgba(255,255,255,0.7);
    }
    .why-pill:hover::before { opacity: 1; transform: translate(-2px,-2px); }
    /* Subtle depth variation */
    .why-pill:nth-child(2) { --accent: #004a85; }
    .why-pill:nth-child(3) { --accent: #0277bd; }
    .why-pill:nth-child(4) { --accent: #00579c; }
    .why-pill:nth-child(5) { --accent: #003c6e; }

    .why-pill-head, .why-pill-txt { position: relative; z-index: 1; }

    /* Header row: icon + title side-by-side */
    .why-pill-head {
      display: flex; align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .why-pill-title { font-size: 17px; font-weight: 500; letter-spacing: -0.02em; color: var(--t1); line-height: 1.1; }
    .why-pill-txt { font-size: 13px; color: var(--t2); line-height: 1.65; }

    /* ───── Icon �?small, refined, 5 distinct treatments ───── */
    .why-pill-icon {
      width: 32px; height: 32px;
      flex-shrink: 0;
      border-radius: 9px;
      color: var(--accent);
      display: inline-flex; align-items: center; justify-content: center;
      position: relative;
      transition: transform .45s cubic-bezier(.2,.7,.2,1), color .35s ease, background .35s ease, border-color .35s ease;
    }
    .why-pill-icon svg {
      width: 17px; height: 17px;
      fill: none; stroke: currentColor;
      stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
    }
    .why-pill:hover .why-pill-icon { transform: translateY(-2px); }

    /* Variant 1 �?Simple: tinted soft (clean, understated) */
    .why-pill:nth-child(1) .why-pill-icon {
      background: rgba(2,119,189,0.10);
    }
    .why-pill:nth-child(1):hover .why-pill-icon {
      background: rgba(2,119,189,0.18);
    }

    /* Variant 2 �?Strong: outline only (defensive, structural) */
    .why-pill:nth-child(2) .why-pill-icon {
      background: transparent;
      border: 1.5px solid color-mix(in srgb, var(--accent) 35%, transparent);
    }
    .why-pill:nth-child(2):hover .why-pill-icon {
      border-color: var(--accent);
      background: rgba(0,87,156,0.05);
    }

    /* Variant 3 �?Scalable: dashed circle (continuous expansion) */
    .why-pill:nth-child(3) .why-pill-icon {
      background: rgba(2,119,189,0.05);
      border: 1.25px dashed color-mix(in srgb, var(--accent) 40%, transparent);
      border-radius: 50%;
    }
    .why-pill:nth-child(3):hover .why-pill-icon {
      border-style: solid;
      background: rgba(2,119,189,0.10);
    }

    /* Variant 4 �?Smart: bracketed (chip-like) */
    .why-pill:nth-child(4) .why-pill-icon {
      background: rgba(0,87,156,0.05);
      border-radius: 7px;
    }
    .why-pill:nth-child(4) .why-pill-icon::before,
    .why-pill:nth-child(4) .why-pill-icon::after {
      content: '';
      position: absolute;
      width: 6px; height: 6px;
      border: 1.5px solid var(--accent);
      transition: transform .35s ease;
    }
    .why-pill:nth-child(4) .why-pill-icon::before {
      top: -3px; left: -3px;
      border-right: none; border-bottom: none;
      border-top-left-radius: 2px;
    }
    .why-pill:nth-child(4) .why-pill-icon::after {
      bottom: -3px; right: -3px;
      border-left: none; border-top: none;
      border-bottom-right-radius: 2px;
    }
    .why-pill:nth-child(4):hover .why-pill-icon::before { transform: translate(-1px,-1px); }
    .why-pill:nth-child(4):hover .why-pill-icon::after  { transform: translate(1px,1px); }

    /* Variant 5 �?Cost-effective: SOLID FILLED (key business value highlight) */
    .why-pill:nth-child(5) .why-pill-icon {
      background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 65%, #0d83d4));
      color: #fff;
      box-shadow:
        0 5px 12px -4px color-mix(in srgb, var(--accent) 60%, transparent),
        inset 0 1px 0 rgba(255,255,255,0.25);
    }
    .why-pill:nth-child(5):hover .why-pill-icon {
      box-shadow:
        0 8px 18px -4px color-mix(in srgb, var(--accent) 70%, transparent),
        inset 0 1px 0 rgba(255,255,255,0.3);
    }
    /* CTA below pillars */
    .why-cta { margin-top: 48px; }
    .why-cta-box {
      background: linear-gradient(135deg, #0a5fb0 0%, #00579c 55%, #013f78 100%);
      border-radius: 28px;
      padding: 48px 52px; color: #fff;
      display: flex; align-items: center; justify-content: space-between; gap: 56px;
      position: relative; overflow: hidden;
      box-shadow: 0 30px 64px -22px rgba(14,80,160,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
    }
    /* soft sheen �?no grid, no brackets */
    .why-cta-box::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 75% at 88% -15%, rgba(255,255,255,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 4% 115%, rgba(255,255,255,0.08) 0%, transparent 55%);
    }
    .why-cta-box::after { display: none; }
    .why-cta-left { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
    .why-cta-title { font-size: clamp(24px, 2.6vw, 30px); font-weight: 500; letter-spacing: -0.025em; margin-bottom: 12px; }
    .why-cta-sub { font-size: 15px; opacity: .85; line-height: 1.65; max-width: 400px; margin-bottom: 26px; }
    .why-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px; position: relative; z-index: 1; flex-shrink: 0; }
    .why-stat { padding: 4px 0 4px 16px; border-left: 2px solid rgba(255,255,255,0.32); text-align: left; }
    .why-stat-n { font-size: 30px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: #fff; }
    .why-stat-l { font-size: 12px; opacity: .78; margin-top: 7px; color: #fff; }

    /* ===== CTA2 �?Ready to see it in action (full-width) ===== */
    .cta2 { position: relative; background: #fff; margin-top: 8px; }
    .cta2-wave { width: 100%; height: 176px; line-height: 0; overflow: hidden; }
    .cta2-wave svg { width: 100%; height: 100%; display: block; }
    .cta2-band { position: relative; display: grid; grid-template-columns: 40% 60%; min-height: 360px; }
    .cta2-left { position: relative; overflow: hidden; background: linear-gradient(120deg, #eef5fd 0%, #d9e8f8 100%); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 50px 24px 0 clamp(24px, 7vw, 116px); }
    .cta2-icons { position: absolute; left: clamp(16px,4vw,60px); right: 14px; bottom: 20px; height: 108px; z-index: 0; pointer-events: none; }
    .cta2-icons svg { width: 100%; height: 100%; display: block; }
    .cta2-copy { position: relative; z-index: 1; }
    .cta2-title { font-size: clamp(27px, 3vw, 38px); font-weight: 600; color: var(--blue); line-height: 1.12; letter-spacing: -0.02em; }
    .cta2-sub { font-size: 15px; font-weight: 600; color: var(--blue); line-height: 1.5; margin-top: 18px; }
    .cta2-right { background: #00579c; }
    .cta2-stats {
      position: absolute; top: 50%; transform: translateY(-50%);
      left: 36.5%; right: clamp(22px, 6vw, 86px);
      background: #fff; border-radius: 18px; box-shadow: 0 22px 54px -20px rgba(0,40,90,0.4);
      display: flex; align-items: center; gap: clamp(16px, 2.6vw, 44px);
      padding: 30px clamp(26px, 3.6vw, 50px);
    }
    .cta2-stat .tick { width: 26px; height: 3px; background: var(--blue); border-radius: 2px; margin-bottom: 14px; }
    .cta2-stat .n { font-size: clamp(23px, 2.3vw, 30px); font-weight: 600; color: #0f172a; line-height: 1; letter-spacing: -0.02em; white-space: nowrap; }
    .cta2-stat .n small { font-size: 0.62em; font-weight: 600; }
    .cta2-stat.is-sla .n { font-size: clamp(20px, 2vw, 26px); }
    .cta2-stat .l { font-size: 13px; color: var(--t2); margin-top: 11px; white-space: nowrap; }
    .cta2-req {
      margin-left: auto; display: inline-flex; align-items: center; gap: 12px;
      background: linear-gradient(180deg, #0a5fb0 0%, #014a8c 100%); color: #fff;
      font-size: 15px; font-weight: 600; white-space: nowrap; text-decoration: none;
      padding: 7px 8px 7px 24px; border-radius: 13px;
      box-shadow: 0 12px 26px -10px rgba(8,55,120,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
      transition: transform .2s, box-shadow .2s;
    }
    .cta2-req .ic {
      width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--blue);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: transform .25s cubic-bezier(.2,.7,.2,1);
    }
    .cta2-req:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(8,55,120,0.6), inset 0 1px 0 rgba(255,255,255,0.22); }
    .cta2-req:hover .ic { transform: translateX(3px); }

    @media (max-width: 900px) {
      .cta2-band { grid-template-columns: 1fr; min-height: 0; }
      .cta2-right { display: none; }
      .cta2-stats { position: static; transform: none; left: auto; right: auto; flex-wrap: wrap; gap: 24px 30px; margin: 0 auto; max-width: 92%; }
      .cta2-req { margin-left: 0; flex-basis: 100%; }
    }

    /* ══════════════════════════════════════════
       RECOGNITION
    ══════════════════════════════════════════ */
    .recognition-section { padding: 72px 0; background: var(--bg); position: relative; overflow: hidden; }
    .recognition-section::before {
      content: ''; position: absolute; top: -200px; left: 50%;
      transform: translateX(-50%); width: 1200px; height: 600px;
      background: radial-gradient(ellipse at center, rgba(0,87,156,0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    /* ── Recognition: accordion rows w/ Solutions visual language ── */
    .recog-list {
      position: relative;
      display: flex; flex-direction: column;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      background-color: var(--bg-card);
      background-image: radial-gradient(circle, rgba(0,87,156,0.06) 1px, transparent 1.3px);
      background-size: 22px 22px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    }
    /* Engineering corner brackets on the whole container */
    .recog-list::before {
      content: ''; position: absolute; top: 10px; left: 10px;
      width: 18px; height: 18px;
      border-top: 1.5px solid var(--blue); border-left: 1.5px solid var(--blue);
      border-top-left-radius: 4px; opacity: .4; z-index: 3; pointer-events: none;
    }
    .recog-list::after {
      content: ''; position: absolute; bottom: 10px; right: 10px;
      width: 18px; height: 18px;
      border-bottom: 1.5px solid var(--blue); border-right: 1.5px solid var(--blue);
      border-bottom-right-radius: 4px; opacity: .4; z-index: 3; pointer-events: none;
    }
    .recog-list::before, .recog-list::after { content: none !important; }

    .recog-item {
      --accent: #00579c;
      --accent-soft: rgba(0,87,156,0.07);
      display: grid;
      grid-template-columns: 300px 1fr;
      border-bottom: 1px solid var(--border);
      position: relative;
      cursor: pointer;
      transition: background .45s ease;
    }
    .recog-item:last-child { border-bottom: none; }
    .recog-item:nth-child(1) { --accent: #00579c; }
    .recog-item:nth-child(2) { --accent: #0d83d4; }
    .recog-item:nth-child(3) { --accent: #004a85; }
    .recog-item:nth-child(4) { --accent: #0277bd; }
    .recog-item:nth-child(5) { --accent: #003c6e; }
    .recog-item:nth-child(6) { --accent: #0288d1; }

    /* Active row �?brand wash + ambient glow */
    .recog-item.ri-active {
      background: linear-gradient(90deg, rgba(0,87,156,0.07) 0%, rgba(0,87,156,0.025) 45%, rgba(0,87,156,0.01) 100%);
    }
    /* Ambient glow that appears on active row, right side */
    .recog-glow {
      position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
      width: 220px; height: 220px; border-radius: 50%;
      background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
      pointer-events: none; opacity: 0; transition: opacity .5s ease; z-index: 0;
    }
    .recog-item.ri-active .recog-glow { opacity: 1; }
    /* Line-icon watermark, right area, drifts when active */
    .recog-wm {
      position: absolute; right: 150px; top: 50%; transform: translateY(-50%);
      width: 90px; height: 90px; color: var(--accent);
      opacity: 0; pointer-events: none; z-index: 0;
      transition: opacity .5s ease;
    }
    .recog-wm svg { width: 100%; height: 100%; stroke-width: 1.25; fill: none; stroke: currentColor; }
    .recog-item.ri-active .recog-wm { opacity: .12; animation: sol-icon-drift 14s ease-in-out infinite; }

    /* Left highlight */
    .ri-left {
      padding: 18px 30px 18px 26px;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      text-align: center;
      border-right: 1px solid var(--border);
      position: relative; z-index: 1;
      transition: padding .4s ease;
    }
    .recog-item.ri-active .ri-left { padding-top: 26px; padding-bottom: 26px; }
    .ri-left::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px; background: var(--accent);
      opacity: 0; transform: scaleY(0);
      transition: opacity .4s ease, transform .4s cubic-bezier(.2,.7,.2,1);
    }
    .recog-item.ri-active .ri-left::before { opacity: 1; transform: scaleY(1); }

    .ri-sub-label {
      font-size: 10px; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.07em;
      color: var(--t3); font-family: var(--font);
      margin-bottom: 4px;
      opacity: 0; max-height: 0; overflow: hidden;
      transition: opacity .4s ease, max-height .4s ease;
    }
    .recog-item.ri-active .ri-sub-label { opacity: 1; max-height: 20px; }

    .ri-number {
      font-size: 26px; font-weight: 500;
      color: var(--accent);
      letter-spacing: -0.03em; line-height: 1.08;
      transition: font-size .4s ease, color .4s ease;
    }
    .recog-item.ri-active .ri-number { font-size: 44px; }

    .ri-kw {
      font-size: 12px; font-weight: 500;
      color: var(--t2); line-height: 1.4;
      opacity: 0; max-height: 0; overflow: hidden;
      transition: opacity .4s ease, max-height .4s ease, margin .4s ease;
    }
    .recog-item.ri-active .ri-kw { opacity: 1; max-height: 40px; margin-top: 6px; }

    .ri-stars { font-size: 18px; color: var(--amber); letter-spacing: 2px; line-height: 1;
      opacity: 0; max-height: 0; overflow: hidden; transition: opacity .4s ease, max-height .4s ease; }
    .recog-item.ri-active .ri-stars { opacity: 1; max-height: 26px; margin: 6px 0 2px; }
    .ri-review-meta { font-size: 10px; color: var(--t3); font-family: var(--font);
      opacity: 0; max-height: 0; overflow: hidden; transition: opacity .4s ease, max-height .4s ease; }
    .recog-item.ri-active .ri-review-meta { opacity: 1; max-height: 18px; }

    /* Right: title always visible, description expands */
    .ri-right {
      padding: 18px 30px 18px 36px;
      display: flex; align-items: center; gap: 32px;
      position: relative; z-index: 1;
      transition: padding .4s ease;
    }
    .recog-item.ri-active .ri-right { padding-top: 28px; padding-bottom: 28px; }
    .ri-body { flex: 1; min-width: 0; }
    .ri-title {
      font-size: 15px; font-weight: 500;
      color: var(--t1); line-height: 1.4; letter-spacing: -0.01em;
      transition: margin .4s ease;
    }
    .recog-item.ri-active .ri-title { margin-bottom: 8px; }
    .ri-desc {
      font-size: 13px; color: var(--t2); line-height: 1.65;
      opacity: 0; max-height: 0; overflow: hidden;
      transition: opacity .4s ease, max-height .45s ease;
    }
    .recog-item.ri-active .ri-desc { opacity: 1; max-height: 90px; }

    /* Logo box */
    .ri-logo-box {
      flex-shrink: 0;
      width: 100px; height: 34px;
      display: flex; align-items: center; justify-content: center;
      opacity: .35;
      transition: opacity .45s ease, width .4s ease, height .4s ease;
    }
    .recog-item.ri-active .ri-logo-box { opacity: .95; width: 116px; height: 46px; }
    .ri-logo-box img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
    .ri-logo-box--wide { gap: 8px; display: flex; }
    .ri-logo-box--wide img { max-height: 26px; }
    .recog-item.ri-active .ri-logo-box--wide { width: 148px; }
    .recog-item.ri-active .ri-logo-box--wide img { max-height: 34px; }

        /* ══════════════════════════════════════════
       CUSTOMERS
    ══════════════════════════════════════════ */
    /* ===== CUSTOMERS (deep blue, world map, logo wall) ===== */
    .cust2 { position: relative; overflow: hidden; padding: 72px 0 66px; background: linear-gradient(160deg,#0a5aa3 0%, #00579c 46%, #034a86 100%); }
    .cust2-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
    .cust2-bg svg { width: 100%; height: 100%; display: block; }
    .cust2-inner { position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; padding: 0 40px; text-align: center; }
    .cust2-eyebrow { display: inline-block; background: rgba(255,255,255,0.92); color: var(--blue); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; padding: 7px 18px; border-radius: 6px; }
    .cust2-title { font-size: clamp(28px, 3.4vw, 42px); font-weight: 600; color: #fff; letter-spacing: -0.02em; margin-top: 22px; line-height: 1.16; }
    .cust2-sub { font-size: 16px; color: rgba(255,255,255,0.8); margin-top: 14px; }
    .cust2-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 50px auto 48px; max-width: 920px; }
    .cust2-stat .n { font-size: clamp(30px,3.4vw,44px); font-weight: 600; color: #fff; letter-spacing: -0.02em; line-height: 1; }
    .cust2-stat .l { font-size: 14px; color: rgba(255,255,255,0.78); margin-top: 12px; }
    .cust2-logos { background: #fff; border-radius: 16px; box-shadow: 0 30px 70px -28px rgba(0,28,66,0.55); padding: 46px clamp(22px,4vw,54px); }
    .cust2-logos-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 34px 24px; align-items: center; justify-items: center; }
    .logo-slot { width: 100%; height: 46px; display: flex; align-items: center; justify-content: center; }
    .logo-slot svg { width: auto; max-width: 100%; max-height: 100%; color: #b4c2d4; transition: color .25s; }
    .logo-slot img { max-width: 100%; max-height: 40px; width: auto; height: auto; object-fit: contain; opacity: 0.72; filter: grayscale(1); transition: opacity .25s, filter .25s; }
    .logo-slot:hover svg { color: #66788f; }
    .logo-slot:hover img { opacity: 1; filter: none; }
    @media (max-width: 900px) { .cust2-stats { grid-template-columns: 1fr 1fr; gap: 30px 20px; } .cust2-logos-grid { grid-template-columns: repeat(4,1fr); } }
    @media (max-width: 560px) { .cust2-logos-grid { grid-template-columns: repeat(2,1fr); } }

    .customers-section { padding: 72px 0; background: var(--bg); }
    .customer-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 56px 0; }
    .cstat { text-align: center; padding: 32px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .2s; }
    .cstat:hover { border-color: var(--border-hi); }
    .cstat-n { font-size: 42px; font-weight: 500; letter-spacing: -0.04em; color: var(--blue); line-height: 1; margin-bottom: 8px; }
    .cstat-l { font-size: 13px; color: var(--t3); }
    .marquee-wrap { overflow: hidden; position: relative; margin-bottom: 60px; }
    .marquee-wrap::before, .marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
    .marquee-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
    .marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
    .marquee-track { display: flex; gap: 28px; width: max-content; }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-row-1 { animation: scroll-left  18s linear infinite; }
    .marquee-row-2 { animation: scroll-right 24s linear infinite; }
    .marquee-row-3 { animation: scroll-left  13s linear infinite; }
    .marquee-track + .marquee-track { margin-top: 12px; }
    @keyframes scroll-left  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    @keyframes scroll-right { from{transform:translateX(-50%)} to{transform:translateX(0)} }
    .logo-chip { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 28px; font-size: 14px; font-weight: 500; color: var(--t2); white-space: nowrap; flex-shrink: 0; transition: color .2s, border-color .2s; }
    .logo-chip:hover { color: var(--blue); border-color: var(--border-hi); }
    .testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .testi {
      background: #fff;
      border: 1px solid rgba(15,23,42,0.04);
      border-radius: 22px;
      overflow: hidden;
      display: flex; flex-direction: column;
      box-shadow: 0 14px 44px -16px rgba(20,50,100,0.13), 0 2px 8px -4px rgba(20,50,100,0.05);
      transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
    }
    .testi:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 60px -18px rgba(20,50,100,0.22), 0 4px 12px -4px rgba(20,50,100,0.06);
    }
    /* top visual �?soft light header with a refined line illustration */
    .testi-visual {
      position: relative; height: 146px; overflow: hidden;
      background: linear-gradient(135deg, #eff6fe 0%, #e1ecf8 100%);
      border-bottom: 1px solid rgba(15,23,42,0.04);
    }
    .testi-visual-art {
      position: absolute; inset: 0; width: 100%; height: 100%;
      color: rgba(0,87,156,0.28);
      transition: transform .9s cubic-bezier(.2,.7,.2,1), color .4s ease;
      pointer-events: none;
    }
    .testi:hover .testi-visual-art { transform: scale(1.05); color: rgba(0,87,156,0.42); }
    .testi-visual-art svg { width: 100%; height: 100%; fill: none; stroke: currentColor; }
    /* industry chip �?clean light */
    .testi-industry {
      position: absolute; top: 14px; left: 14px; z-index: 2;
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--blue);
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(0,87,156,0.12);
      border-radius: 100px; padding: 5px 11px 5px 9px;
      backdrop-filter: blur(6px); line-height: 1;
    }
    .testi-industry::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--spark);
    }
    /* body */
    .testi-body { padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
    .testi-quote {
      font-size: 15px; color: var(--t1); line-height: 1.7; flex: 1;
      font-weight: 400; letter-spacing: -0.005em;
      padding-left: 16px; border-left: 2px solid rgba(0,87,156,0.18);
    }
    .testi-divider { height: 1px; background: var(--border); }
    .testi-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .testi-org { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
    .testi-name { font-size: 14.5px; font-weight: 600; color: var(--t1); letter-spacing: -0.01em; }
    .testi-type { font-size: 12px; color: var(--t3); }
    .testi-link { font-size: 12.5px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0; }
    .testi-link svg { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
    .testi:hover .testi-link svg { transform: translateX(3px); }

    /* ══════════════════════════════════════════
       NEWS / NEWSROOM
    ══════════════════════════════════════════ */
    .news-section { padding: 72px 0; background: var(--bg-alt); }
    .news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 0; }
    .news-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      display: flex; flex-direction: column;
      position: relative;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
      transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
    }
    .news-card:hover {
      border-color: rgba(0,87,156,0.32);
      transform: translateY(-5px);
      box-shadow:
        0 24px 44px -20px rgba(0,87,156,0.25),
        inset 0 1px 0 rgba(255,255,255,0.7);
    }
    .news-card-img { height: 168px; position: relative; overflow: hidden; flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .news-card-overlay { position: absolute; inset: 0; }
    /* Engineered body �?dot-grid + bottom-right corner bracket */
    .news-card-body {
      background-color: var(--bg-card);
      background-image: radial-gradient(circle, rgba(0,87,156,0.06) 1px, transparent 1.3px);
      background-size: 22px 22px;
      padding: 24px;
      flex: 1;
      display: flex; flex-direction: column;
      position: relative;
    }
    .news-card-body::after {
      content: ''; position: absolute;
      bottom: 10px; right: 10px;
      width: 14px; height: 14px;
      border-bottom: 1.5px solid #00579c;
      border-right: 1.5px solid #00579c;
      border-bottom-right-radius: 4px;
      opacity: .3; transition: opacity .35s ease, transform .35s ease;
    }
    .news-card:hover .news-card-body::after { opacity: 1; transform: translate(2px,2px); }

    .news-card-img-icon { position: absolute; bottom: 16px; left: 20px; font-size: 11px; font-weight: 500; font-family: var(--font); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.80); }
    .news-card-meta, .news-card-title, .news-card-excerpt, .news-card-link { position: relative; z-index: 1; }
    .news-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
    /* Unified category style �?base is brand blue */
    .news-card-cat,
    .news-card-cat--orange,
    .news-card-cat--teal {
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.10em; text-transform: uppercase;
      color: var(--blue);
      background: var(--blue-faint);
      border: 1px solid rgba(0,87,156,0.20);
      border-radius: 4px;
      padding: 3px 8px;
      font-family: var(--font);
      line-height: 1;
    }
    /* Amber variant �?reserved for "new launch / time-sensitive" content */
    .news-card-cat--amber {
      color: var(--amber);
      background: var(--amber-dim);
      border-color: var(--amber-border);
    }
    .news-card-date { font-size: 12px; color: var(--t3); font-family: var(--font); }
    .news-card-title { font-size: 17px; font-weight: 500; color: var(--t1); line-height: 1.42; margin-bottom: 10px; letter-spacing: -0.01em; flex: 1; }
    .news-card-excerpt { font-size: 13.5px; color: var(--t2); line-height: 1.65; margin-bottom: 18px; }
    .news-card-link { font-size: 13px; font-weight: 500; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; transition: gap .25s cubic-bezier(.2,.7,.2,1); align-self: flex-start; }
    .news-card:hover .news-card-link { gap: 9px; }
    .news-card-link svg { flex-shrink: 0; }
    /* Section sub-divider */
    .news-divider { display: flex; align-items: center; gap: 16px; margin: 60px 0 36px; }
    .news-divider-line { flex: 1; height: 1px; background: var(--border); }
    .news-divider-lbl { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t3); font-family: var(--font); white-space: nowrap; }
    /* White paper cards */
    .wp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .wp-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 18px; align-items: flex-start; transition: border-color .2s, transform .2s; cursor: pointer; }
    .wp-card:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: 0 10px 28px -6px rgba(0,87,156,0.09); }
    .wp-icon-box { width: 46px; height: 58px; border-radius: 8px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: linear-gradient(135deg, var(--blue-faint), rgba(0,87,156,0.05)); border: 1px solid var(--border-hi); }
    .wp-lines { display: flex; flex-direction: column; gap: 3.5px; }
    .wp-line { height: 2px; border-radius: 1px; background: var(--blue); }
    .wp-line:nth-child(1){width:18px} .wp-line:nth-child(2){width:14px} .wp-line:nth-child(3){width:16px}
    .wp-lbl { font-size: 7.5px; font-weight: 500; color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font); }
    .wp-title { font-size: 15px; font-weight: 500; color: var(--t1); line-height: 1.42; margin-bottom: 8px; }
    .wp-desc { font-size: 12.5px; color: var(--t2); line-height: 1.6; margin-bottom: 12px; }
    .wp-dl { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 500; color: var(--blue); }
    .news-cta-row { text-align: center; margin-top: 52px; }
    .pill-cta { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); background: #e9edf9; padding: 14px 32px; border-radius: 6px; text-decoration: none; transition: background .2s, transform .2s; }
    .pill-cta:hover { background: #dde3f5; transform: translateY(-1px); }
    @media (max-width: 960px) { .news-grid, .wp-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 640px) { .news-grid, .wp-grid { grid-template-columns: 1fr; } }

    /* ══════════════════════════════════════════
       FINAL CTA
    ══════════════════════════════════════════ */
    .cta-section {
      padding: 96px 0 104px; position: relative; overflow: hidden;
      background: linear-gradient(180deg, #f5f7fc 0%, #eaeef8 100%);
    }
    .cta-section::before { display: none; }
    .cta-glow { display: none; }
    .cta-inner { position: relative; z-index: 1; }
    .cta-title { font-size: clamp(34px,4.6vw,56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.06; text-align: center; color: var(--t1); margin-bottom: 18px; }
    .cta-sub { font-size: 18px; color: var(--t2); text-align: center; line-height: 1.65; margin: 0 auto 56px; max-width: 560px; }
    .cta-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    /* Exactly 2 cards �?centered 2-column layout */
    .cta-cards:has(> .cta-card:nth-child(2):last-child) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 760px;
      margin-inline: auto;
    }
    /* base card = clean white (Finet) */
    .cta-card {
      background: #fff;
      border: 1px solid rgba(15,23,42,0.04);
      box-shadow: 0 14px 44px -16px rgba(20,50,100,0.13), 0 2px 8px -4px rgba(20,50,100,0.05);
      border-radius: 24px; padding: 34px 30px;
      display: flex; flex-direction: column; gap: 12px;
      align-items: flex-start; text-align: left;
      transition: transform .3s ease, box-shadow .35s, background .35s, border-color .35s;
    }
    .cta-card:hover { transform: translateY(-5px); }
    .cta-card-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); transition: color .35s; }
    .cta-card-title { font-size: 21px; font-weight: 500; color: var(--t1); letter-spacing: -0.02em; transition: color .35s; }
    .cta-card-txt { font-size: 14px; color: var(--t2); line-height: 1.65; flex: 1; transition: color .35s; }
    .cta-link {
      display: inline-flex; align-items: center; gap: 6px; margin-top: 4px;
      font-size: 14px; font-weight: 600; color: var(--blue);
      transition: gap .2s, color .35s;
    }
    .cta-link:hover { gap: 10px; }

    /* ===== BLUE STATE �?primary by default, OR any card being hovered ===== */
    .cta-card--primary,
    .cta-card:hover {
      background:
        radial-gradient(120% 75% at 50% -10%, rgba(120,180,255,0.30) 0%, rgba(120,180,255,0) 55%),
        url("data:image/svg+xml,%3Csvg%20xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox=%220%200%20320%20300%22%20preserveAspectRatio=%22xMidYMid%20slice%22%3E%3Cdefs%3E%3ClinearGradient%20id=%22b%22%20x1=%220%22%20y1=%220%22%20x2=%220%22%20y2=%221%22%3E%3Cstop%20offset=%220%22%20stop-color=%22%23cfe6ff%22%20stop-opacity=%220.55%22%2F%3E%3Cstop%20offset=%221%22%20stop-color=%22%23cfe6ff%22%20stop-opacity=%220%22%2F%3E%3C%2FlinearGradient%3E%3Cfilter%20id=%22f%22%20x=%22-60%%22%20y=%22-60%%22%20width=%22220%%22%20height=%22220%%22%3E%3CfeGaussianBlur%20stdDeviation=%2211%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3Cg%20filter=%22url(%23f)%22%3E%3Cpolygon%20points=%22160,-40%20132,330%20188,330%22%20fill=%22url(%23b)%22%20opacity=%220.85%22%2F%3E%3Cpolygon%20points=%22160,-40%2078,338%20142,338%22%20fill=%22url(%23b)%22%20opacity=%220.55%22%2F%3E%3Cpolygon%20points=%22160,-40%20178,338%20242,338%22%20fill=%22url(%23b)%22%20opacity=%220.55%22%2F%3E%3Cpolygon%20points=%22160,-40%2018,355%2096,355%22%20fill=%22url(%23b)%22%20opacity=%220.38%22%2F%3E%3Cpolygon%20points=%22160,-40%20224,355%20302,355%22%20fill=%22url(%23b)%22%20opacity=%220.38%22%2F%3E%3C%2Fg%3E%3Ccircle%20cx=%22169%22%20cy=%2285%22%20r=%221.3%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.14%22%2F%3E%3Ccircle%20cx=%22278%22%20cy=%2256%22%20r=%221.3%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.14%22%2F%3E%3Ccircle%20cx=%22263%22%20cy=%22117%22%20r=%220.8%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.28%22%2F%3E%3Ccircle%20cx=%2239%22%20cy=%22131%22%20r=%220.9%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.28%22%2F%3E%3Ccircle%20cx=%22293%22%20cy=%2271%22%20r=%222.0%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.36%22%2F%3E%3Ccircle%20cx=%22302%22%20cy=%2239%22%20r=%221.6%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.27%22%2F%3E%3Ccircle%20cx=%22117%22%20cy=%2231%22%20r=%221.5%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.17%22%2F%3E%3Ccircle%20cx=%22218%22%20cy=%2281%22%20r=%221.5%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.34%22%2F%3E%3Ccircle%20cx=%22290%22%20cy=%22100%22%20r=%220.9%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.34%22%2F%3E%3Ccircle%20cx=%22100%22%20cy=%22198%22%20r=%220.9%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.39%22%2F%3E%3Ccircle%20cx=%22292%22%20cy=%2238%22%20r=%221.6%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.31%22%2F%3E%3Ccircle%20cx=%22276%22%20cy=%22226%22%20r=%221.8%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.3%22%2F%3E%3Ccircle%20cx=%22236%22%20cy=%22193%22%20r=%221.2%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.42%22%2F%3E%3Ccircle%20cx=%22128%22%20cy=%2249%22%20r=%221.5%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.32%22%2F%3E%3Ccircle%20cx=%22179%22%20cy=%22237%22%20r=%221.2%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.49%22%2F%3E%3Ccircle%20cx=%2264%22%20cy=%22270%22%20r=%221.3%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.41%22%2F%3E%3Ccircle%20cx=%2281%22%20cy=%22258%22%20r=%221.3%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.49%22%2F%3E%3Ccircle%20cx=%2243%22%20cy=%22168%22%20r=%221.2%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.25%22%2F%3E%3Ccircle%20cx=%22258%22%20cy=%22241%22%20r=%220.9%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.16%22%2F%3E%3Ccircle%20cx=%22142%22%20cy=%22250%22%20r=%221.7%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.14%22%2F%3E%3Ccircle%20cx=%22162%22%20cy=%22236%22%20r=%221.2%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.27%22%2F%3E%3Ccircle%20cx=%22181%22%20cy=%2219%22%20r=%222.0%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.26%22%2F%3E%3Ccircle%20cx=%22316%22%20cy=%2267%22%20r=%221.4%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.2%22%2F%3E%3Ccircle%20cx=%22151%22%20cy=%2274%22%20r=%221.8%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.27%22%2F%3E%3Ccircle%20cx=%22258%22%20cy=%2249%22%20r=%221.0%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.27%22%2F%3E%3Ccircle%20cx=%22146%22%20cy=%2278%22%20r=%221.9%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.45%22%2F%3E%3Ccircle%20cx=%22146%22%20cy=%22220%22%20r=%222.1%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.38%22%2F%3E%3Ccircle%20cx=%22198%22%20cy=%22126%22%20r=%221.0%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.19%22%2F%3E%3Ccircle%20cx=%22122%22%20cy=%22127%22%20r=%220.8%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.44%22%2F%3E%3Ccircle%20cx=%2297%22%20cy=%22142%22%20r=%221.2%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.18%22%2F%3E%3Ccircle%20cx=%22277%22%20cy=%22197%22%20r=%221.6%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.24%22%2F%3E%3Ccircle%20cx=%2268%22%20cy=%22271%22%20r=%222.0%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.37%22%2F%3E%3Ccircle%20cx=%2231%22%20cy=%22241%22%20r=%222.0%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.42%22%2F%3E%3Ccircle%20cx=%22290%22%20cy=%22208%22%20r=%221.3%22%20fill=%22%23cfe6ff%22%20fill-opacity=%220.27%22%2F%3E%3C%2Fsvg%3E") center/cover no-repeat,
        linear-gradient(180deg, #022f54 0%, #014277 42%, #00579c 100%);
      border-color: transparent;
      box-shadow: 0 24px 54px -18px rgba(14,80,160,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
    }
    .cta-card:hover { box-shadow: 0 30px 60px -18px rgba(14,80,160,0.55), inset 0 1px 0 rgba(255,255,255,0.2); }
    .cta-card--primary .cta-card-eyebrow,
    .cta-card:hover .cta-card-eyebrow { color: rgba(255,255,255,0.9); }
    .cta-card--primary .cta-card-title,
    .cta-card:hover .cta-card-title { color: #fff; }
    .cta-card--primary .cta-card-txt,
    .cta-card:hover .cta-card-txt { color: rgba(255,255,255,0.82); }
    .cta-card:hover .cta-link { color: #fff; }
    /* primary eyebrow dot */
    .cta-card--primary .cta-card-eyebrow {
      display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
    }
    .cta-card--primary .cta-card-eyebrow::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: #fff; box-shadow: 0 0 7px rgba(255,255,255,0.8);
      transition: background .35s, box-shadow .35s;
    }

    /* ===== When hovering a DIFFERENT card, the default blue card reverts to white ===== */
    .cta-cards:hover .cta-card--primary:not(:hover) {
      background: #fff;
      border-color: rgba(15,23,42,0.04);
      box-shadow: 0 14px 44px -16px rgba(20,50,100,0.13), 0 2px 8px -4px rgba(20,50,100,0.05);
    }
    .cta-cards:hover .cta-card--primary:not(:hover) .cta-card-eyebrow { color: var(--t3); }
    .cta-cards:hover .cta-card--primary:not(:hover) .cta-card-title { color: var(--t1); }
    .cta-cards:hover .cta-card--primary:not(:hover) .cta-card-txt { color: var(--t2); }
    .cta-cards:hover .cta-card--primary:not(:hover) .cta-card-eyebrow::before { background: var(--blue); box-shadow: none; }
    .cta-cards:hover .cta-card--primary:not(:hover) .btn--white { background: var(--blue); color: #fff; }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    footer { padding: 64px 0 36px; background: #0a1628; }
    .ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .ft-logo { display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 500; letter-spacing: -0.04em; color: #fff; margin-bottom: 14px; }
    .ft-mark { width: 28px; height: 28px; border-radius: 6px; background: var(--blue); display: grid; place-items: center; font-size: 14px; font-weight: 500; color: #fff; }
    .ft-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
    .ft-col-title { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; font-family: var(--font); }
    .ft-links { display: flex; flex-direction: column; gap: 11px; }
    .ft-links a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color .15s; }
    .ft-links a:hover { color: #fff; }
    .ft-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; font-size: 12px; color: rgba(255,255,255,0.35); }
    .ft-bottom-links { display: flex; gap: 20px; }
    .ft-bottom-links a { color: rgba(255,255,255,0.35); transition: color .15s; }
    .ft-bottom-links a:hover { color: rgba(255,255,255,0.7); }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1300px) {
      body.zstack-index-page .hero-title,
      body.zstack-index-page .hero-title span { white-space: normal; }
      .why-pillars { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 960px) {
      .sol-grid, .testimonials, .cta-cards { grid-template-columns: 1fr 1fr; }
      .prod-grid { grid-template-columns: 1fr 1fr; }
      .recog-item { grid-template-columns: 220px 1fr; }
      .ri-number { font-size: 34px; }
      .ri-left { padding: 24px 24px 24px 0; }
      .ri-right { padding: 24px 0 24px 24px; }
      .ri-logo-box { width: 80px; height: 40px; }
      body.zstack-index-page .nav-links { display: none; }
      .why-cta-box { flex-direction: column; gap: 32px; }
      .ft-top { grid-template-columns: 1fr 1fr; }
      .arch-prod-grid { grid-template-columns: 1fr 1fr; }
      .arch-cross-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .sol-grid, .testimonials, .cta-cards { grid-template-columns: 1fr; }
      .cta-cards:has(> .cta-card:nth-child(2):last-child) { max-width: 420px; }
      .customer-stats { grid-template-columns: 1fr 1fr; }
      .recog-item { grid-template-columns: 150px 1fr; }
      .ri-left { padding: 14px 18px 14px 16px; }
      .ri-number { font-size: 20px; }
      .recog-item.ri-active .ri-number { font-size: 32px; }
      .ri-right { padding: 14px 18px 14px 22px; gap: 16px; }
      .recog-wm { display: none; }
      .ri-logo-box { width: 70px; height: 28px; }
      .recog-item.ri-active .ri-logo-box { width: 84px; height: 36px; }
      .arch-grid { grid-template-columns: 1fr 1fr; }
      .arch-prod-grid { grid-template-columns: 1fr 1fr; }
      .arch-cross-grid { grid-template-columns: 1fr; }
      .hero-arch-inner { padding: 24px 20px; }
      .why-pillars { grid-template-columns: 1fr 1fr; }
      .why-stat-row { flex-wrap: wrap; }
      .sol-card { padding: 30px 24px 26px; }
      .sol-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
    }

/* Legacy homepage class aliases (customers marquee block) */
.zstack_index_customer-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 56px 0; }
.zstack_index_cstat { text-align: center; padding: 32px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .2s; }
.zstack_index_cstat:hover { border-color: var(--border-hi); }
.zstack_index_cstat-n { font-size: 42px; font-weight: 500; letter-spacing: -0.04em; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.zstack_index_cstat-l { font-size: 13px; color: var(--t3); }
.zstack_index_marquee-wrap { overflow: hidden; position: relative; margin-bottom: 60px; }
.zstack_index_marquee-wrap::before, .zstack_index_marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.zstack_index_marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.zstack_index_marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.zstack_index_marquee-track { display: flex; gap: 28px; width: max-content; }
.zstack_index_marquee-track:hover { animation-play-state: paused; }
.zstack_index_marquee-seq { display: flex; gap: 28px; flex-shrink: 0; }
.zstack_index_marquee-row-1 { animation: scroll-left 18s linear infinite; }
.zstack_index_marquee-row-2 { animation: scroll-right 24s linear infinite; }
.zstack_index_logo-chip { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 28px; white-space: nowrap; flex-shrink: 0; transition: color .2s, border-color .2s; }
.zstack_index_logo-chip:hover { border-color: var(--border-hi); }
.zstack_index_logo-chip img { max-height: 36px; width: auto; display: block; }
@media (max-width: 900px) { .zstack_index_customer-stats { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════════════════
   HOMEPAGE NAV �?adapt site two-row nav (100px)
   ══════════════════════════════════════════ */
body.zstack-index-page .nav {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
body.zstack-index-page .nav:not(.scrolled) {
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
body.zstack-index-page .nav.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border) !important;
}
body.zstack-index-page .nav .nav-inner {
  height: auto;
  max-width: 1280px;
  width: 100%;
}
body.zstack-index-page .nav .nav-inner:first-child {
  min-height: 38px;
  align-items: center;
}
body.zstack-index-page .nav .nav-inner:nth-child(2) {
  flex: 1;
  min-height: 62px;
  align-items: center;
}
body.zstack-index-page .langua {
  flex: 1;
  text-align: right;
  line-height: 38px;
}
body.zstack-index-page .langua a {
  margin-left: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
body.zstack-index-page .nav:not(.scrolled) .langua a {
  color: rgba(255, 255, 255, 0.92);
}
body.zstack-index-page .nav:not(.scrolled) .langua a:hover {
  color: #fff;
}
body.zstack-index-page .nav:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.92);
}
body.zstack-index-page .nav:not(.scrolled) .nav-link:hover,
body.zstack-index-page .nav:not(.scrolled) .nav-item.open > .nav-link {
  color: #fff;
}
body.zstack-index-page .nav:not(.scrolled) .nav-search,
body.zstack-index-page .nav:not(.scrolled) .nav-search-trigger {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}
body.zstack-index-page .nav:not(.scrolled) .nav-search:hover,
body.zstack-index-page .nav:not(.scrolled) .nav-search-trigger:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
body.zstack-index-page .nav:not(.scrolled) .nav-lang,
body.zstack-index-page .nav:not(.scrolled) .nav-lang-label {
  color: rgba(255, 255, 255, 0.92);
}
body.zstack-index-page .nav:not(.scrolled) .nav-lang:hover,
body.zstack-index-page .nav:not(.scrolled) .nav-lang:focus-within {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
body.zstack-index-page .nav.scrolled .langua a {
  color: var(--t1);
}
body.zstack-index-page .nav.scrolled .langua a:hover {
  color: var(--blue);
}
body.zstack-index-page .nav.scrolled .nav-link {
  color: var(--t1);
}
body.zstack-index-page .nav.scrolled .nav-link:hover,
body.zstack-index-page .nav.scrolled .nav-item.open > .nav-link {
  color: var(--blue);
}
body.zstack-index-page .nav.scrolled .nav-search,
body.zstack-index-page .nav.scrolled .nav-search-trigger {
  color: var(--t3);
  background: var(--bg-alt);
  border-color: var(--border);
}
body.zstack-index-page .nav.scrolled .nav-search:hover,
body.zstack-index-page .nav.scrolled .nav-search-trigger:hover {
  color: var(--t1);
  border-color: var(--border-hi);
}
body.zstack-index-page .nav.scrolled .nav-lang,
body.zstack-index-page .nav.scrolled .nav-lang-label {
  color: var(--t1);
}
body.zstack-index-page .nav.scrolled .nav-lang:hover,
body.zstack-index-page .nav.scrolled .nav-lang:focus-within {
  color: var(--blue);
  border-color: var(--border);
}
body.zstack-index-page .nav.scrolled .nav-mobile-user,
body.zstack-index-page .nav.scrolled .nav-mobile-toggle {
  color: var(--blue);
}
body.zstack-index-page .nav .nav-link,
body.zstack-index-page .nav .langua a,
body.zstack-index-page .nav .nav-search,
body.zstack-index-page .nav .nav-lang {
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
body.zstack-index-page .nav-logo {
  margin-bottom: 0;
}
body.zstack-index-page .nav-logo img {
  width: 100px;
  height: auto;
  display: block;
  transition: filter .3s ease;
}
body.zstack-index-page .nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}
body.zstack-index-page .nav.scrolled .nav-logo img {
  filter: none;
}
body.zstack-index-page .nav:not(.scrolled) .nav-mobile-user,
body.zstack-index-page .nav:not(.scrolled) .nav-mobile-toggle {
  color: #fff;
}
body.zstack-index-page .mega,
body.zstack-index-page .dropdown {
  top: 100px;
}
body.zstack-index-page .nav-backdrop {
  top: 100px;
}
body.zstack-index-page {
  padding-top: 0;
}
body.zstack-index-page .hero {
  padding-top: 0;
}
body.zstack-index-page .hero-inner {
  padding-top: 128px;
}
@media (max-width: 640px) {
  body.zstack-index-page .nav {
    height: auto;
  }
  body.zstack-index-page .nav-backdrop {
    top: 56px;
  }
  body.zstack-index-page .hero {
    padding-bottom: 72px;
    overflow-x: clip;
  }
  body.zstack-index-page .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    padding: 88px 16px 0;
    min-height: auto;
    gap: 20px;
    box-sizing: border-box;
  }
  body.zstack-index-page .hero-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  body.zstack-index-page .hero-content > * {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  body.zstack-index-page .hero-eyebrow {
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 14px;
    padding: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  body.zstack-index-page .hero-title {
    font-size: clamp(22px, 6.4vw, 30px);
    margin-bottom: 14px;
    line-height: 1.16;
    max-width: 100%;
  }
  body.zstack-index-page .hero-title span {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  body.zstack-index-page .hero-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 100%;
    padding: 0;
  }
  body.zstack-index-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }
  body.zstack-index-page .btn--hero-primary,
  body.zstack-index-page .btn--hero-ghost {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }
  body.zstack-index-page .btn--hero-primary {
    padding: 8px 14px 8px 8px;
    font-size: 13px;
    min-height: 48px;
    height: auto;
    gap: 10px;
  }
  body.zstack-index-page .btn--hero-primary .ic {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }
  body.zstack-index-page .btn--hero-ghost {
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }
  body.zstack-index-page .hero-stats {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 8px;
    margin: 24px 0 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 4px;
    box-sizing: border-box;
    overflow: hidden;
  }
  body.zstack-index-page .hero-stat {
    display: flex;
    align-items: flex-start;
    padding: 12px 10px;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  body.zstack-index-page .hero-stat > div:not(.hero-stat-bar) {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }
  body.zstack-index-page .hero-stat-n {
    font-size: 18px !important;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  body.zstack-index-page .hero-stat-l {
    font-size: 11px;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  body.zstack-index-page .hero-stat-bar {
    height: 28px;
    width: 3px;
    flex-shrink: 0;
  }
  body.zstack-index-page .hero-img {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
    overflow: hidden;
  }
  body.zstack-index-page .hero-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }
  body.zstack-index-page .hero-wave {
    height: 48px;
  }
}

/* Customers: cust2 band + testimonials below */
body.zstack-index-page .customers-section {
  padding: 56px 0 72px;
}
body.zstack-index-page .customers-section .testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  body.zstack-index-page .customers-section .testimonials {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  body.zstack-index-page .customers-section .testimonials {
    grid-template-columns: 1fr;
  }
}
