:root{
      --bg: #f7f8fb;
      --surface: #ffffff;
      --text: #111827;
      --muted: #4b5563;
      --subtle: #6b7280;
      --border: rgba(17,24,39,.12);
      --shadow: 0 18px 40px rgba(17,24,39,.08);
      --shadow2: 0 10px 26px rgba(17,24,39,.10);
      --brand: #0b63ff;
      --brand2:#22c55e;
      --brand3:#f97316;
      --brandDeep:#0a3a8f;
      --ring: rgba(11,99,255,.22);
      --radius-xl: 22px;
      --radius-lg: 16px;
      --radius-md: 12px;
      --radius-sm: 10px;
      --container: 1120px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 500px at 10% 0%, rgba(11,99,255,.12), transparent 55%),
        radial-gradient(700px 420px at 90% 10%, rgba(34,197,94,.12), transparent 55%),
        radial-gradient(620px 420px at 70% 70%, rgba(249,115,22,.10), transparent 55%),
        linear-gradient(180deg, #f7f8fb 0%, #f4f7ff 45%, #f7f8fb 100%);
      overflow-x:hidden;
    }
    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 16px;
    }

    .skip-link{
      position:absolute;
      left:10px; top:10px;
      padding:10px 12px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:10px;
      box-shadow:0 10px 25px rgba(0,0,0,.08);
      transform:translateY(-140%);
      transition:transform .2s ease;
      z-index:9999;
      text-decoration:none;
      color:var(--text);
      font-weight:700;
    }
    .skip-link:focus{transform:translateY(0)}
    header{
      position:sticky;
      top:0;
      z-index:100;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(247,248,251,.72);
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .nav-wrap{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0;}
    .brand{
      display:flex; align-items:center; gap:12px; min-width:240px;
    }
    .brand img{width:40px; height:40px; object-fit:contain}
    .brand .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand .brand-text .name{font-weight:900; letter-spacing:.2px}
    .brand .brand-text .sub{font-size:12px; color:var(--muted); margin-top:3px}

    .nav-right{display:flex; align-items:center; gap:10px; justify-content:flex-end; flex-wrap:wrap;}
    .nav-links{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end;
    }
    .nav-links a{
      text-decoration:none;
      font-weight:700;
      color:rgba(17,24,39,.86);
      font-size:13px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(11,99,255,.08);
      border-color:rgba(11,99,255,.16);
      transform:translateY(-1px);
    }
    .nav-actions{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:12px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
      color:var(--text);
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      box-shadow:0 10px 25px rgba(17,24,39,.06);
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 16px 34px rgba(17,24,39,.10); border-color:rgba(17,24,39,.18)}
    .btn:active{transform:translateY(0px)}
    .btn-primary{
      border-color: rgba(11,99,255,.35);
      background: linear-gradient(180deg, rgba(11,99,255,1) 0%, rgba(10,58,143,1) 100%);
      color:#fff;
      box-shadow: 0 18px 40px rgba(11,99,255,.22);
    }
    .btn-primary:hover{box-shadow: 0 26px 60px rgba(11,99,255,.28); border-color: rgba(11,99,255,.5)}
    .btn-ghost{
      background: rgba(255,255,255,.66);
    }
    .btn-soft{
      border-color: rgba(34,197,94,.28);
      background: linear-gradient(180deg, rgba(34,197,94,.14) 0%, rgba(34,197,94,.06) 100%);
    }

    .nav-mobile-toggle{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 25px rgba(17,24,39,.06);
      cursor:pointer;
      align-items:center;
      justify-content:center;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .nav-mobile-toggle:hover{transform:translateY(-1px); box-shadow:0 16px 34px rgba(17,24,39,.10)}
    .hamburger{width:18px; height:14px; position:relative}
    .hamburger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:3px;
      background:rgba(17,24,39,.85);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:6px}
    .hamburger span:nth-child(3){top:12px}
    .nav-open .hamburger span:nth-child(1){top:6px; transform:rotate(45deg)}
    .nav-open .hamburger span:nth-child(2){opacity:0}
    .nav-open .hamburger span:nth-child(3){top:6px; transform:rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:12px 0 16px;
    }
    .mobile-panel .panel-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobile-panel a{
      text-decoration:none;
      font-weight:900;
      font-size:13px;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 12px 28px rgba(17,24,39,.06);
      color:rgba(17,24,39,.88);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .mobile-panel a:hover{transform:translateY(-1px); box-shadow:0 16px 34px rgba(17,24,39,.10); border-color:rgba(11,99,255,.22)}
    .mobile-panel .panel-actions{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}

    main{padding:22px 0 44px}
    section{padding:56px 0}
    .hero{
      padding:28px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius:var(--radius-xl);
      background:
        radial-gradient(850px 420px at 0% 0%, rgba(11,99,255,.18), transparent 58%),
        radial-gradient(700px 420px at 100% 0%, rgba(34,197,94,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.72) 100%);
      border:1px solid rgba(17,24,39,.10);
      box-shadow: var(--shadow);
      padding:22px;
      position:relative;
      overflow:hidden;
      min-height:360px;
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(600px 260px at 22% 18%, rgba(11,99,255,.22), transparent 55%),
        radial-gradient(520px 260px at 78% 12%, rgba(34,197,94,.18), transparent 55%),
        radial-gradient(520px 260px at 70% 78%, rgba(249,115,22,.12), transparent 58%);
      pointer-events:none;
      filter:saturate(120%);
      opacity:.95;
    }
    .hero-inner{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      height:100%;
      justify-content:space-between;
      gap:18px;
    }
    .badge-row{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(11,99,255,.22);
      background: rgba(11,99,255,.10);
      color: rgba(10,58,143,1);
      font-weight:900;
      font-size:12px;
      letter-spacing:.1px;
    }
    .pill .dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff 0%, rgba(255,255,255,.35) 35%, rgba(255,255,255,0) 55%), linear-gradient(180deg, rgba(11,99,255,1), rgba(10,58,143,1));
      box-shadow: 0 0 0 4px rgba(11,99,255,.10);
    }
    .hero h1{
      margin:10px 0 0;
      font-size:36px;
      line-height:1.15;
      letter-spacing:-.6px;
      font-weight:1000;
    }
    .hero-lead{
      margin:12px 0 0;
      color:rgba(17,24,39,.78);
      font-size:14px;
      line-height:1.8;
      max-width:58ch;
      font-weight:650;
    }
    .hero-cta{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:14px;
    }
    .hero-meta{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
      margin-top:18px;
    }
    .mini-stat{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      padding:12px 12px;
      position:relative;
      overflow:hidden;
    }
    .mini-stat:after{
      content:"";
      position:absolute;
      right:-30px; top:-30px;
      width:90px; height:90px;
      background: radial-gradient(circle at center, rgba(11,99,255,.22), transparent 60%);
      transform: rotate(20deg);
      pointer-events:none;
    }
    .mini-stat .k{font-size:12px; color:rgba(17,24,39,.62); font-weight:900; position:relative; z-index:1}
    .mini-stat .v{margin-top:6px; font-size:16px; font-weight:1000; position:relative; z-index:1}
    .hero-side{
      display:flex; flex-direction:column; gap:14px;
    }
    .side-card{
      border-radius:var(--radius-xl);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      box-shadow: 0 16px 40px rgba(17,24,39,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      flex:1;
      min-height:190px;
    }
    .side-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background: linear-gradient(135deg, rgba(11,99,255,.12), rgba(34,197,94,.10), rgba(249,115,22,.08));
      opacity:.75;
      pointer-events:none;
    }
    .side-inner{position:relative; z-index:1}
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .side-title h2{
      margin:0;
      font-size:14px;
      font-weight:1000;
      letter-spacing:.2px;
      color: rgba(17,24,39,.88);
    }
    .tag{
      font-weight:1000;
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      color: rgba(17,24,39,.72);
      white-space:nowrap;
    }
    .sop-steps{
      margin-top:12px;
      display:grid;
      gap:10px;
    }
    .sop-step{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .sop-step:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(17,24,39,.08);
      border-color: rgba(11,99,255,.20);
    }
    .sop-ic{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(11,99,255,.10);
      border:1px solid rgba(11,99,255,.22);
      color: rgba(10,58,143,1);
      font-weight:1100;
      flex:0 0 auto;
    }
    .sop-step .t{font-weight:1000; font-size:13px}
    .sop-step .d{margin-top:4px; font-size:12px; color:rgba(17,24,39,.66); line-height:1.6; font-weight:650}

    .side-callout{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .callout-row{
      display:flex; gap:10px; align-items:center; justify-content:space-between;
      border-radius:var(--radius-xl);
      padding:14px;
      border:1px solid rgba(17,24,39,.10);
      background:
        linear-gradient(180deg, rgba(11,99,255,.08), rgba(255,255,255,.70) 55%),
        radial-gradient(440px 220px at 20% 0%, rgba(34,197,94,.14), transparent 60%);
    }
    .callout-left{display:flex; flex-direction:column; gap:6px}
    .callout-left .big{font-size:18px; font-weight:1100; letter-spacing:-.2px}
    .callout-left .small{color:rgba(17,24,39,.68); font-weight:700; font-size:12px; line-height:1.6}
    .callout-right{display:flex; flex-direction:column; gap:8px; align-items:flex-end}
    .link-btn{
      text-decoration:none;
      font-weight:1000;
      font-size:13px;
      padding:10px 12px;
      border-radius:12px;
      border:1px solid rgba(11,99,255,.22);
      background: rgba(11,99,255,.10);
      color: rgba(10,58,143,1);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .link-btn:hover{transform:translateY(-1px); box-shadow: 0 16px 34px rgba(11,99,255,.16); background: rgba(11,99,255,.14)}
    .text-link{
      font-weight:950;
      color:rgba(17,24,39,.78);
      font-size:12px;
      text-decoration:none;
      border-bottom:1px dashed rgba(17,24,39,.22);
      padding-bottom:2px;
    }
    .text-link:hover{color:rgba(10,58,143,1); border-bottom-color:rgba(10,58,143,1)}

    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:16px;
    }
    .section-head h2{
      margin:0;
      font-size:24px;
      letter-spacing:-.4px;
      font-weight:1100;
    }
    .section-head p{
      margin:0;
      color:rgba(17,24,39,.70);
      font-weight:700;
      line-height:1.8;
      font-size:13px;
      max-width:62ch;
    }
    .sub-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

    .grid-2{display:grid; grid-template-columns:1fr 1fr; gap:14px}
    .grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
    .grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:12px}

    .card{
      background: rgba(255,255,255,.76);
      border:1px solid rgba(17,24,39,.10);
      border-radius:var(--radius-xl);
      box-shadow: 0 18px 40px rgba(17,24,39,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover{transform:translateY(-2px); box-shadow: 0 26px 60px rgba(17,24,39,.10); border-color: rgba(11,99,255,.18)}
    .card .card-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .card h3{
      margin:0;
      font-size:15px;
      font-weight:1100;
      letter-spacing:.1px;
    }
    .card .card-desc{
      margin:0;
      color:rgba(17,24,39,.70);
      font-weight:700;
      font-size:13px;
      line-height:1.8;
    }
    .icon-badge{
      width:38px; height:38px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(11,99,255,.22);
      background: rgba(11,99,255,.10);
      color: rgba(10,58,143,1);
      font-weight:1200;
      flex:0 0 auto;
    }

    .capabilities{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .cap-left{
      padding:18px;
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(600px 300px at 18% 0%, rgba(11,99,255,.14), transparent 60%),
        radial-gradient(520px 280px at 100% 10%, rgba(34,197,94,.12), transparent 60%),
        rgba(255,255,255,.76);
      box-shadow:0 20px 48px rgba(17,24,39,.08);
    }
    .cap-left h3{margin:0; font-size:18px; font-weight:1200; letter-spacing:-.2px}
    .cap-left .lead{
      margin:10px 0 0;
      color:rgba(17,24,39,.72);
      font-weight:700;
      line-height:1.9;
      font-size:13px;
      max-width:65ch;
    }
    .cap-list{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .cap-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      display:flex; gap:10px; align-items:flex-start;
    }
    .cap-item .mark{
      width:26px; height:26px; border-radius:10px;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.22);
      color: rgba(14,116,59,1);
      display:flex; align-items:center; justify-content:center;
      font-weight:1300; flex:0 0 auto; margin-top:2px;
    }
    .cap-item .txt .a{font-weight:1100; font-size:13px}
    .cap-item .txt .b{margin-top:3px; color:rgba(17,24,39,.64); font-weight:700; font-size:12px; line-height:1.6}

    .cap-right{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      box-shadow:0 20px 48px rgba(17,24,39,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .token-box{
      border-radius:18px;
      border:1px solid rgba(11,99,255,.16);
      background:
        linear-gradient(180deg, rgba(11,99,255,.08), rgba(255,255,255,.64)),
        radial-gradient(400px 200px at 20% 0%, rgba(249,115,22,.12), transparent 60%);
      padding:14px;
      overflow:hidden;
      position:relative;
    }
    .token-box:after{
      content:"";
      position:absolute;
      right:-40px; bottom:-40px;
      width:140px; height:140px;
      background: radial-gradient(circle at center, rgba(11,99,255,.22), transparent 60%);
      pointer-events:none;
      transform: rotate(15deg);
    }
    .token-top{position:relative; z-index:1; display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .token-top .h{
      font-weight:1200; font-size:14px; letter-spacing:.2px;
      display:flex; align-items:center; gap:10px;
    }
    .token-top .h .chip{
      width:30px; height:30px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(249,115,22,.10);
      border:1px solid rgba(249,115,22,.22);
      color: rgba(180,83,9,1);
      font-weight:1300;
    }
    .token-top .p{
      margin:0;
      color:rgba(17,24,39,.68);
      font-weight:750;
      font-size:12px;
      line-height:1.7;
    }
    .token-metrics{
      position:relative; z-index:1;
      margin-top:10px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .t-m{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      padding:12px;
    }
    .t-m .k{font-weight:900; font-size:12px; color:rgba(17,24,39,.62)}
    .t-m .v{margin-top:6px; font-weight:1200; font-size:16px}
    .t-m .s{margin-top:4px; font-weight:750; font-size:12px; color:rgba(17,24,39,.66); line-height:1.5}
    .small-actions{display:flex; gap:10px; flex-wrap:wrap}

    .timeline{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 40px rgba(17,24,39,.06);
      padding:16px;
    }
    .timeline-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .phase{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .phase:before{
      content:"";
      position:absolute;
      left:-40px; top:-40px;
      width:120px; height:120px;
      background: radial-gradient(circle at center, rgba(11,99,255,.18), transparent 62%);
      pointer-events:none;
    }
    .phase .top{position:relative; z-index:1; display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
    .phase .num{
      width:32px; height:32px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(11,99,255,.10);
      border:1px solid rgba(11,99,255,.22);
      color: rgba(10,58,143,1);
      font-weight:1300;
    }
    .phase h3{margin:0; font-size:14px; font-weight:1200}
    .phase p{margin:8px 0 0; color:rgba(17,24,39,.70); font-weight:750; line-height:1.8; font-size:13px}

    .compare{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 20px 48px rgba(17,24,39,.06);
      overflow:hidden;
    }
    .compare-head{
      padding:16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      background:
        radial-gradient(600px 260px at 20% 0%, rgba(11,99,255,.16), transparent 60%),
        radial-gradient(600px 260px at 100% 0%, rgba(34,197,94,.14), transparent 60%),
        rgba(255,255,255,.72);
      border-bottom:1px solid rgba(17,24,39,.10);
    }
    .rating-block{
      display:flex; gap:14px; align-items:flex-start;
    }
    .stars{
      width:52px; height:52px;
      border-radius:20px;
      background: rgba(249,115,22,.10);
      border:1px solid rgba(249,115,22,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(180,83,9,1);
      font-weight:1300;
      flex:0 0 auto;
    }
    .rating-txt .a{font-weight:1300; font-size:18px; letter-spacing:-.2px}
    .rating-txt .b{margin-top:6px; color:rgba(17,24,39,.70); font-weight:800; font-size:13px; line-height:1.6}
    .compare-actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end}

    .table-wrap{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
    }
    table{
      width:100%;
      min-width:820px;
      border-collapse:separate;
      border-spacing:0;
      font-size:13px;
    }
    th,td{
      padding:13px 12px;
      border-bottom:1px solid rgba(17,24,39,.10);
      vertical-align:top;
      text-align:left;
    }
    th{
      background: rgba(247,248,251,.9);
      color:rgba(17,24,39,.85);
      font-weight:1200;
      position:sticky;
      top:0;
      z-index:1;
    }
    tr:last-child td{border-bottom:none}
    .cell-good{
      font-weight:1100;
      color: rgba(14,116,59,1);
      display:flex; align-items:center; gap:8px;
    }
    .cell-bad{
      font-weight:1100;
      color: rgba(180,83,9,1);
      display:flex; align-items:center; gap:8px;
    }
    .check{
      width:18px; height:18px; border-radius:7px;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.25);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:1300;
      flex:0 0 auto;
    }
    .xmark{
      width:18px; height:18px; border-radius:7px;
      background: rgba(249,115,22,.12);
      border:1px solid rgba(249,115,22,.25);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:1300;
      flex:0 0 auto;
    }
    .highlight-col{
      background: linear-gradient(180deg, rgba(11,99,255,.09), rgba(255,255,255,.70));
    }

    .steps-3{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
    }
    .step{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 40px rgba(17,24,39,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .step:before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(520px 240px at 20% 0%, rgba(11,99,255,.14), transparent 60%);
      opacity:.8;
      pointer-events:none;
    }
    .step .in{position:relative; z-index:1}
    .step .top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .step .num{
      width:36px; height:36px; border-radius:14px;
      background: rgba(11,99,255,.10);
      border:1px solid rgba(11,99,255,.22);
      color: rgba(10,58,143,1);
      display:flex; align-items:center; justify-content:center;
      font-weight:1300;
    }
    .step h3{margin:12px 0 0; font-size:15px; font-weight:1200}
    .step p{margin:8px 0 0; color:rgba(17,24,39,.70); font-weight:760; font-size:13px; line-height:1.9}
    .step ul{
      margin:10px 0 0; padding-left:18px;
      color:rgba(17,24,39,.70);
      font-weight:750; font-size:12.5px; line-height:1.9;
    }

    .tabs{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 20px 48px rgba(17,24,39,.06);
      padding:14px;
    }
    .tab-head{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-bottom:12px;
    }
    .tab-btn{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      cursor:pointer;
      font-weight:1000;
      font-size:13px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
      display:inline-flex; align-items:center; gap:8px;
    }
    .tab-btn:hover{transform:translateY(-1px); border-color: rgba(11,99,255,.22)}
    .tab-btn[aria-selected="true"]{
      background: rgba(11,99,255,.10);
      border-color: rgba(11,99,255,.26);
      color: rgba(10,58,143,1);
    }
    .tab-panel{
      display:none;
      animation: fadeInUp .25s ease both;
    }
    .tab-panel[aria-hidden="false"]{display:block}
    @keyframes fadeInUp{
      from{opacity:0; transform:translateY(6px)}
      to{opacity:1; transform:translateY(0)}
    }
    .require-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px; align-items:start;
    }
    .require-box{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      padding:14px;
    }
    .require-box h3{margin:0; font-size:15px; font-weight:1200}
    .require-box p{margin:8px 0 0; color:rgba(17,24,39,.70); font-weight:760; font-size:13px; line-height:1.9}
    .chip-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
    .chip{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      font-weight:950;
      font-size:12.5px;
      color:rgba(17,24,39,.78);
      white-space:nowrap;
    }
    .chip.hot{border-color: rgba(11,99,255,.22); background: rgba(11,99,255,.10); color: rgba(10,58,143,1)}
    .chip.green{border-color: rgba(34,197,94,.22); background: rgba(34,197,94,.10); color: rgba(14,116,59,1)}
    .chip.orange{border-color: rgba(249,115,22,.22); background: rgba(249,115,22,.10); color: rgba(180,83,9,1)}

    .client-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
    .quote{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 40px rgba(17,24,39,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      display:flex; flex-direction:column; gap:10px;
    }
    .quote:before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(520px 240px at 10% 0%, rgba(11,99,255,.14), transparent 60%);
      opacity:.9; pointer-events:none;
    }
    .quote .in{position:relative; z-index:1}
    .quote .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .quote .person{display:flex; gap:10px; align-items:center}
    .avatar{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
      font-weight:1300;
      color: rgba(10,58,143,1);
      flex:0 0 auto;
    }
    .quote .nm{font-weight:1200; font-size:13.5px}
    .quote .rl{color:rgba(17,24,39,.62); font-weight:750; font-size:12.5px; margin-top:3px}
    .quote .starsline{color:rgba(180,83,9,1); font-weight:1300}
    .quote p{
      margin:0;
      color:rgba(17,24,39,.72);
      font-weight:760;
      font-size:13px;
      line-height:1.9;
    }

    .case-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
    .case{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 40px rgba(17,24,39,.06);
      overflow:hidden;
      display:flex; flex-direction:column;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:320px;
    }
    .case:hover{transform:translateY(-2px); box-shadow: 0 26px 60px rgba(17,24,39,.10); border-color: rgba(11,99,255,.18)}
    .media{
      width:100%;
      background: linear-gradient(135deg, rgba(11,99,255,.12), rgba(34,197,94,.10), rgba(249,115,22,.08));
      padding:12px;
      border-bottom:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
    }
    .media img{
      width:100%;
      max-width:520px;
      aspect-ratio: 16 / 9;
      object-fit: contain;
      border-radius:16px;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(17,24,39,.08);
    }
    .case:nth-child(2) .media img,
    .case:nth-child(5) .media img{
      aspect-ratio: 4 / 3;
    }
    .case:nth-child(3) .media img{
      aspect-ratio: 1 / 1;
    }
    .case .body{
      padding:14px 14px 16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
    }
    .case .meta-row{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .case .biz{
      display:flex; gap:8px; align-items:center;
      font-weight:1100; color: rgba(17,24,39,.84);
      font-size:13px;
    }
    .badge{
      font-weight:1200;
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      color: rgba(17,24,39,.70);
      white-space:nowrap;
    }
    .badge.blue{border-color: rgba(11,99,255,.22); background: rgba(11,99,255,.10); color: rgba(10,58,143,1)}
    .badge.green{border-color: rgba(34,197,94,.22); background: rgba(34,197,94,.10); color: rgba(14,116,59,1)}
    .badge.orange{border-color: rgba(249,115,22,.22); background: rgba(249,115,22,.10); color: rgba(180,83,9,1)}
    .case h3{margin:0; font-size:15px; font-weight:1200; letter-spacing:.1px}
    .case p{margin:0; color:rgba(17,24,39,.70); font-weight:760; font-size:13px; line-height:1.9}
    .case .tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:auto}
    .tiny{
      padding:7px 9px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      font-weight:950;
      font-size:12px;
      color:rgba(17,24,39,.78);
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .article-list{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 20px 48px rgba(17,24,39,.06);
      padding:14px;
    }
    .article-list .head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:10px;
    }
    .article-list .head h3{margin:0; font-size:16px; font-weight:1200}
    .article-list .head .hint{color:rgba(17,24,39,.64); font-weight:800; font-size:12.5px}
    .list{
      display:grid; gap:10px;
    }
    .list a{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      text-decoration:none;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .list a:hover{transform:translateY(-1px); box-shadow: 0 16px 34px rgba(17,24,39,.10); border-color: rgba(11,99,255,.22)}
    .list .l{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .list .t{font-weight:1200; font-size:13.5px; color:rgba(17,24,39,.90); line-height:1.4}
    .list .m{color:rgba(17,24,39,.66); font-weight:760; font-size:12.5px; line-height:1.6}
    .list .r{
      color: rgba(10,58,143,1);
      font-weight:1200;
      flex:0 0 auto;
      white-space:nowrap;
      font-size:12px;
      padding-top:3px;
    }

    .tag-cloud{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 20px 48px rgba(17,24,39,.06);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .tag-cloud h3{margin:0; font-size:16px; font-weight:1200}
    .cloud-row{display:flex; flex-wrap:wrap; gap:10px}
    .cloud-item{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      font-weight:1000;
      font-size:12.5px;
      color:rgba(17,24,39,.78);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      user-select:none;
    }
    .cloud-item:hover{transform:translateY(-1px); border-color: rgba(11,99,255,.22); box-shadow: 0 16px 34px rgba(17,24,39,.08)}
    .cloud-foot{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-top:1px dashed rgba(17,24,39,.12);
      padding-top:12px;
    }
    .cloud-foot .small{color:rgba(17,24,39,.66); font-weight:800; font-size:12.5px; line-height:1.7}

    .faq{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 20px 48px rgba(17,24,39,.06);
      overflow:hidden;
    }
    .faq-item{
      border-bottom:1px solid rgba(17,24,39,.10);
    }
    .faq-item:last-child{border-bottom:none}
    .faq-q{
      width:100%;
      text-align:left;
      cursor:pointer;
      border:none;
      background: transparent;
      padding:14px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      font-weight:1200;
      color:rgba(17,24,39,.90);
      font-size:14px;
    }
    .faq-q:focus-visible{
      outline:3px solid var(--ring);
      outline-offset:2px;
      border-radius:0;
    }
    .faq-q .caret{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease;
      color: rgba(10,58,143,1);
      font-weight:1300;
    }
    .faq-item[aria-expanded="true"] .faq-q .caret{
      transform: rotate(180deg);
      border-color: rgba(11,99,255,.22);
    }
    .faq-a{
      padding:0 16px 14px;
      color:rgba(17,24,39,.70);
      font-weight:760;
      font-size:13px;
      line-height:1.9;
      display:none;
    }
    .faq-item[aria-expanded="true"] .faq-a{display:block; animation: faqIn .2s ease both}
    @keyframes faqIn{from{opacity:0; transform:translateY(-4px)}to{opacity:1; transform:translateY(0)}}

    .form-wrap{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(600px 260px at 20% 0%, rgba(11,99,255,.16), transparent 60%),
        radial-gradient(600px 260px at 100% 0%, rgba(34,197,94,.14), transparent 60%),
        rgba(255,255,255,.74);
      box-shadow: 0 20px 48px rgba(17,24,39,.06);
      padding:16px;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    label{
      font-weight:1100;
      font-size:12.5px;
      color:rgba(17,24,39,.74);
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.84);
      color:var(--text);
      font-weight:800;
      font-size:13px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, transform .18s ease;
    }
    textarea{min-height:118px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(11,99,255,.35);
      box-shadow:0 0 0 4px rgba(11,99,255,.14);
    }
    .form-foot{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-top:1px dashed rgba(17,24,39,.14);
      padding-top:12px;
    }
    .form-foot .note{
      color:rgba(17,24,39,.64);
      font-weight:800;
      font-size:12.5px;
      line-height:1.7;
      max-width:56ch;
    }

    .network{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .map-card{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 20px 48px rgba(17,24,39,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
      min-height:320px;
    }
    .map-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(520px 240px at 20% 15%, rgba(11,99,255,.18), transparent 60%),
        radial-gradient(520px 240px at 85% 30%, rgba(34,197,94,.14), transparent 60%),
        radial-gradient(520px 240px at 60% 90%, rgba(249,115,22,.10), transparent 60%);
      pointer-events:none;
    }
    .map-inner{position:relative; z-index:1; height:100%; display:flex; flex-direction:column; gap:12px}
    .map-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .map-title h3{margin:0; font-size:16px; font-weight:1200}
    .map-title .hint{color:rgba(17,24,39,.66); font-weight:800; font-size:12.5px}
    .dots{
      margin-top:6px;
      flex:1;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      position:relative;
      overflow:hidden;
      padding:14px;
    }
    .dots:after{
      content:"";
      position:absolute;
      inset:-40px;
      background:
        radial-gradient(circle at 20% 35%, rgba(11,99,255,.35), transparent 24%),
        radial-gradient(circle at 65% 30%, rgba(34,197,94,.28), transparent 24%),
        radial-gradient(circle at 55% 70%, rgba(249,115,22,.22), transparent 24%);
      opacity:.55;
      pointer-events:none;
      filter: blur(.2px);
    }
    .city-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
    }
    .city{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
    }
    .city .n{font-weight:1200; font-size:13px}
    .city .s{margin-top:6px; color:rgba(17,24,39,.66); font-weight:800; font-size:12.5px; line-height:1.6}
    .network-right{
      display:flex; flex-direction:column; gap:14px;
    }
    .network-card{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 20px 48px rgba(17,24,39,.06);
      padding:16px;
    }
    .network-card h3{margin:0; font-size:16px; font-weight:1200}
    .network-card p{margin:10px 0 0; color:rgba(17,24,39,.70); font-weight:770; font-size:13px; line-height:1.9}
    .bullets{
      margin:12px 0 0; padding-left:18px;
      color:rgba(17,24,39,.70);
      font-weight:770; font-size:13px; line-height:1.95;
    }

    .float-qa{
      position:fixed;
      right:16px;
      bottom:18px;
      z-index:999;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-qa .panel{
      pointer-events:auto;
      border-radius:20px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 20px 60px rgba(17,24,39,.16);
      overflow:hidden;
      width:260px;
      transform-origin: 100% 100%;
      transform: scale(.96);
      opacity:0;
      transition: opacity .18s ease, transform .18s ease;
    }
    .float-qa .panel.open{
      opacity:1;
      transform: scale(1);
    }
    .float-qa .panel .head{
      padding:12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      background: linear-gradient(180deg, rgba(11,99,255,.10), rgba(255,255,255,.86));
      border-bottom:1px solid rgba(17,24,39,.10);
    }
    .float-qa .panel .head .t{
      font-weight:1200; font-size:13px;
      display:flex; align-items:center; gap:10px;
    }
    .float-qa .panel .head .t .s{
      width:30px; height:30px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.22);
      color: rgba(14,116,59,1);
      font-weight:1300;
    }
    .float-qa .panel .close{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.82);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      font-weight:1300;
      color: rgba(17,24,39,.72);
    }
    .float-qa .panel .body{
      padding:12px;
      display:grid;
      grid-template-columns: 84px 1fr;
      gap:12px;
      align-items:start;
    }
    .float-qa .panel img{
      width:84px; height:84px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.8);
      object-fit:contain;
    }
    .float-qa .panel .meta{
      display:flex; flex-direction:column; gap:8px;
    }
    .float-qa .panel .meta .m1{
      color:rgba(17,24,39,.78);
      font-weight:1200;
      font-size:13px;
      line-height:1.4;
    }
    .float-qa .panel .meta .m2{
      color:rgba(17,24,39,.66);
      font-weight:800;
      font-size:12.5px;
      line-height:1.6;
    }
    .float-qa .panel .actions{
      padding:0 12px 12px;
      display:flex; gap:10px;
    }
    .mini-btn{
      flex:1;
      text-decoration:none;
      font-weight:1100;
      font-size:12.5px;
      padding:11px 10px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.82);
      color: rgba(17,24,39,.82);
      text-align:center;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .mini-btn:hover{transform:translateY(-1px); box-shadow: 0 16px 34px rgba(17,24,39,.10); border-color: rgba(11,99,255,.20)}
    .mini-btn.primary{
      border-color: rgba(11,99,255,.30);
      background: rgba(11,99,255,.12);
      color: rgba(10,58,143,1);
    }
    .float-qa .trigger{
      pointer-events:auto;
      width:56px; height:56px;
      border-radius:20px;
      border:1px solid rgba(11,99,255,.28);
      background: linear-gradient(180deg, rgba(11,99,255,.20), rgba(255,255,255,.86));
      box-shadow: 0 18px 50px rgba(11,99,255,.20);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
      position:relative;
    }
    .float-qa .trigger:hover{transform:translateY(-2px); box-shadow: 0 26px 70px rgba(11,99,255,.26)}
    .float-qa .trigger .bubble{
      width:28px; height:28px; border-radius:12px;
      background: rgba(11,99,255,.12);
      border:1px solid rgba(11,99,255,.24);
      color: rgba(10,58,143,1);
      display:flex; align-items:center; justify-content:center;
      font-weight:1300;
      position:relative;
    }
    .pulse{
      position:absolute;
      inset:auto;
      width:10px; height:10px;
      border-radius:50%;
      background: rgba(34,197,94,1);
      right:10px; top:10px;
      box-shadow: 0 0 0 0 rgba(34,197,94,.45);
      animation: pulse 1.6s ease-out infinite;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(34,197,94,.45); transform:scale(1)}
      70%{box-shadow:0 0 0 16px rgba(34,197,94,0); transform:scale(1.06)}
      100%{box-shadow:0 0 0 0 rgba(34,197,94,0); transform:scale(1)}
    }

    .to-top{
      position:fixed;
      right:16px;
      bottom:92px;
      z-index:998;
      width:50px; height:50px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 50px rgba(17,24,39,.16);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, opacity .18s ease;
      opacity:0;
      transform: translateY(8px);
      pointer-events:none;
    }
    .to-top.show{
      opacity:1;
      transform: translateY(0);
      pointer-events:auto;
    }

    footer{
      padding:22px 0 34px;
      background: linear-gradient(180deg, rgba(247,248,251,.0), rgba(247,248,251,1) 20%);
      border-top:1px solid rgba(17,24,39,.08);
    }
    .footer-grid{
      display:grid; grid-template-columns: 1.2fr 1fr; gap:16px; align-items:start;
    }
    .footer-card{
      border-radius:var(--radius-xl);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 20px 48px rgba(17,24,39,.06);
      padding:16px;
    }
    .footer-card h3{margin:0; font-size:15px; font-weight:1200}
    .footer-card p{margin:10px 0 0; color:rgba(17,24,39,.70); font-weight:760; font-size:13px; line-height:1.9}
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .footer-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      font-weight:1000;
      font-size:12.5px;
      color:rgba(17,24,39,.78);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      white-space:nowrap;
    }
    .footer-links a:hover{transform:translateY(-1px); border-color: rgba(11,99,255,.22); box-shadow: 0 16px 34px rgba(17,24,39,.08)}
    .copyright{
      margin-top:14px;
      color:rgba(17,24,39,.62);
      font-weight:850;
      font-size:12.5px;
      line-height:1.7;
      display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; align-items:center;
    }
    .fine{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:flex-end;
    }
    .fine a{
      text-decoration:none;
      font-weight:1000;
      font-size:12.5px;
      color:rgba(10,58,143,1);
      border-bottom:1px dashed rgba(10,58,143,1);
      padding-bottom:2px;
    }
    .fine a:hover{border-bottom-style:solid}

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-card{min-height:auto}
      .hero-meta{grid-template-columns: 1fr; }
      .capabilities{grid-template-columns: 1fr}
      .timeline-grid{grid-template-columns: 1fr}
      .steps-3{grid-template-columns: 1fr}
      .grid-3{grid-template-columns: 1fr}
      .grid-4{grid-template-columns: 1fr 1fr}
      .client-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .require-grid{grid-template-columns: 1fr}
      .mobile-panel .panel-grid{grid-template-columns:1fr}
      .brand{min-width:auto}
      .nav-links{display:none}
      .nav-mobile-toggle{display:flex}
      .mobile-panel{display:none}
      header[data-open="true"] .mobile-panel{display:block}
    }