:root{
      --bg:#f7f8fb;
      --surface:#ffffff;
      --text:#0f172a;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(15,23,42,.10);
      --shadow:0 18px 50px rgba(2,6,23,.08);
      --shadow2:0 10px 24px rgba(2,6,23,.08);
      --brand1:#16c5d8;
      --brand2:#1d4ed8;
      --brand3:#0ea5e9;
      --brand4:#22c55e;
      --grad:linear-gradient(135deg, rgba(22,197,216,.22), rgba(29,78,216,.18) 35%, rgba(14,165,233,.14));
      --grad2:linear-gradient(135deg, #0ea5e9 0%, #1d4ed8 55%, #16c5d8 100%);
      --grad3:linear-gradient(180deg, rgba(29,78,216,.18), rgba(22,197,216,.08));
      --ring:0 0 0 4px rgba(29,78,216,.14);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --container:1120px;
      --padX:20px;
      --ease:cubic-bezier(.2,.85,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      background: radial-gradient(1200px 600px at 20% -10%, rgba(29,78,216,.10), transparent 55%),
                  radial-gradient(900px 520px at 86% 6%, rgba(22,197,216,.12), transparent 50%),
                  linear-gradient(180deg, #f7fbff 0%, var(--bg) 40%, #f7f8fb 100%);
      color:var(--text);
    }

    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    button, input, select, textarea{font:inherit}
    .container{
      width:min(var(--container), 100%);
      margin:0 auto;
      padding:0 var(--padX);
    }

    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto;
      background:#fff; border:1px solid var(--line); border-radius:12px;
      padding:10px 12px; box-shadow: var(--shadow2); z-index:9999;
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(247,248,251,.72);
      border-bottom:1px solid rgba(15,23,42,.06);
    }

    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }

    .brand{
      display:flex; align-items:center; gap:12px;
      min-width: 220px;
    }
    .brand .logo{
      width:40px; height:40px;
      border-radius:12px;
      overflow:hidden;
      box-shadow: 0 10px 22px rgba(29,78,216,.18);
      border:1px solid rgba(29,78,216,.20);
      background:#fff;
      display:flex; align-items:center; justify-content:center;
    }
    .brand .logo img{
      width:100%; height:100%; object-fit:cover;
    }
    .brand .name{
      display:flex; flex-direction:column; line-height:1.05;
    }
    .brand .name strong{font-size:14px; letter-spacing:.2px}
    .brand .name span{font-size:12px; color:var(--muted2); margin-top:4px}

    nav .nav-links{
      display:flex; align-items:center; gap:10px; flex-wrap:nowrap;
      justify-content:flex-end;
    }

    .nav-links a{
      font-size:13px;
      color:rgba(15,23,42,.78);
      padding:9px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(29,78,216,.07);
      border-color: rgba(29,78,216,.14);
      color: rgba(15,23,42,.92);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex; align-items:center; gap:10px;
      justify-content:flex-end;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius:14px;
      padding:11px 14px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.72);
      color:rgba(15,23,42,.88);
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
      cursor:pointer;
      user-select:none;
    }
    .btn:active{transform: translateY(0px) scale(.99)}
    .btn:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(2,6,23,.10); border-color: rgba(29,78,216,.22)}
    .btn-primary{
      border-color: rgba(29,78,216,.22);
      background: linear-gradient(135deg, rgba(29,78,216,.92), rgba(14,165,233,.92));
      color:#fff;
      box-shadow: 0 18px 36px rgba(29,78,216,.24);
    }
    .btn-primary:hover{box-shadow: 0 22px 44px rgba(29,78,216,.28)}
    .btn-ghost{
      background: rgba(255,255,255,.60);
    }
    .btn-small{padding:9px 12px; border-radius:12px; font-size:13px}
    .btn .dot{
      width:10px; height:10px; border-radius:50%;
      background: rgba(255,255,255,.9);
      box-shadow: 0 0 0 6px rgba(255,255,255,.18);
    }

    .menu-btn{
      display:none;
      width:42px; height:42px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      cursor:pointer;
      transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
    }
    .menu-btn:hover{transform: translateY(-1px); border-color: rgba(29,78,216,.22); box-shadow: 0 14px 28px rgba(2,6,23,.10)}
    .menu-icon{
      width:18px; height:12px; position:relative; margin:0 auto;
    }
    .menu-icon span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px;
      background: rgba(15,23,42,.78);
      transition: transform .22s var(--ease), top .22s var(--ease), opacity .22s var(--ease);
    }
    .menu-icon span:nth-child(1){top:0}
    .menu-icon span:nth-child(2){top:5px}
    .menu-icon span:nth-child(3){top:10px}
    .menu-btn[aria-expanded="true"] .menu-icon span:nth-child(1){top:5px; transform: rotate(45deg)}
    .menu-btn[aria-expanded="true"] .menu-icon span:nth-child(2){opacity:0}
    .menu-btn[aria-expanded="true"] .menu-icon span:nth-child(3){top:5px; transform: rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:0 0 14px 0;
    }
    .mobile-panel .mobile-links{
      display:flex; flex-direction:column; gap:8px;
      padding:10px 0 0;
    }
    .mobile-panel .mobile-links a{
      padding:12px 12px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.72);
      border-radius:14px;
      font-size:14px;
      color: rgba(15,23,42,.86);
      transition: transform .18s var(--ease), border-color .18s var(--ease);
    }
    .mobile-panel .mobile-links a:hover{transform: translateY(-1px); border-color: rgba(29,78,216,.22)}
    .mobile-panel .mobile-actions{
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
      margin-top:12px;
    }

    main{padding-bottom:18px}
    section{padding:56px 0}
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:18px;
    }
    .section-title h2{
      margin:0;
      font-size:24px;
      letter-spacing:.2px;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      max-width: 520px;
    }
    .eyebrow{
      display:inline-flex; align-items:center; gap:10px;
      font-size:12px; letter-spacing:.25px;
      color: rgba(15,23,42,.72);
      background: rgba(255,255,255,.60);
      border:1px solid rgba(15,23,42,.08);
      border-radius:999px;
      padding:8px 12px;
      box-shadow: 0 10px 22px rgba(2,6,23,.05);
      margin-bottom:12px;
    }
    .eyebrow .spark{
      width:10px; height:10px; border-radius:3px;
      background: var(--grad2);
      box-shadow: 0 0 0 6px rgba(29,78,216,.12);
      transform: rotate(12deg);
    }

    .hero{
      padding:34px 0 18px;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute; inset:-120px -120px auto -120px;
      height:540px;
      background: radial-gradient(600px 320px at 20% 40%, rgba(22,197,216,.24), transparent 55%),
                  radial-gradient(600px 320px at 70% 20%, rgba(29,78,216,.22), transparent 55%),
                  linear-gradient(180deg, rgba(29,78,216,.10), transparent 68%);
      pointer-events:none;
      filter:saturate(1.1);
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:stretch;
      position:relative;
      z-index:1;
    }

    .hero-card{
      border-radius:26px;
      background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.60));
      border:1px solid rgba(15,23,42,.08);
      box-shadow: var(--shadow);
      padding:22px;
      overflow:hidden;
      position:relative;
    }
    .hero-card::after{
      content:"";
      position:absolute; inset:-2px -2px auto -2px;
      height:220px;
      background: var(--grad);
      pointer-events:none;
      opacity:.9;
      transform: translateY(-40px);
    }

    .hero-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      position:relative; z-index:1;
    }

    .hero-left{
      min-width: 0;
    }
    h1{
      margin:0;
      font-size:34px;
      line-height:1.15;
      letter-spacing:.2px;
    }
    .hero-sub{
      margin-top:12px;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
      max-width: 60ch;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:18px;
      position:relative; z-index:1;
    }

    .hero-badges{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:18px;
      position:relative; z-index:1;
    }
    .badge{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.66);
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
      box-shadow: 0 12px 26px rgba(2,6,23,.05);
    }
    .badge:hover{transform: translateY(-2px); border-color: rgba(29,78,216,.20); box-shadow: 0 16px 34px rgba(2,6,23,.08)}
    .badge .ic{
      width:28px; height:28px; border-radius:12px;
      background: rgba(29,78,216,.10);
      border:1px solid rgba(29,78,216,.20);
      display:flex; align-items:center; justify-content:center;
      color: rgba(29,78,216,.92);
      flex:0 0 auto;
    }
    .badge strong{font-size:13px}
    .badge span{display:block; font-size:12px; color:var(--muted2); margin-top:2px; line-height:1.2}

    .hero-right{
      display:flex; flex-direction:column; gap:14px;
    }
    .side-card{
      border-radius:22px;
      padding:16px;
      border:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.58));
      box-shadow: 0 16px 40px rgba(2,6,23,.06);
      position:relative;
      overflow:hidden;
    }
    .side-card::before{
      content:"";
      position:absolute; inset:auto -40px -60px auto;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.26), transparent 58%),
                  radial-gradient(circle at 60% 60%, rgba(29,78,216,.20), transparent 58%);
      filter:saturate(1.2);
      pointer-events:none;
    }
    .pulse-ring{
      width:12px; height:12px; border-radius:50%;
      background: var(--brand4);
      box-shadow: 0 0 0 0 rgba(34,197,94,.45);
      animation: pulse 2.2s var(--ease) infinite;
      flex:0 0 auto;
      position:relative;
      z-index:1;
    }
    @keyframes pulse{
      0%{box-shadow: 0 0 0 0 rgba(34,197,94,.35)}
      60%{box-shadow: 0 0 0 14px rgba(34,197,94,0)}
      100%{box-shadow: 0 0 0 0 rgba(34,197,94,0)}
    }

    .mini-head{
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      position:relative; z-index:1;
      margin-bottom:10px;
    }
    .mini-head .label{
      display:flex; align-items:center; gap:10px;
      color: rgba(15,23,42,.86);
      font-size:13px; font-weight:700;
      letter-spacing:.2px;
    }
    .mini-head .tag{
      font-size:12px;
      color: rgba(29,78,216,.95);
      background: rgba(29,78,216,.10);
      border:1px solid rgba(29,78,216,.20);
      border-radius:999px;
      padding:7px 10px;
      white-space:nowrap;
    }

    .kpi-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      position:relative; z-index:1;
    }
    .kpi{
      border-radius:16px;
      padding:12px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.60);
      transition: transform .18s var(--ease), box-shadow .18s var(--ease);
      min-width:0;
    }
    .kpi:hover{transform: translateY(-2px); box-shadow: 0 14px 26px rgba(2,6,23,.08)}
    .kpi .big{
      font-size:18px;
      font-weight:800;
      letter-spacing:.2px;
    }
    .kpi .small{
      margin-top:6px;
      font-size:12px;
      color:var(--muted2);
      line-height:1.35;
    }

    .quick-form{
      display:flex; flex-direction:column; gap:10px;
      position:relative; z-index:1;
    }
    .quick-form .row{
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    .field{
      display:flex; flex-direction:column; gap:7px;
      min-width:0;
    }
    .field label{
      font-size:12px; color: rgba(15,23,42,.70);
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      white-space:nowrap;
    }
    .field label em{
      font-style:normal; color: rgba(29,78,216,.9); font-weight:700;
      background: rgba(29,78,216,.10);
      border:1px solid rgba(29,78,216,.22);
      padding:3px 8px;
      border-radius:999px;
      font-size:11px;
    }
    .input, select, textarea{
      width:100%;
      border-radius:14px;
      padding:11px 12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      outline:none;
      transition: box-shadow .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
      color: rgba(15,23,42,.92);
      font-size:14px;
    }
    textarea{min-height:90px; resize:vertical}
    .input:focus, select:focus, textarea:focus{
      box-shadow: var(--ring);
      border-color: rgba(29,78,216,.35);
    }
    .helper{
      color: var(--muted2);
      font-size:12px;
      line-height:1.5;
      margin-top:2px;
    }

    .grid-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:18px;
      align-items:start;
    }

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

    .card{
      border-radius:20px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 16px 40px rgba(2,6,23,.05);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
      min-width:0;
    }
    .card:hover{transform: translateY(-3px); box-shadow: 0 22px 54px rgba(2,6,23,.10); border-color: rgba(29,78,216,.20)}
    .card .icon{
      width:42px; height:42px; border-radius:16px;
      background: linear-gradient(135deg, rgba(29,78,216,.14), rgba(22,197,216,.12));
      border:1px solid rgba(29,78,216,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(29,78,216,.95);
      margin-bottom:10px;
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:.2px;
    }
    .card p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .split{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:18px;
      align-items:stretch;
    }

    .list-card{
      border-radius:22px;
      background: rgba(255,255,255,.68);
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 16px 40px rgba(2,6,23,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .list-card::after{
      content:"";
      position:absolute; inset:-2px auto auto -2px;
      width:180px; height:180px;
      background: radial-gradient(circle at 30% 30%, rgba(29,78,216,.16), transparent 58%),
                  radial-gradient(circle at 60% 70%, rgba(22,197,216,.14), transparent 58%);
      pointer-events:none;
    }
    .list{
      margin:12px 0 0;
      padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
      position:relative; z-index:1;
    }
    .li{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.62);
    }
    .li .check{
      width:26px; height:26px; border-radius:10px;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.22);
      color: rgba(34,197,94,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .li strong{font-size:13px}
    .li span{display:block; margin-top:4px; color:var(--muted); font-size:12px; line-height:1.6}

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .step{
      border-radius:20px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.66);
      padding:14px;
      position:relative;
      overflow:hidden;
      min-width:0;
    }
    .step::before{
      content:"";
      position:absolute; inset:auto -20px -30px auto;
      width:110px; height:110px;
      background: radial-gradient(circle at 30% 30%, rgba(29,78,216,.18), transparent 60%);
      pointer-events:none;
    }
    .step .num{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(29,78,216,.20);
      background: rgba(29,78,216,.10);
      color: rgba(29,78,216,.95);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      position:relative; z-index:1;
    }
    .step h3{margin:10px 0 0; font-size:14px; position:relative; z-index:1}
    .step p{margin:6px 0 0; color:var(--muted); font-size:12px; line-height:1.65; position:relative; z-index:1}

    .compare{
      border-radius:24px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 18px 46px rgba(2,6,23,.07);
      overflow:hidden;
    }
    .compare-head{
      padding:16px 18px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background: linear-gradient(135deg, rgba(29,78,216,.10), rgba(22,197,216,.08));
    }
    .scoreline{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .scoreline .recommend{
      display:flex; align-items:center; gap:12px;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(34,197,94,.22);
      background: rgba(34,197,94,.10);
    }
    .stars svg{width:18px; height:18px; fill: rgba(34,197,94,.95)}
    .recommend strong{font-size:14px}
    .scoreline .score{
      display:flex; align-items:baseline; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(29,78,216,.22);
      background: rgba(29,78,216,.10);
    }
    .score b{
      font-size:22px;
      letter-spacing:.2px;
    }
    .score span{font-size:12px; color: rgba(15,23,42,.72)}
    .compare-table{
      overflow:auto;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 760px;
      background:#fff;
    }
    th, td{
      text-align:left;
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      font-size:13px;
      vertical-align:top;
    }
    th{
      background: rgba(247,248,251,.95);
      position:sticky;
      top:0;
      z-index:2;
      border-bottom:1px solid rgba(15,23,42,.10);
      color: rgba(15,23,42,.80);
      font-weight:800;
    }
    td:last-child{width:34%}
    tr:hover td{background: rgba(29,78,216,.03)}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.80);
      color: rgba(15,23,42,.86);
      font-size:12px;
      line-height:1.2;
      white-space:nowrap;
    }
    .pill.good{
      border-color: rgba(34,197,94,.22);
      background: rgba(34,197,94,.10);
    }
    .pill.mid{
      border-color: rgba(29,78,216,.18);
      background: rgba(29,78,216,.10);
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .time-card{
      border-radius:20px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.66);
      padding:14px;
      min-width:0;
    }
    .time-card h3{margin:0; font-size:14px}
    .time-card p{margin:8px 0 0; color:var(--muted); font-size:12px; line-height:1.7}
    .time-card .bar{
      margin-top:10px;
      height:10px;
      border-radius:999px;
      background: rgba(15,23,42,.06);
      overflow:hidden;
      border:1px solid rgba(15,23,42,.06);
    }
    .time-card .bar i{
      display:block; height:100%;
      width: 70%;
      background: var(--grad2);
      border-radius:999px;
      transform-origin:left;
      animation: fill 1.2s var(--ease) both;
    }
    @keyframes fill{
      from{transform: scaleX(.45); opacity:.5}
      to{transform: scaleX(1); opacity:1}
    }

    .cases-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case-card{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      overflow:hidden;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
    }
    .case-card:hover{transform: translateY(-3px); border-color: rgba(29,78,216,.20); box-shadow: 0 22px 54px rgba(2,6,23,.10)}
    .case-media{
      padding:14px;
      background: linear-gradient(180deg, rgba(29,78,216,.10), rgba(22,197,216,.06));
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .case-media .media-wrap{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.85);
      aspect-ratio: 16/10;
    }
    .case-media img{
      width:100%; height:100%; object-fit:cover;
      transform: scale(1.02);
      transition: transform .35s var(--ease);
    }
    .case-card:hover .case-media img{transform: scale(1.06)}
    .case-body{
      padding:14px 14px 16px;
    }
    .case-body .meta{
      display:flex; gap:8px; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .chip{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      color: rgba(15,23,42,.78);
      white-space:nowrap;
    }
    .case-body h3{
      margin:0;
      font-size:15px;
      letter-spacing:.2px;
    }
    .case-body p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.65;
      min-height: 52px;
    }
    .case-footer{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color: rgba(15,23,42,.70);
      font-size:12px;
    }

    .articles{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      overflow:hidden;
    }
    .article-list header{
      position:static;
      background: linear-gradient(135deg, rgba(29,78,216,.10), rgba(22,197,216,.06));
      border-bottom:1px solid rgba(15,23,42,.08);
      backdrop-filter:none;
    }
    .article-list header .inner{
      padding:16px 18px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }
    .article-list header h3{
      margin:0; font-size:15px;
    }
    .article-list header .more{
      font-size:12px; color: rgba(29,78,216,.95);
      background: rgba(29,78,216,.10);
      border:1px solid rgba(29,78,216,.20);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .article-items{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction:column;
    }
    .article-items a{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 18px;
      border-bottom:1px solid rgba(15,23,42,.06);
      transition: background .18s var(--ease);
    }
    .article-items a:last-child{border-bottom:none}
    .article-items a:hover{background: rgba(29,78,216,.04)}
    .article-items .badge2{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(29,78,216,.18);
      background: rgba(29,78,216,.10);
      display:flex; align-items:center; justify-content:center;
      color: rgba(29,78,216,.95);
      flex:0 0 auto;
      margin-top:2px;
    }
    .article-items .t{
      flex:1 1 auto; min-width:0;
    }
    .article-items .t strong{
      display:block; font-size:13.5px; line-height:1.35;
    }
    .article-items .t span{
      display:block; margin-top:6px; color:var(--muted); font-size:12px; line-height:1.5;
    }

    .tags-cloud{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.66);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      padding:16px;
    }
    .tags-cloud h3{margin:0; font-size:15px}
    .cloud{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .tagbtn{
      cursor:pointer;
      border-radius:999px;
      padding:9px 12px;
      font-size:12.5px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
      color: rgba(15,23,42,.80);
      user-select:none;
    }
    .tagbtn:hover{transform: translateY(-2px); border-color: rgba(29,78,216,.22); box-shadow: 0 16px 34px rgba(2,6,23,.08)}
    .tagbtn[aria-pressed="true"]{
      background: rgba(29,78,216,.12);
      border-color: rgba(29,78,216,.26);
      color: rgba(29,78,216,.95);
      box-shadow: 0 18px 38px rgba(29,78,216,.14);
    }

    .faq{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      overflow:hidden;
    }
    details.faq-item{
      border-bottom:1px solid rgba(15,23,42,.07);
      padding:0;
    }
    details.faq-item:last-child{border-bottom:none}
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:16px 18px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      transition: background .18s var(--ease);
      font-weight:800;
      letter-spacing:.15px;
      font-size:14px;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    details.faq-item summary:hover{background: rgba(29,78,216,.04)}
    .sum-left{
      display:flex; gap:12px; align-items:flex-start;
      min-width:0;
    }
    .q-ic{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(29,78,216,.18);
      background: rgba(29,78,216,.10);
      color: rgba(29,78,216,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .sum-text{
      min-width:0;
    }
    .caret{
      width:28px; height:28px;
      border-radius:12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      transition: transform .22s var(--ease), border-color .22s var(--ease);
      flex:0 0 auto;
    }
    details[open] .caret{transform: rotate(180deg); border-color: rgba(29,78,216,.20)}
    .faq-body{
      padding:0 18px 16px 64px;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }

    .testimonials{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .quote{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      min-width:0;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
    }
    .quote:hover{transform: translateY(-3px); box-shadow: 0 22px 54px rgba(2,6,23,.10); border-color: rgba(29,78,216,.20)}
    .quote::before{
      content:"“";
      position:absolute; left:14px; top:8px;
      font-size:44px;
      color: rgba(29,78,216,.14);
      font-weight:900;
      pointer-events:none;
    }
    .quote p{
      margin:20px 0 14px;
      color:var(--muted);
      line-height:1.8;
      font-size:13px;
      min-height: 110px;
    }
    .person{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-top:1px dashed rgba(15,23,42,.10);
      padding-top:12px;
    }
    .who{
      display:flex; flex-direction:column; gap:4px;
    }
    .who strong{font-size:13px}
    .who span{font-size:12px; color:var(--muted2)}
    .badge-mini{
      padding:8px 10px;
      border-radius:999px;
      font-size:12px;
      border:1px solid rgba(34,197,94,.22);
      background: rgba(34,197,94,.10);
      color: rgba(34,197,94,.95);
      white-space:nowrap;
    }

    .form-card{
      border-radius:26px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 18px 46px rgba(2,6,23,.07);
      overflow:hidden;
    }
    .form-head{
      padding:18px;
      background: linear-gradient(135deg, rgba(29,78,216,.12), rgba(22,197,216,.10));
      border-bottom:1px solid rgba(15,23,42,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .form-head h3{margin:0; font-size:16px}
    .form-head p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7; max-width: 64ch}
    .form-body{
      padding:18px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .form-body .full{grid-column:1 / -1}
    .form-actions{
      grid-column:1 / -1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .consent{
      display:flex; align-items:flex-start; gap:10px;
      color: var(--muted2);
      font-size:12px;
      line-height:1.6;
      max-width: 54ch;
    }
    .consent .box{
      width:18px; height:18px; border-radius:6px;
      border:1px solid rgba(15,23,42,.18);
      background: rgba(255,255,255,.70);
      margin-top:2px;
      flex:0 0 auto;
    }

    .net-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .net-card{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.66);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      min-width:0;
    }
    .net-card::after{
      content:"";
      position:absolute; inset:-80px -80px auto auto;
      width:220px; height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(29,78,216,.18), transparent 60%),
                  radial-gradient(circle at 60% 60%, rgba(22,197,216,.14), transparent 60%);
      pointer-events:none;
    }
    .net-card h3{margin:0; font-size:15px; position:relative; z-index:1}
    .net-card p{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.8; position:relative; z-index:1}
    .service-ways{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
      position:relative; z-index:1;
    }
    .way{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.08);
    }
    .way .w-ic{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(29,78,216,.20);
      background: rgba(29,78,216,.10);
      color: rgba(29,78,216,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .way strong{font-size:13px}
    .way span{display:block; margin-top:4px; color:var(--muted); font-size:12.5px; line-height:1.65}

    .partner{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .partner .box2{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      padding:16px;
    }
    .partner h3{margin:0; font-size:15px}
    .partner p{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.8}

    .pricing{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      overflow:hidden;
    }
    .pricing .top{
      padding:16px 18px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(29,78,216,.08));
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
    }
    .pricing .top h3{margin:0; font-size:15px}
    .pricing .top p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7; max-width: 64ch}
    .price-table-wrap{overflow:auto}
    .price-table{
      min-width: 820px;
      border-collapse:separate;
      border-spacing:0;
      width:100%;
      background:#fff;
    }
    .price-table th, .price-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      font-size:13px;
      text-align:left;
      vertical-align:top;
    }
    .price-table th{
      background: rgba(247,248,251,.95);
      position:sticky; top:0; z-index:2;
      font-weight:900; color: rgba(15,23,42,.80);
      border-bottom:1px solid rgba(15,23,42,.10);
    }
    .price-table tr:hover td{background: rgba(34,197,94,.03)}
    .note{
      padding:12px 14px;
      color: var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      border-top:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.60);
    }

    .kb{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .kb .box{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      padding:16px;
      overflow:hidden;
    }
    .kb h3{margin:0; font-size:15px}
    .kb .para{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.8}
    .kb .grid3{
      margin-top:12px;
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    .kb .mini{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.65);
      padding:12px;
    }
    .kb .mini strong{display:block; font-size:13px}
    .kb .mini span{display:block; margin-top:6px; color:var(--muted); font-size:12.5px; line-height:1.65}

    .contact-strip{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
      align-items:stretch;
      margin-top:14px;
    }
    .contact-item{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.66);
      box-shadow: 0 18px 46px rgba(2,6,23,.06);
      padding:16px;
      position:relative;
      overflow:hidden;
      min-width:0;
    }
    .contact-item h3{margin:0; font-size:14px}
    .contact-item p{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.8}
    .qr{
      display:flex; gap:12px; align-items:flex-start; margin-top:10px;
    }
    .qr img{
      width:86px; height:86px; border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 16px 40px rgba(2,6,23,.10);
      background:#fff;
    }
    .contact-item .line{
      margin-top:8px;
      display:flex; flex-direction:column; gap:8px;
      font-size:13px;
      color: rgba(15,23,42,.84);
    }
    .kv{
      display:flex; align-items:center; gap:10px;
      border-radius:16px;
      padding:10px 12px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
    }
    .kv .kic{
      width:32px; height:32px;
      border-radius:14px;
      border:1px solid rgba(29,78,216,.18);
      background: rgba(29,78,216,.10);
      color: rgba(29,78,216,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .kv span{color:var(--muted); font-size:12.5px}
    .kv strong{display:block; font-size:13px; line-height:1.2}

    footer{
      border-top:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(247,248,251,.80), rgba(247,248,251,.95));
      padding:22px 0;
      color: rgba(15,23,42,.82);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .foot-left{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      padding:16px;
      box-shadow: 0 18px 46px rgba(2,6,23,.05);
    }
    .foot-left .row{
      display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
    }
    .foot-left p{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.8}
    .foot-right{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      padding:16px;
      box-shadow: 0 18px 46px rgba(2,6,23,.05);
    }
    .foot-right h3{margin:0; font-size:14px}
    .friend{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    .friend a{
      display:inline-flex; align-items:center; justify-content:space-between;
      gap:10px;
      padding:11px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.74);
      transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
      color: rgba(15,23,42,.86);
      font-size:13px;
    }
    .friend a:hover{transform: translateY(-2px); border-color: rgba(29,78,216,.22); background: rgba(29,78,216,.03)}
    .copy{
      margin-top:14px;
      color: var(--muted2);
      font-size:12.5px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }

    .float-cta{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:70;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-cta a, .float-cta button{
      pointer-events:auto;
    }
    .float-pill{
      display:flex; align-items:center; gap:10px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 40px rgba(2,6,23,.12);
      padding:10px 12px;
      cursor:pointer;
      transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease), opacity .18s var(--ease);
      backdrop-filter: blur(8px);
      max-width: 240px;
    }
    .float-pill:hover{transform: translateY(-2px); border-color: rgba(29,78,216,.22)}
    .float-pill .f-ic{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(29,78,216,.20);
      background: rgba(29,78,216,.10);
      color: rgba(29,78,216,.95);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .float-pill .f-text{
      display:flex; flex-direction:column; gap:2px; min-width:0;
    }
    .float-pill .f-text strong{font-size:13px}
    .float-pill .f-text span{font-size:12px; color:var(--muted2); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
    .toTop{
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 40px rgba(2,6,23,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      backdrop-filter: blur(8px);
      transition: transform .18s var(--ease), border-color .18s var(--ease), opacity .18s var(--ease);
    }
    .toTop:hover{transform: translateY(-2px); border-color: rgba(29,78,216,.22)}
    .toTop svg{width:18px; height:18px}

    .reveal{
      opacity:0; transform: translateY(14px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
      will-change: opacity, transform;
    }
    .reveal.on{
      opacity:1; transform: translateY(0px);
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .steps{grid-template-columns: 1fr 1fr;}
      .cards{grid-template-columns: 1fr 1fr;}
      .cases-grid{grid-template-columns: 1fr 1fr;}
      .testimonials{grid-template-columns: 1fr 1fr;}
      .articles{grid-template-columns:1fr}
      .kb{grid-template-columns: 1fr}
      .split{grid-template-columns:1fr}
      .timeline{grid-template-columns:1fr}
      .form-body{grid-template-columns:1fr}
      .contact-strip{grid-template-columns:1fr}
      .net-grid{grid-template-columns:1fr}
      .partner{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      table, .price-table{min-width: 700px}
      .nav-links{display:none}
      .menu-btn{display:inline-flex; align-items:center; justify-content:center}
      .mobile-panel{display:block}
      nav[data-open="false"] ~ .mobile-panel{display:none}
    }

    @media (max-width: 520px){
      .hero-card{padding:16px}
      h1{font-size:28px}
      .badge{flex:1 1 auto}
      .kpi-grid{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .cards{grid-template-columns:1fr}
      .cases-grid{grid-template-columns:1fr}
      .testimonials{grid-template-columns:1fr}
      .hero-actions{gap:10px}
      .mobile-panel .mobile-actions{grid-template-columns:1fr}
      .form-actions{justify-content:flex-start}
    }