﻿
    :root{
      --bg: #f6f8fc;
      --card: #ffffff;
      --text: #0f172a;
      --muted: #5b6475;
      --line: rgba(15,23,42,.08);
      --brand: #0b57ff;
      --brand2:#00b7ff;
      --shadow: 0 18px 55px rgba(2, 6, 23, .08);
      --shadow2: 0 10px 30px rgba(2, 6, 23, .06);
      --radius: 18px;
    }

    html{ scroll-behavior:smooth; }
    body{
      background: radial-gradient(1200px 500px at 20% -10%, rgba(11,87,255,.14), transparent 60%),
                  radial-gradient(900px 400px at 80% 0%, rgba(0,183,255,.10), transparent 55%),
                  var(--bg);
      color: var(--text);
      font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
    }
    .container{ max-width: 1140px; }

    /* Navbar */
    .topbar{
      background: linear-gradient(90deg, #0f172a, #111827);
      color: rgba(255,255,255,.86);
      font-size: .82rem;
    }
    .topbar-item{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color: rgba(255,255,255,.8);
    }
    .topbar-link{
      color: rgba(255,255,255,.9);
      text-decoration: none;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      transition: background .2s ease, color .2s ease;
    }
    .topbar-link:hover{
      color: #fff;
      background: rgba(255,255,255,.12);
    }
    .topbar-sep{
      width: 1px;
      height: 16px;
      background: rgba(255,255,255,.25);
    }
    .nav-glass{
      background: rgba(255,255,255,.88);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 24px rgba(2, 6, 23, .06);
    }
    .nav-shell{
      background: transparent;
      border: 0;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
    }
    .brand-badge{
      width: 40px; height: 40px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(11,87,255,1), rgba(0,183,255,1));
      box-shadow: 0 10px 24px rgba(11,87,255,.22);
      display:grid; place-items:center;
      color:#fff; font-weight: 800;
    }
    .nav-link{
      color: rgba(15,23,42,.8);
      font-weight: 700;
      padding: 10px 12px;
      position: relative;
      transition: color .2s ease;
    }
    .nav-link::after{
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 2px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      opacity: 0;
      transform: scaleX(.4);
      transition: opacity .2s ease, transform .2s ease;
    }
    .nav-link:hover{
      color: rgba(11,87,255,1);
    }
    .nav-link:hover::after,
    .nav-link.active::after{
      opacity: 1;
      transform: scaleX(1);
    }
    .nav-link.active{
      color: rgba(11,87,255,1);
    }
    @media (max-width: 992px){
      .topbar{
        font-size: .78rem;
      }
      .navbar-collapse{
        background: rgba(255,255,255,.96);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 12px;
        margin-top: 12px;
        box-shadow: var(--shadow2);
      }
      .nav-link{
        padding: 8px 10px;
      }
    }

    .btn-brand{
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      border: 0;
      box-shadow: 0 14px 28px rgba(11,87,255,.18);
    }
    .btn-brand:hover{ filter: brightness(0.98); transform: translateY(-1px); }
    .btn-soft{
      background: rgba(11,87,255,.10);
      border: 1px solid rgba(11,87,255,.18);
      color: rgba(11,87,255,1);
      font-weight: 700;
    }
    .btn-soft:hover{ background: rgba(11,87,255,.12); transform: translateY(-1px); }

    /* Cards */
    .cardx{
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow2);
    }
    .hover-lift{
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .hover-lift:hover{
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(11,87,255,.18);
    }

    /* Hero */
    .page-hero{
      padding: 70px 0 26px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before,
    .page-hero::after{
      content: "";
      position: absolute;
      z-index: -1;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      filter: blur(0px);
      opacity: .7;
    }
    .page-hero::before{
      top: -120px;
      right: -120px;
      background: radial-gradient(circle, rgba(11,87,255,.22), rgba(11,87,255,0) 65%);
    }
    .page-hero::after{
      bottom: -160px;
      left: -120px;
      background: radial-gradient(circle, rgba(0,183,255,.18), rgba(0,183,255,0) 65%);
    }
    .pill{
      display:inline-flex; gap:10px; align-items:center;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.75);
      border: 1px solid var(--line);
      box-shadow: 0 12px 30px rgba(2, 6, 23, .06);
    }
    .pill-dot{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 6px rgba(11,87,255,.10);
    }

    .section-title{ font-weight: 900; letter-spacing: -0.01em; }
    .mini{ color: var(--muted); font-size: .95rem; }

    .iconbox{
      width: 46px; height: 46px; border-radius: 14px;
      background: rgba(11,87,255,.10);
      border: 1px solid rgba(11,87,255,.16);
      display:grid; place-items:center;
      color: var(--brand);
      flex: 0 0 auto;
    }

    .tag{
      font-size: .78rem;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(15,23,42,.10);
      color: rgba(15,23,42,.72);
      background: rgba(255,255,255,.7);
      display:inline-flex;
      align-items:center;
      gap:6px;
      white-space: nowrap;
    }
    .tag .bi{ display:none; }
    .tag-green{
      border-color: rgba(34,197,94,.25);
      color: rgba(22,101,52,.9);
      background: rgba(34,197,94,.10);
    }
    .tag-blue{
      border-color: rgba(59,130,246,.25);
      color: rgba(30,64,175,.95);
      background: rgba(59,130,246,.10);
    }
    .tag-amber{
      border-color: rgba(245,158,11,.25);
      color: rgba(146,64,14,.95);
      background: rgba(245,158,11,.12);
    }
    .tag-purple{
      border-color: rgba(139,92,246,.25);
      color: rgba(91,33,182,.95);
      background: rgba(139,92,246,.12);
    }
    .tag-teal{
      border-color: rgba(20,184,166,.25);
      color: rgba(15,118,110,.95);
      background: rgba(20,184,166,.12);
    }
    .tag-rose{
      border-color: rgba(244,63,94,.25);
      color: rgba(159,18,57,.95);
      background: rgba(244,63,94,.12);
    }

    .badge-soft{
      font-size: .72rem;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,.55);
      background: rgba(148,163,184,.16);
      color: rgba(71,85,105,.95);
      font-weight: 800;
    }

    .soft-panel{
      background: rgba(255,255,255,.78);
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 6px);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .sector-visual{
      height: 160px;
      border-radius: 18px;
      border: 2px solid rgba(15,23,42,.12);
      background: linear-gradient(135deg, rgba(11,87,255,.16), rgba(0,183,255,.10));
      position: relative;
      overflow: hidden;
      margin-bottom: 16px;
      box-shadow: var(--shadow2);
    }
    .sector-visual::after{
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.6), rgba(255,255,255,0) 45%);
    }
    .sector-visual-label{
      position: absolute;
      left: 12px;
      bottom: 12px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.9);
      border: 1px solid var(--line);
      font-weight: 700;
      font-size: .78rem;
      color: rgba(15,23,42,.72);
    }
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800;900&display=swap");
    /* Filter */
    .search{
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.88);
      box-shadow: 0 14px 30px rgba(2, 6, 23, .06);
    }
    .search input{
      border:0;
      background: transparent;
      outline: none;
      width:100%;
      padding: 14px 12px;
      font-weight: 600;
      color: rgba(15,23,42,.92);
    }
    .search .bi{ color: rgba(15,23,42,.55); }

    .filter-row{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }
    .filter-chip{
      border-radius: 999px;
      padding: 5px 10px;
      font-weight: 600;
      font-size: .8rem;
      border: 1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.85);
      color: rgba(15,23,42,.78);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .filter-chip:hover{
      transform: translateY(-1px);
      border-color: rgba(11,87,255,.32);
      box-shadow: 0 12px 22px rgba(2, 6, 23, .08);
    }
    .filter-chip.active{
      background: linear-gradient(135deg, rgba(11,87,255,.16), rgba(0,183,255,.16));
      border-color: rgba(11,87,255,.4);
      color: rgba(11,87,255,1);
      box-shadow: 0 12px 22px rgba(11,87,255,.16);
    }
    .filter-chip:focus-visible{
      outline: 2px solid rgba(11,87,255,.5);
      outline-offset: 2px;
    }

    .stats-grid{
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    @media (max-width: 992px){
      .stats-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 576px){
      .stats-grid{ grid-template-columns: 1fr; }
    }
    .stat-card{
      background: rgba(255,255,255,.85);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 16px 18px;
      box-shadow: var(--shadow2);
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .stat-icon{
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(11,87,255,.12);
      border: 1px solid rgba(11,87,255,.2);
      color: rgba(11,87,255,1);
    }
    .stat-kpi{
      font-weight: 900;
      font-size: 1.2rem;
      letter-spacing: -.01em;
      color: rgba(11,87,255,1);
      margin-bottom: 4px;
    }

    .solution-card{
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 14px;
      background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
    }
    .solution-card::before{
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid transparent;
      background: linear-gradient(135deg, rgba(11,87,255,.28), rgba(0,183,255,.18)) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity .25s ease;
      pointer-events: none;
    }
    .solution-card:hover::before{
      opacity: 1;
    }
    .solution-card::after{
      content: "";
      position: absolute;
      top: -40px;
      right: -60px;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(11,87,255,.16), rgba(11,87,255,0) 60%);
      opacity: .8;
      pointer-events: none;
    }
    .card-top{
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }
    .card-titlewrap{
      display: flex;
      gap: 14px;
      align-items: flex-start;
      min-width: 0;
    }
    .card-title{
      font-weight: 800;
      font-size: 1.05rem;
      color: rgba(15,23,42,1);
      margin-bottom: 4px;
    }
    .card-desc{
      color: rgba(15,23,42,.72);
      line-height: 1.5;
    }
    .card-tags{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 2px;
    }
    .card-actions{
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--line);
      padding-top: 10px;
    }
    .card-cta{
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: .9rem;
      padding: 2px 0;
      border-radius: 0;
      border: 0;
      color: rgba(11,87,255,1);
      background: transparent;
      transition: transform .2s ease, color .2s ease;
    }
    .solution-card:hover .card-cta{
      transform: translateY(-1px);
      color: rgba(11,87,255,.9);
    }

    /* Reveal */
    .reveal{ opacity:0; transform: translateY(10px); transition: all .6s ease; }
    .reveal.in{ opacity:1; transform: translateY(0); }

    footer{
      padding: 42px 0;
      border-top: 1px solid var(--line);
      background: rgba(255,255,255,.65);
      backdrop-filter: blur(8px);
    }
  
