
    /* ===========================
       DESIGN TOKENS — DARK (default)
    =========================== */
    :root {
      --bg:          #04091a;
      --bg-2:        #071228;
      --bg-card:     rgba(255,255,255,0.025);
      --blue:        #1a6eff;
      --blue-lt:     #5aa0ff;
      --blue-glow:   rgba(26,110,255,0.28);
      --gold:        #1c68da;
      --gold-lt:     #5378f1;
      --txt:         #e8ecf4;
      --txt-2:       #8a9ab8;
      --txt-muted:   #4a5878;
      --border:      rgba(255,255,255,0.07);
      --border-b:    rgba(26,110,255,0.25);
      --nav-scroll:  rgba(4,9,26,0.92);
      --mob-bg:      rgba(4,9,26,0.98);
      --stats-bg-a:  #060d1f;
      --stats-bg-b:  #040912;
      --stat-overlay:rgba(26,110,255,0.09);
      --hero-glow-a: rgba(26,110,255,0.14);
      --hero-glow-b: rgba(201,168,76,0.07);
      --pillars-stat-bg: rgba(4,9,26,0.86);
      --float-bg:    rgba(7,18,40,0.85);
    }

    /* ===========================
       DESIGN TOKENS — LIGHT
    =========================== */
    html.light {
      --bg:          #f0f4fb;
      --bg-2:        #e4eaf6;
      --bg-card:     rgba(255,255,255,0.75);
      --blue:        #0F3F6A;
      --blue-lt:     #4980AA;
      --blue-glow:   rgba(15,63,106,0.22);
      --gold:        #002999;
      --gold-lt:     #1c68da;
      --txt:         #0d1628;
      --txt-2:       #3d4f6e;
      --txt-muted:   #7a8fb0;
      --border:      rgba(0,0,0,0.08);
      --border-b:    rgba(15,63,106,0.2);
      --nav-scroll:  rgba(240,244,251,0.96);
      --mob-bg:      rgba(240,244,251,0.99);
      --stats-bg-a:  #dce6f5;
      --stats-bg-b:  #e8eef8;
      --stat-overlay:rgba(15,63,106,0.07);
      --hero-glow-a: rgba(15,63,106,0.1);
      --hero-glow-b: rgba(192,148,50,0.06);
      --pillars-stat-bg: rgba(255,255,255,0.92);
      --float-bg:    rgba(255,255,255,0.92);
    }

    /* Global smooth theme transition */
    html { transition: background .35s ease; }
    *, *::before, *::after { transition: background-color .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease; }

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'IBM Plex Sans', sans-serif;
      background: var(--bg);
      color: var(--txt);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ===========================
       TYPOGRAPHY HELPERS
    =========================== */
    .serif { font-family: 'IBM Plex Serif', serif; }

    .g-text {
      background: linear-gradient(135deg, #fff 0%, var(--blue-lt) 45%, var(--gold-lt) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .g-text-gold {
      background: linear-gradient(135deg, var(--gold-lt), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ===========================
       SCROLL REVEAL
    =========================== */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.in { opacity:1; transform:translateY(0); }
    .d1 { transition-delay:.08s!important; }
    .d2 { transition-delay:.16s!important; }
    .d3 { transition-delay:.24s!important; }
    .d4 { transition-delay:.32s!important; }
    .d5 { transition-delay:.40s!important; }
    .d6 { transition-delay:.48s!important; }

    /* ===========================
       LAYOUT
    =========================== */
    .wrap { max-width:1200px; margin:0 auto; padding:0 28px; }
    section { padding: 120px 0; }

    /* ===========================
       SECTION LABELS
    =========================== */
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--blue-lt);
      margin-bottom: 18px;
    }
    .tag::before {
      content:'';
      width: 24px;
      height: 1px;
      background: var(--blue);
    }
    .tag.centered::before { display:none; }

    .sh { /* section heading */
      font-family: 'IBM Plex Serif', serif;
      font-size: clamp(36px,5vw,58px);
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: -.02em;
      margin-bottom: 18px;
    }
    .sp { /* section paragraph */
      font-size: 17px;
      color: var(--txt-2);
      line-height: 1.75;
      font-weight: 300;
      max-width: 560px;
    }
    .sec-head { margin-bottom: 72px; }

    /* ===========================
       BUTTONS
    =========================== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
    }
    .btn .arr { transition: transform .3s ease; }
    .btn:hover .arr { transform: translateX(4px); }

    .btn-p {
      background: linear-gradient(135deg, var(--blue) 0%, #003fc7 100%);
      color: #fff;
      box-shadow: 0 6px 32px var(--blue-glow);
    }
    .btn-p::after {
      content:'';
      position:absolute;
      top:0; left:-100%;
      width:100%; height:100%;
      background: linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
      transition: left .55s ease;
    }
    .btn-p:hover::after { left:100%; }
    .btn-p:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(26,110,255,.55); }

    .btn-o {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255,255,255,.16);
    }
    .btn-o:hover { background: rgba(255,255,255,.05); border-color:rgba(255,255,255,.3); transform:translateY(-3px); }

    /* ===========================
       NAVBAR
    =========================== */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 22px 0;
      transition: all .4s ease;
    }
    #nav.scrolled {
      background: var(--nav-scroll);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .nav-in {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
    }
    .logo-mark {
      width: 38px; height: 38px;
      background: linear-gradient(135deg,var(--blue),var(--gold));
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'IBM Plex Serif', serif;
      font-size: 20px; font-weight: 700; color: #fff;
      flex-shrink: 0;
    }
    .logo-img {
      width: 150px; height: 50px;
      object-fit: contain;
      flex-shrink: 0;
      filter: drop-shadow(0 0 3px rgba(255,255,255,0.1));
    }
    /* Make logo visible in dark mode */
    .logo-img {
      filter: brightness(1) drop-shadow(0 1px 2px rgba(255,255,255,0.15));
    }
    html.light .logo-img {
      filter: brightness(1.1) drop-shadow(0 1px 2px rgba(0,0,0,0.1));
    }
    .logo-name {
      font-family: 'IBM Plex Serif', serif;
      font-size: 20px; font-weight: 600; color: #fff;
      letter-spacing: .02em;
    }
    .logo-name span { color: var(--gold); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 38px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--txt-2);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: color .3s ease;
    }
    .nav-links a:hover { color:#fff; }
    .nav-cta {
      background: linear-gradient(135deg,var(--blue),#003fc7)!important;
      color: #fff!important;
      padding: 10px 22px;
      border-radius: 7px;
      font-weight:500!important;
      text-transform:none!important;
      letter-spacing:0!important;
      box-shadow: 0 0 20px var(--blue-glow);
      transition: all .3s ease!important;
    }
    .nav-cta:hover { box-shadow:0 0 36px rgba(26,110,255,.6)!important; transform:translateY(-2px); }

    /* Hamburger */
    .ham {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 8px;
      z-index: 210;
      background: none;
      border: none;
    }
    .ham span {
      display: block;
      width: 26px; height: 2.5px;
      background: var(--txt);
      border-radius: 2px;
      transition: all .3s ease;
    }
    .ham.open span:nth-child(1) { transform: rotate(45deg) translate(7px,8px); }
    .ham.open span:nth-child(2) { opacity:0; }
    .ham.open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-9px); }

    /* Mobile overlay */
    .mob-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--mob-bg);
      backdrop-filter: blur(20px);
      z-index: 199;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 20px;
    }
    .mob-menu.open { display: flex; }
    .mob-menu a {
      font-family: 'IBM Plex Serif', serif;
      font-size: 20px; font-weight: 500;
      color: #fff; text-decoration: none;
      transition: color .3s ease;
      padding: 12px 0;
    }
    .mob-menu a:hover { color: var(--gold); transform: translateX(4px); }

    /* ===========================
       HERO
    =========================== */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 110px 0 90px;
    }
    #hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      pointer-events: none;
    }
    .hero-grad {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 55% at 50% 110%, var(--hero-glow-a) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 85% 20%, var(--hero-glow-b) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg) 100%);
      pointer-events: none;
    }

    /* ---- Aurora orbs ---- */
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      pointer-events: none;
      animation: orbDrift var(--orb-dur) ease-in-out infinite var(--orb-del);
    }
    .hero-orb-1 {
      width: 680px; height: 680px;
      background: radial-gradient(circle, rgba(26,110,255,0.17) 0%, transparent 70%);
      top: -180px; left: -180px;
      --orb-dur: 13s; --orb-del: 0s;
    }
    .hero-orb-2 {
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(201,168,76,0.13) 0%, transparent 70%);
      top: 15%; right: -100px;
      --orb-dur: 17s; --orb-del: -5s;
    }
    .hero-orb-3 {
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(26,110,255,0.09) 0%, transparent 70%);
      bottom: -90px; left: 28%;
      --orb-dur: 15s; --orb-del: -8s;
    }
    @keyframes orbDrift {
      0%,100% { transform: translate(0,0) scale(1); }
      33%      { transform: translate(30px,-24px) scale(1.05); }
      66%      { transform: translate(-22px,18px) scale(0.96); }
    }

    /* ---- Scan line ---- */
    .hero-scan {
      position: absolute;
      left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(26,110,255,0.35) 30%, rgba(26,110,255,0.85) 50%, rgba(26,110,255,0.35) 70%, transparent 100%);
      pointer-events: none;
      z-index: 1;
      opacity: 0;
      animation: scanLine 9s linear infinite 1.8s;
    }
    @keyframes scanLine {
      0%   { top: 0%;   opacity: 0; }
      3%   { opacity: 1; }
      95%  { opacity: 0.5; }
      100% { top: 100%; opacity: 0; }
    }

    /* ---- Grid overlay ---- */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(26,110,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,110,255,.04) 1px, transparent 1px);
      background-size: 66px 66px;
      -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, rgba(0,0,0,.55) 20%, transparent 75%);
      mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, rgba(0,0,0,.55) 20%, transparent 75%);
      pointer-events: none;
      z-index: 0;
    }

    /* ---- Hero two-column layout ---- */
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 400px;
      align-items: center;
      gap: 60px;
      width: 100%;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }

    /* ---- Cinematic text entrance ---- */
    .hero-line { overflow: hidden; display: block; }
    .hero-line-inner {
      display: block;
      animation: heroSlideUp .95s cubic-bezier(.22,1,.36,1) both;
    }
    .hero-line:nth-child(2) .hero-line-inner { animation-delay: .13s; }
    @keyframes heroSlideUp {
      from { transform: translateY(110%); }
      to   { transform: translateY(0); }
    }

    /* ---- Entrance animations ---- */
    @keyframes fadeUpIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes blink {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.4; transform:scale(.7); }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(26,110,255,.1);
      border: 1px solid rgba(26,110,255,.28);
      border-radius: 100px;
      padding: 8px 18px;
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--blue-lt);
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUpIn .7s .15s ease forwards;
    }
    .hero-badge::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--blue);
      border-radius: 50%;
      animation: blink 2.2s ease infinite;
    }

    #hero h1 {
      font-family: 'IBM Plex Serif', serif;
      font-size: clamp(50px,7.5vw,96px);
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: -.025em;
      margin-bottom: 26px;
    }
    #hero h1 em { font-style: italic; font-weight: 300; }

    /* Shimmer on hero gradient text */
    #hero .g-text {
      background: linear-gradient(90deg, var(--blue-lt) 0%, var(--gold-lt) 35%, #fff 52%, var(--gold-lt) 68%, var(--blue-lt) 100%);
      background-size: 250% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmerHero 4s linear infinite;
    }
    @keyframes shimmerHero {
      0%   { background-position: 0% center; }
      100% { background-position: -250% center; }
    }

    #hero p {
      font-size: clamp(16px,2vw,19px);
      color: var(--txt-2);
      max-width: 600px;
      margin-bottom: 48px;
      line-height: 1.75;
      font-weight: 300;
      opacity: 0;
      animation: fadeUpIn .7s .58s ease forwards;
    }
    .hero-ctas {
      display: flex; gap: 16px; flex-wrap: wrap;
      opacity: 0;
      animation: fadeUpIn .7s .82s ease forwards;
    }

    /* ---- Dashboard Card ---- */
    .hero-card-wrap {
      position: relative;
      z-index: 2;
    }
    .hero-card {
      background: rgba(255,255,255,0.032);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(26,110,255,0.22);
      border-radius: 20px;
      padding: 28px;
      box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(26,110,255,0.07),
        inset 0 1px 0 rgba(255,255,255,0.07);
      opacity: 0;
      animation: cardEntrance 1.1s .38s cubic-bezier(.22,1,.36,1) forwards, cardBob 7s 1.5s ease-in-out infinite;
    }
    @keyframes cardEntrance {
      from { opacity: 0; transform: translateY(44px) rotateX(10deg); }
      to   { opacity: 1; transform: translateY(0) rotateX(0deg); }
    }
    @keyframes cardBob {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }
    .card-hdr {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 20px;
    }
    .card-title-sm {
      font-size: 10.5px; font-weight: 600;
      letter-spacing: .13em; text-transform: uppercase;
      color: var(--txt-muted);
    }
    .card-live {
      display: flex; align-items: center; gap: 6px;
      font-size: 10.5px; color: #22c55e; font-weight: 500;
    }
    .card-live::before {
      content: ''; width: 6px; height: 6px;
      background: #22c55e; border-radius: 50%;
      animation: blink 1.8s ease infinite;
    }
    .card-chart { width: 100%; margin-bottom: 22px; }
    .card-chart svg { width: 100%; height: 80px; overflow: visible; display: block; }
    .chart-path {
      fill: none; stroke: var(--blue); stroke-width: 2.5;
      stroke-linecap: round; stroke-linejoin: round;
      stroke-dasharray: 450; stroke-dashoffset: 450;
      animation: drawLine 2s 1s cubic-bezier(.22,1,.36,1) forwards;
    }
    .chart-area { stroke: none; fill: url(#cg); opacity: .5; }
    @keyframes drawLine { to { stroke-dashoffset: 0; } }
    .card-row {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 10px; margin-bottom: 20px;
    }
    .cr-item { text-align: center; }
    .cr-val {
      font-family: 'IBM Plex Serif', serif;
      font-size: 22px; font-weight: 600; color: #fff; line-height: 1;
    }
    .cr-val.g { color: var(--gold-lt); }
    .cr-val.b { color: var(--blue-lt); }
    .cr-lbl {
      font-size: 9.5px; color: var(--txt-muted);
      text-transform: uppercase; letter-spacing: .08em; margin-top: 3px;
    }
    .card-bars { display: flex; flex-direction: column; gap: 9px; }
    .cb-row  { display: flex; align-items: center; gap: 10px; }
    .cb-lbl  { font-size: 10.5px; color: var(--txt-2); width: 90px; flex-shrink: 0; }
    .cb-track { flex: 1; height: 4px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
    .cb-fill { height: 100%; border-radius: 4px; }
    .cb-fill.a { background: linear-gradient(90deg,var(--blue),var(--blue-lt)); animation: barA 1.5s 1.2s cubic-bezier(.22,1,.36,1) both; }
    .cb-fill.b { background: linear-gradient(90deg,var(--gold),var(--gold-lt));  animation: barB 1.5s 1.45s cubic-bezier(.22,1,.36,1) both; }
    .cb-fill.c { background: linear-gradient(90deg,#3c688f,#145691);            animation: barC 1.5s 1.7s  cubic-bezier(.22,1,.36,1) both; }
    @keyframes barA { from { width:0; } to { width:87%; } }
    @keyframes barB { from { width:0; } to { width:74%; } }
    @keyframes barC { from { width:0; } to { width:68%; } }
    .cb-pct { font-size: 10px; color: var(--txt-muted); width: 28px; text-align: right; }

    /* ---- Toast above card ---- */
    .hero-toast {
      position: absolute;
      top: -18px; left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: rgba(34,197,94,0.1);
      border: 1px solid rgba(34,197,94,0.28);
      backdrop-filter: blur(14px);
      border-radius: 100px;
      padding: 7px 16px;
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; color: #115591; font-weight: 500;
      white-space: nowrap;
      opacity: 0;
      animation: toastIn .7s .95s cubic-bezier(.22,1,.36,1) forwards, toastBob 5s 1.65s ease-in-out infinite;
      z-index: 4;
    }
    @keyframes toastIn {
      from { opacity: 0; transform: translateX(-50%) translateY(6px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(-6px); }
    }
    @keyframes toastBob {
      0%,100% { transform: translateX(-50%) translateY(-6px); }
      50%      { transform: translateX(-50%) translateY(-13px); }
    }
    .toast-dot { width: 6px; height: 6px; background: #125fa3; border-radius: 50%; flex-shrink: 0; animation: blink 2s ease infinite; }

    /* ---- Scroll hint ---- */
    .hero-scroll-hint {
      position: absolute;
      bottom: 30px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      z-index: 3;
      opacity: 0;
      animation: hintFadeIn .8s 1.6s ease forwards;
    }
    @keyframes hintFadeIn { to { opacity: .55; } }
    .hero-scroll-hint span {
      font-size: 9.5px; letter-spacing: .2em;
      text-transform: uppercase; color: var(--txt-muted);
    }
    .scroll-mouse {
      width: 20px; height: 32px;
      border: 1.5px solid rgba(255,255,255,.2);
      border-radius: 10px;
      display: flex; justify-content: center; padding-top: 5px;
    }
    .scroll-wheel {
      width: 2.5px; height: 6px;
      background: rgba(26,110,255,.8); border-radius: 3px;
      animation: mouseScroll 2.2s ease-in-out infinite;
    }
    @keyframes mouseScroll {
      0%   { transform: translateY(0); opacity: 1; }
      70%  { transform: translateY(10px); opacity: 0; }
      71%  { transform: translateY(0); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }

    /* ---- Floating stat badge ---- */
    .hero-float {
      position: absolute;
      bottom: 60px; right: 40px;
      background: var(--float-bg);
      backdrop-filter: blur(18px);
      border: 1px solid var(--border-b);
      border-radius: 14px;
      padding: 18px 24px;
      display: flex; align-items: center; gap: 14px;
      z-index: 3;
      opacity: 0;
      animation: fadeUpIn .7s 1.1s ease forwards, floatBob 4.5s 1.8s ease-in-out infinite;
    }
    @keyframes floatBob {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }
    .hf-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg,var(--blue),#003fc7);
      border-radius: 11px;
      display: flex; align-items: center; justify-content: center;
    }
    .hf-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.75; }
    .hf-text { font-size: 13px; color: var(--txt-2); }
    .hf-text strong {
      display: block;
      font-family: 'IBM Plex Serif', serif;
      font-size: 22px; color: #fff; font-weight: 600;
    }

    /* ---- Responsive ---- */
    @media (max-width: 1100px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-card-wrap { display: none; }
      .hero-float { display: none; }
    }

    /* ===========================
       TRUST BAR
    =========================== */
    .trust-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,.012);
      padding: 26px 0;
    }
    .trust-items {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
      min-width: 140px;
      justify-content: center;
    }
    .ti-icon {
      width: 34px; height: 34px;
      background: linear-gradient(135deg,rgba(26,110,255,.18),rgba(26,110,255,.04));
      border: 1px solid rgba(26,110,255,.2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ti-icon svg { width:16px; height:16px; stroke:var(--blue-lt); fill:none; stroke-width:1.75; }
    .ti-text { font-size:13px; font-weight:500; color:var(--txt-2); white-space:nowrap; }
    .trust-div { width:1px; height:32px; background:var(--border); }

    /* ===========================
       STATS
    =========================== */
    #stats {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--stats-bg-a), var(--stats-bg-b));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    #stats::before {
      content:'';
      position:absolute;
      top:50%; left:50%;
      transform:translate(-50%,-50%);
      width:700px; height:350px;
      background: radial-gradient(ellipse, var(--stat-overlay), transparent 70%);
      pointer-events:none;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 2px;
    }
    .stat-box {
      padding: 52px 40px;
      text-align: center;
      border: 1px solid var(--border);
      background: var(--bg-card);
      position: relative;
      overflow: hidden;
      transition: background .4s ease;
    }
    .stat-box::after {
      content:'';
      position:absolute;
      top:0; left:0; right:0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
      opacity: 0;
      transition: opacity .4s ease;
    }
    .stat-box:hover::after { opacity:1; }
    .stat-box:hover { background: rgba(26,110,255,.04); }
    .stat-num {
      font-family: 'IBM Plex Serif', serif;
      font-size: 62px;
      font-weight: 600;
      line-height: 1;
      margin-bottom: 10px;
      background: linear-gradient(135deg, #fff 0%, var(--gold-lt) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-lbl {
      font-size: 12.5px;
      font-weight: 500;
      color: var(--txt-2);
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    /* ===========================
       SERVICES
    =========================== */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 22px;
    }
    .svc-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 38px 32px;
      position: relative;
      overflow: hidden;
      transition: all .4s ease;
      cursor: default;
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
    }
    /* Crypto - Blockchain network background */
    .svc-card:nth-child(1) {
      background-image:
        linear-gradient(135deg, rgba(15,63,106,0.75) 0%, rgba(15,63,106,0.85) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-color: var(--bg-card);
    }
    /* Investment - Growth chart background */
    .svc-card:nth-child(2) {
      background-image:
        linear-gradient(135deg, rgba(34,197,94,0.75) 0%, rgba(15,63,106,0.85) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M15 30L0 45v15h60V45L45 30m-15-4l15-15v-11H0v11l15 15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-color: var(--bg-card);
    }
    /* Forex - Trading chart background */
    .svc-card:nth-child(3) {
      background-image:
        linear-gradient(135deg, rgba(201,168,76,0.75) 0%, rgba(15,63,106,0.85) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M30 0C13.43 0 0 13.43 0 30s13.43 30 30 30 30-13.43 30-30S46.57 0 30 0m0 54C15.64 54 4 42.36 4 28s11.64-26 26-26 26 11.64 26 26-11.64 26-26 26m7-28c0 3.87-3.13 7-7 7s-7-3.13-7-7 3.13-7 7-7 7 3.13 7 7z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-color: var(--bg-card);
    }
    /* Monitoring - Alert/surveillance background */
    .svc-card:nth-child(4) {
      background-image:
        linear-gradient(135deg, rgba(139,92,246,0.75) 0%, rgba(15,63,106,0.85) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M30 20c-5.523 0-10 4.477-10 10s4.477 10 10 10 10-4.477 10-10-4.477-10-10-10zm0-8C16.268 12 5 23.268 5 37s11.268 25 25 25 25-11.268 25-25-11.268-25-25-25z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-color: var(--bg-card);
    }
    /* Tracking - Network/connection background */
    .svc-card:nth-child(5) {
      background-image:
        linear-gradient(135deg, rgba(6,182,212,0.75) 0%, rgba(15,63,106,0.85) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M12 24c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm36-12c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zM12 48c-5.523 0-10-4.477-10-10s4.477-10 10-10 10 4.477 10 10-4.477 10-10 10zm36-12c-5.523 0-10-4.477-10-10s4.477-10 10-10 10 4.477 10 10-4.477 10-10 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-color: var(--bg-card);
    }
    /* Legal - Law/document background */
    .svc-card:nth-child(6) {
      background-image:
        linear-gradient(135deg, rgba(100,116,139,0.75) 0%, rgba(15,63,106,0.85) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M8 2h36v4H8V2zm0 8h36v4H8v-4zm0 8h36v4H8v-4zm0 8h36v4H8v-4zm0 8h36v4H8v-4zm44-28v48H4V4h44v2h-2V6h2zm0 48H4V4h44v48z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-color: var(--bg-card);
    }
    /* animated gradient border on hover */
    .svc-card::before {
      content:'';
      position:absolute; inset:0;
      border-radius:16px;
      padding:1px;
      background: linear-gradient(135deg, rgba(26,110,255,.5), transparent 50%, rgba(201,168,76,.3));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity:0;
      transition: opacity .4s ease;
    }
    .svc-card:hover::before { opacity:1; }
    .svc-card:hover {
      transform: translateY(-9px);
      background: rgba(26,110,255,.04);
      box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 48px rgba(26,110,255,.1);
    }
    .svc-num {
      position: absolute;
      top:24px; right:26px;
      font-family:'IBM Plex Serif',serif;
      font-size:52px; font-weight:700;
      color:rgba(255,255,255,.03);
      line-height:1;
      user-select:none;
    }
    .svc-icon {
      width: 54px; height: 54px;
      border-radius: 14px;
      background: linear-gradient(135deg,rgba(26,110,255,.16),rgba(26,110,255,.03));
      border: 1px solid rgba(26,110,255,.22);
      display:flex; align-items:center; justify-content:center;
      margin-bottom: 24px;
    }
    .svc-icon svg {
      width:24px; height:24px;
      color: var(--blue-lt);
      stroke: currentColor;
      fill:none;
    }
    .svc-card h3 {
      font-family:'IBM Plex Serif',serif;
      font-size:22px; font-weight:600;
      color:#fff; margin-bottom:12px;
    }
    .svc-card p {
      font-size:14px;
      color:var(--txt-2);
      line-height:1.72;
      font-weight:300;
    }

    /* ===========================
       HOW IT WORKS
    =========================== */
    #hiw { background: linear-gradient(180deg,transparent,rgba(26,110,255,.025),transparent); }
    .steps {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      position: relative;
    }
    .steps::before {
      content:'';
      position:absolute;
      top:55px;
      left: calc(16.67% + 28px);
      right: calc(16.67% + 28px);
      height:1px;
      background: linear-gradient(90deg, var(--blue), rgba(26,110,255,.25), var(--blue));
    }
    .step {
      padding: 40px 28px;
      text-align: center;
    }
    .step-n {
      width:56px; height:56px;
      border-radius:50%;
      background: linear-gradient(135deg,var(--blue),#003fc7);
      display:flex; align-items:center; justify-content:center;
      font-family:'IBM Plex Serif',serif;
      font-size:24px; font-weight:600; color:#fff;
      margin: 0 auto 24px;
      position:relative; z-index:1;
      box-shadow: 0 0 36px rgba(26,110,255,.45);
    }
    .step h3 {
      font-family:'IBM Plex Serif',serif;
      font-size:24px; font-weight:600;
      color:#fff; margin-bottom:12px;
    }
    .step p {
      font-size:14px; color:var(--txt-2);
      line-height:1.72; font-weight:300;
      max-width:240px; margin:0 auto;
    }

    /* ===========================
       WHY US / PILLARS
    =========================== */
    #about { position: relative; }
    .pillars-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .pillars-img-wrap {
      position:relative;
      border-radius:22px;
      overflow:hidden;
    }
    .pillars-img-wrap img {
      width:100%; height:580px;
      object-fit:cover;
      border-radius:22px;
    }
    .pillars-img-ov {
      position:absolute; inset:0;
      background: linear-gradient(145deg, rgba(4,9,26,.45) 0%, transparent 60%);
      border-radius:22px;
    }
    .pillars-stat {
      position:absolute;
      bottom:32px; left:32px;
      background:var(--pillars-stat-bg);
      backdrop-filter:blur(20px);
      border:1px solid var(--border-b);
      border-radius:14px;
      padding:18px 22px;
      display:flex; align-items:center; gap:14px;
    }
    .ps-icon {
      width:42px; height:42px;
      background:linear-gradient(135deg,var(--blue),#003fc7);
      border-radius:10px;
      display:flex; align-items:center; justify-content:center;
    }
    .ps-icon svg { width:20px; height:20px; stroke:#fff; fill:none; stroke-width:1.75; }
    .ps-txt { font-size:13px; color:var(--txt-2); }
    .ps-txt strong {
      display:block;
      font-family:'IBM Plex Serif',serif;
      font-size:22px; color:#fff; font-weight:600;
    }

    .pillars-grid {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .pillar {
      background:var(--bg-card);
      border:1px solid var(--border);
      border-radius:14px;
      padding:24px;
      transition:all .3s ease;
    }
    .pillar:hover {
      border-color:rgba(26,110,255,.3);
      background:rgba(26,110,255,.04);
      transform:translateY(-5px);
    }
    .pillar-ico { display:flex; align-items:center; margin-bottom:14px; }
    .pillar-ico svg { width:22px; height:22px; stroke:var(--blue-lt); fill:none; stroke-width:1.5; }
    .pillar h4 {
      font-family:'IBM Plex Serif',serif;
      font-size:18px; font-weight:600;
      color:#fff; margin-bottom:6px;
    }
    .pillar p { font-size:13px; color:var(--txt-muted); line-height:1.55; }

    /* ===========================
       TESTIMONIALS
    =========================== */
    .tes-grid {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }
    .tes-card {
      background:var(--bg-card);
      border:1px solid var(--border);
      border-radius:16px;
      padding:32px;
      transition:all .4s ease;
    }
    .tes-card:hover {
      border-color:rgba(201,168,76,.28);
      background:rgba(201,168,76,.03);
      transform:translateY(-7px);
      box-shadow:0 22px 66px rgba(0,0,0,.35);
    }
    .q-mark {
      font-family:'IBM Plex Serif',serif;
      font-size:84px; line-height:.55;
      color:rgba(201,168,76,.18);
      font-weight:700;
      margin-bottom:16px;
      display:block;
    }
    .tes-stars { color:var(--gold); font-size:14px; letter-spacing:2px; margin-bottom:14px; }
    .tes-text {
      font-size:14.5px; color:var(--txt-2);
      line-height:1.72; font-style:italic;
      font-weight:300; margin-bottom:24px;
    }
    .tes-author { display:flex; align-items:center; gap:12px; }
    .av {
      width:40px; height:40px; border-radius:50%;
      background:linear-gradient(135deg,var(--blue),var(--gold));
      display:flex; align-items:center; justify-content:center;
      font-family:'IBM Plex Serif',serif;
      font-size:15px; font-weight:600; color:#fff;
    }
    .av-name { font-size:14.5px; font-weight:500; color:#fff; }
    .av-role { font-size:12px; color:var(--txt-muted); }

    /* ===========================
       FAQ
    =========================== */
    #faq {
      background: linear-gradient(180deg, transparent, rgba(26,110,255,.02), transparent);
    }
    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 80px;
      align-items: start;
    }
    .faq-intro { position: sticky; top: 110px; }
    .faq-intro .sp { margin-bottom: 36px; }
    .faq-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(26,110,255,.07);
      border: 1px solid rgba(26,110,255,.18);
      border-radius: 100px;
      padding: 10px 18px;
      font-size: 13px;
      font-weight: 500;
      color: var(--blue-lt);
    }
    .faq-badge svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; }
    .faq-stats {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 36px;
    }
    .faq-stat-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: border-color .3s ease;
    }
    .faq-stat-row:hover { border-color: var(--border-b); }
    .faq-stat-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, rgba(26,110,255,.18), rgba(26,110,255,.04));
      border: 1px solid rgba(26,110,255,.2);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .faq-stat-icon svg { width:16px; height:16px; stroke:var(--blue-lt); fill:none; stroke-width:1.75; }
    .faq-stat-txt { font-size: 13px; color: var(--txt-2); }
    .faq-stat-txt strong { display:block; color:var(--txt); font-size:15px; font-weight:500; }

    /* Accordion list */
    .faq-list { display: flex; flex-direction: column; }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 4px;
      cursor: pointer;
      user-select: none;
      list-style: none;
    }
    .faq-q-text {
      font-family: 'IBM Plex Serif', serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--txt);
      line-height: 1.3;
      transition: color .3s ease;
    }
    .faq-q:hover .faq-q-text { color: var(--blue-lt); }

    .faq-icon {
      width: 30px; height: 30px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background .35s ease, border-color .35s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
    }
    .faq-icon svg {
      width: 13px; height: 13px;
      stroke: var(--txt-2);
      fill: none; stroke-width: 2.2;
      transition: stroke .3s ease;
    }

    .faq-item.open .faq-icon {
      background: var(--blue);
      border-color: var(--blue);
      transform: rotate(45deg);
    }
    .faq-item.open .faq-icon svg { stroke: #fff; }
    .faq-item.open .faq-q-text { color: var(--blue-lt); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .48s cubic-bezier(.23,1,.32,1);
    }
    .faq-a-inner {
      padding: 0 4px 26px;
      font-size: 15px;
      color: var(--txt-2);
      line-height: 1.8;
      font-weight: 300;
      max-width: 640px;
    }
    .faq-a-inner strong { color: var(--txt); font-weight: 500; }

    /* Light mode */
    html.light .faq-item.open .faq-icon svg { stroke: #fff; }
    html.light .faq-stat-txt strong { color: var(--txt); }

    @media(max-width:1080px) {
      .faq-layout { grid-template-columns: 1fr; gap: 48px; }
      .faq-intro { position: static; }
    }

    /* ===========================
       CONTACT
    =========================== */
    #contact { background:linear-gradient(180deg,transparent,rgba(26,110,255,.025),transparent); }
    .contact-grid {
      display:grid;
      grid-template-columns:1fr 1.55fr;
      gap:80px;
      align-items:start;
    }
    .ci-info h2 { margin-bottom:18px; }
    .ci-info > p {
      color:var(--txt-2); font-size:16px; line-height:1.75;
      font-weight:300; margin-bottom:48px;
    }
    .ci-details { display:flex; flex-direction:column; gap:22px; }
    .ci-item { display:flex; align-items:flex-start; gap:16px; }
    .ci-icon {
      width:44px; height:44px;
      background:rgba(26,110,255,.1);
      border:1px solid rgba(26,110,255,.2);
      border-radius:11px;
      display:flex; align-items:center; justify-content:center;
      flex-shrink:0;
    }
    .ci-icon svg { width:18px; height:18px; stroke:var(--blue-lt); fill:none; stroke-width:1.75; }
    .ci-body { font-size:14px; color:var(--txt-2); line-height:1.65; }
    .ci-body strong { display:block; color:#fff; font-size:15px; margin-bottom:3px; }

    /* Form */
    .form-wrap {
      background:var(--bg-card);
      border:1px solid var(--border);
      border-radius:22px;
      padding:50px 44px;
      backdrop-filter:blur(10px);
    }
    .form-wrap h3 {
      font-family:'IBM Plex Serif',serif;
      font-size:30px; font-weight:600; color:#fff;
      margin-bottom:34px;
    }
    .fr { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
    .fg { margin-bottom:18px; }
    .fg label {
      display:block;
      font-size:11.5px; font-weight:500;
      letter-spacing:.09em; text-transform:uppercase;
      color:var(--txt-2); margin-bottom:8px;
    }
    .fg input,
    .fg textarea {
      width:100%;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      border-radius:10px;
      padding:14px 18px;
      font-size:15px; color:#fff;
      font-family:'IBM Plex Sans',sans-serif;
      font-weight:300;
      transition:all .3s ease;
      outline:none;
    }
    .fg input::placeholder,
    .fg textarea::placeholder { color:var(--txt-muted); }
    .fg input:focus,
    .fg textarea:focus {
      border-color:var(--blue);
      background:rgba(26,110,255,.05);
      box-shadow:0 0 0 3px rgba(26,110,255,.12);
    }
    .fg textarea { resize:vertical; min-height:124px; }
    .btn-sub {
      width:100%;
      background:linear-gradient(135deg,var(--blue),#003fc7);
      color:#fff; border:none; border-radius:10px;
      padding:16px; font-size:16px; font-weight:500;
      font-family:'IBM Plex Sans',sans-serif;
      cursor:pointer; transition:all .3s ease;
      position:relative; overflow:hidden;
      box-shadow:0 6px 32px var(--blue-glow);
    }
    .btn-sub::after {
      content:'';
      position:absolute; top:0; left:-100%;
      width:100%; height:100%;
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
      transition:left .55s ease;
    }
    .btn-sub:hover::after { left:100%; }
    .btn-sub:hover { transform:translateY(-2px); box-shadow:0 10px 44px rgba(26,110,255,.55); }
    .form-note {
      font-size:12px; color:var(--txt-muted);
      margin-top:14px; text-align:center;
    }

    /* ===========================
       FOOTER
    =========================== */
    footer {
      border-top:1px solid var(--border);
      padding:80px 0 44px;
      background:rgba(0,0,0,.28);
    }
    .ft-grid {
      display:grid;
      grid-template-columns:1.6fr 1fr 1fr 1fr;
      gap:56px;
      margin-bottom:60px;
    }
    .ft-brand p {
      font-size:14px; color:var(--txt-muted);
      line-height:1.72; margin:18px 0;
      font-weight:300; max-width:256px;
    }
    .ft-socials { display:flex; gap:10px; }
    .ft-soc {
      width:36px; height:36px;
      background:var(--bg-card);
      border:1px solid var(--border);
      border-radius:8px;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer; transition:all .3s ease;
      font-size:14px; color:var(--txt-2);
    }
    .ft-soc:hover { border-color:rgba(26,110,255,.4); color:#fff; }
    .ft-col h4 {
      font-family:'IBM Plex Serif',serif;
      font-size:18px; font-weight:600; color:#fff; margin-bottom:20px;
    }
    .ft-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
    .ft-col ul a {
      font-size:14px; color:var(--txt-muted);
      text-decoration:none; transition:color .3s ease; font-weight:300;
    }
    .ft-col ul a:hover { color:var(--blue-lt); }
    .ft-bottom {
      border-top:1px solid var(--border);
      padding-top:32px;
      display:flex; align-items:center; justify-content:space-between;
      flex-wrap:wrap; gap:16px;
    }
    .ft-bottom p { font-size:13px; color:var(--txt-muted); }
    .ft-offices { display:flex; gap:18px; }
    .ft-off { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--txt-muted); }

    /* ===========================
       CUSTOM CURSOR
    =========================== */
    @media (hover: hover) and (pointer: fine) {
      *, *::before, *::after { cursor: none !important; }

      #cur-dot {
        position: fixed;
        top: 0; left: 0;
        width: 5px; height: 5px;
        background: var(--blue);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        opacity: 0;
        will-change: left, top;
        transition:
          width  .18s cubic-bezier(.23,1,.32,1),
          height .18s cubic-bezier(.23,1,.32,1),
          border-radius .18s ease,
          opacity .22s ease,
          transform .18s cubic-bezier(.23,1,.32,1),
          background-color .35s ease;
      }

      #cur-ring {
        position: fixed;
        top: 0; left: 0;
        width: 36px; height: 36px;
        border: 1.5px solid rgba(26,110,255,.42);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        opacity: 0;
        will-change: left, top;
        transition:
          width  .45s cubic-bezier(.23,1,.32,1),
          height .45s cubic-bezier(.23,1,.32,1),
          border-color .3s ease,
          background-color .3s ease,
          opacity .25s ease;
      }

      /* ── hover state (links, buttons, cards) ── */
      body.cur-h #cur-dot {
        transform: translate(-50%,-50%) scale(0);
        opacity: 0;
      }
      body.cur-h #cur-ring {
        width: 56px; height: 56px;
        border-color: var(--blue);
        background: rgba(26,110,255,.07);
      }

      /* ── text / input state ── */
      body.cur-t #cur-dot {
        width: 2px; height: 18px;
        border-radius: 2px;
      }
      body.cur-t #cur-ring {
        width: 14px; height: 14px;
        opacity: 0;
      }

      /* ── click state ── */
      body.cur-c #cur-dot {
        transform: translate(-50%,-50%) scale(2.2);
        opacity: .8;
      }
      body.cur-c #cur-ring {
        width: 20px; height: 20px;
        opacity: .5;
      }

      /* ── light mode ── */
      html.light #cur-ring       { border-color: rgba(18,87,224,.32); }
      html.light #cur-dot        { background: var(--blue); }
      html.light body.cur-h #cur-ring {
        border-color: rgba(18,87,224,.85);
        background: rgba(18,87,224,.05);
      }
    }

    /* ===========================
       WHATSAPP BUTTON
    =========================== */
    .wa-btn {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 990;
      display: flex;
      align-items: center;
      gap: 0;
      text-decoration: none;
      filter: drop-shadow(0 6px 24px rgba(37,211,102,.45));
      transition: filter .3s ease;
    }
    .wa-btn:hover {
      filter: drop-shadow(0 10px 32px rgba(37,211,102,.65));
    }

    /* Tooltip label */
    .wa-label {
      background: #fff;
      color: #111;
      font-size: 13px;
      font-weight: 500;
      font-family: 'IBM Plex Sans', sans-serif;
      padding: 8px 14px;
      border-radius: 8px 0 0 8px;
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,.15);
      opacity: 0;
      transform: translateX(12px);
      pointer-events: none;
      transition: opacity .3s ease, transform .35s cubic-bezier(.23,1,.32,1);
    }
    html.light .wa-label { background: #1a1a2e; color: #fff; }
    .wa-btn:hover .wa-label {
      opacity: 1;
      transform: translateX(0);
    }

    /* Circle icon */
    .wa-circle {
      width: 58px;
      height: 58px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      transition: transform .3s cubic-bezier(.34,1.56,.64,1);
    }
    .wa-btn:hover .wa-circle { transform: scale(1.1); }

    .wa-circle svg {
      width: 30px;
      height: 30px;
      fill: #fff;
    }

    /* Pulse ring */
    .wa-circle::before,
    .wa-circle::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #25d366;
      opacity: .35;
      animation: wa-pulse 2.4s ease-out infinite;
    }
    .wa-circle::after {
      animation-delay: 1.2s;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);   opacity: .35; }
      70%  { transform: scale(1.7); opacity: 0;   }
      100% { transform: scale(1.7); opacity: 0;   }
    }

    /* Notification dot */
    .wa-dot {
      position: absolute;
      top: 2px;
      right: 2px;
      width: 13px;
      height: 13px;
      background: #ff3b3b;
      border: 2px solid var(--bg);
      border-radius: 50%;
      animation: wa-blink 2s ease infinite;
    }
    @keyframes wa-blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: .4; }
    }

    @media(max-width:600px) {
      .wa-btn { bottom: 24px; right: 20px; }
      .wa-circle { width: 52px; height: 52px; }
      .wa-circle svg { width: 26px; height: 26px; }
      .wa-label { display: none; }
    }

    /* ===========================
       SCROLLBAR
    =========================== */
    ::-webkit-scrollbar { width:5px; }
    ::-webkit-scrollbar-track { background:var(--bg); }
    ::-webkit-scrollbar-thumb { background:rgba(26,110,255,.35); border-radius:3px; }

    /* ===========================
       RESPONSIVE
    =========================== */
    @media(max-width:1080px) {
      .hero-img, .hero-float { display:none; }
      .stats-grid { grid-template-columns:repeat(2,1fr); }
      .svc-grid { grid-template-columns:repeat(2,1fr); }
      .pillars-layout { grid-template-columns:1fr; }
      .pillars-img-wrap { display:none; }
      .ft-grid { grid-template-columns:1fr 1fr; gap:40px; }
    }
    @media(max-width:768px) {
      section { padding:80px 0; }
      .nav-links { display:none; }
      .ham { display:flex; }
      .steps { grid-template-columns:1fr; }
      .steps::before { display:none; }
      .tes-grid { grid-template-columns:1fr; }
      .contact-grid { grid-template-columns:1fr; gap:48px; }
      .ft-grid { grid-template-columns:1fr; gap:32px; }
      .ft-bottom { flex-direction:column; text-align:center; }
      .fr { grid-template-columns:1fr; }
      .pillars-grid { grid-template-columns:1fr; }
      .trust-items { flex-wrap:wrap; }
      .trust-div { display:none; }
    }
    @media(max-width:600px) {
      .svc-grid { grid-template-columns:1fr; }
      .stats-grid { grid-template-columns:1fr; }
      .hero-ctas { flex-direction:column; }
      .btn { width:100%; justify-content:center; }
    }

    /* ===========================
       UTILITIES
    =========================== */
    .text-center { text-align:center; }
    .text-center .sp { margin-left:auto; margin-right:auto; }
    .text-center .tag::before { display:none; }

    /* ===========================
       LIGHT MODE OVERRIDES
    =========================== */
    html.light body { background: var(--bg); }
    html.light .logo-name { color: var(--txt); }
    html.light .logo-name span { color: var(--gold); }
    html.light .mob-menu a { color: var(--txt); }
    html.light #hero h1 { color: var(--txt); }
    html.light #hero p { color: var(--txt-2); }
    html.light .hero-badge { background:rgba(18,87,224,.08); border-color:rgba(18,87,224,.22); }
    html.light .btn-o { color: var(--txt); border-color: rgba(0,0,0,.18); }
    html.light .btn-o:hover { background:rgba(0,0,0,.05); border-color:rgba(0,0,0,.3); }
    html.light .ti-text { color: var(--txt-2); }
    html.light .trust-bar { background:rgba(0,0,0,.02); }
    html.light .stat-box { background: rgba(255,255,255,.6); }
    html.light .stat-box:hover { background: rgba(18,87,224,.06); }
    html.light .stat-num { background: linear-gradient(135deg, var(--txt) 0%, var(--gold) 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
    html.light .stat-lbl { color: var(--txt-2); }
    html.light .svc-card { background: rgba(255,255,255,.7); }
    html.light .svc-card:hover { background: rgba(18,87,224,.05); }
    html.light .svc-card h3 { color: var(--txt); }
    html.light .svc-card p { color: var(--txt-2); }
    html.light .step h3 { color: var(--txt); }
    html.light .step p { color: var(--txt-2); }
    html.light .pillar { background: rgba(255,255,255,.7); }
    html.light .pillar:hover { background: rgba(18,87,224,.05); }
    html.light .pillar h4 { color: var(--txt); }
    html.light .pillar p { color: var(--txt-muted); }
    html.light .ps-txt { color: var(--txt-2); }
    html.light .ps-txt strong { color: var(--txt); }
    html.light .tes-card { background: rgba(255,255,255,.75); }
    html.light .tes-card:hover { background: rgba(255,255,255,.95); border-color: rgba(161,120,40,.3); }
    html.light .tes-text { color: var(--txt-2); }
    html.light .q-mark { color: rgba(161,120,40,.2); }
    html.light .av-name { color: var(--txt); }
    html.light .av-role { color: var(--txt-muted); }
    html.light .ci-info > p { color: var(--txt-2); }
    html.light .ci-body { color: var(--txt-2); }
    html.light .ci-body strong { color: var(--txt); }
    html.light .form-wrap { background: rgba(255,255,255,.8); }
    html.light .form-wrap h3 { color: var(--txt); }
    html.light .fg label { color: var(--txt-2); }
    html.light .fg input,
    html.light .fg textarea { background:rgba(0,0,0,.04); border-color:rgba(0,0,0,.1); color:var(--txt); }
    html.light .fg input::placeholder,
    html.light .fg textarea::placeholder { color: var(--txt-muted); }
    html.light .fg input:focus,
    html.light .fg textarea:focus { background:rgba(18,87,224,.05); border-color:var(--blue); }
    html.light .form-note { color: var(--txt-muted); }
    html.light footer { background: rgba(0,0,0,.04); }
    html.light .ft-brand p { color: var(--txt-muted); }
    html.light .ft-soc { color: var(--txt-2); }
    html.light .ft-col h4 { color: var(--txt); }
    html.light .ft-col ul a { color: var(--txt-muted); }
    html.light .ft-bottom p { color: var(--txt-muted); }
    html.light .ft-off { color: var(--txt-muted); }
    html.light .sh { color: var(--txt); }
    html.light #hero h1 em { -webkit-text-fill-color: transparent; }
    html.light .nav-links a { color: var(--txt-2); }
    html.light .nav-links a:hover { color: var(--txt); }
    html.light ::-webkit-scrollbar-track { background: var(--bg); }
    html.light .hf-text { color: var(--txt-2); }
    html.light .hf-text strong { color: var(--txt); }
    html.light .section-label { color: var(--blue-lt); }

    /* ===========================
       THEME TOGGLE BUTTON
    =========================== */
    .theme-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 14px 6px 8px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 500;
      color: var(--txt-2);
      font-family: 'IBM Plex Sans', sans-serif;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .theme-toggle:hover { border-color: var(--border-b); color: var(--txt); }
    .theme-toggle-track {
      position: relative;
      width: 36px; height: 20px;
      background: var(--bg-2);
      border-radius: 100px;
      border: 1px solid var(--border);
      flex-shrink: 0;
      transition: background .35s ease;
    }
    html.light .theme-toggle-track { background: var(--blue); border-color: var(--blue); }
    .theme-toggle-thumb {
      position: absolute;
      top: 2px; left: 2px;
      width: 14px; height: 14px;
      background: #fff;
      border-radius: 50%;
      transition: transform .35s cubic-bezier(.34,1.56,.64,1);
      display: flex; align-items: center; justify-content: center;
    }
    html.light .theme-toggle-thumb { transform: translateX(16px); }
    .theme-toggle-thumb svg { width:9px; height:9px; }
    .theme-toggle-label { font-size: 12px; letter-spacing:.03em; }

    @media(max-width:768px) {
      .theme-toggle .theme-toggle-label { display:none; }
      .theme-toggle { padding: 6px 8px; gap:0; }
    }
  