:root{
      --bg0:#fbfaf7;
      --bg1:#f5f6fb;
      --card:#ffffff;
      --text:#121826;
      --muted:#5a6679;
      --line:rgba(18,24,38,.10);
      --shadow: 0 10px 30px rgba(17,24,39,.08);
      --shadow2: 0 12px 35px rgba(17,24,39,.12);
      --primary:#2b5cff;
      --primary2:#6d3cff;
      --accent:#00b3ff;
      --good:#12b76a;
      --warn:#f59e0b;
      --danger:#ef4444;
      --radius:18px;
      --radius2:26px;
      --container: 1120px;
      --padX: 20px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 520px at 15% -10%, rgba(43,92,255,.14), rgba(43,92,255,0) 60%),
        radial-gradient(900px 420px at 85% 0%, rgba(109,60,255,.12), rgba(109,60,255,0) 55%),
        radial-gradient(900px 520px at 70% 40%, rgba(0,179,255,.10), rgba(0,179,255,0) 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(1.2) blur(10px);
      background:rgba(251,250,247,.72);
      border-bottom:1px solid rgba(18,24,38,.08);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 180px;
    }
    .brand-logo{
      width:46px;
      height:46px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(43,92,255,.12), rgba(109,60,255,.10));
      border:1px solid rgba(43,92,255,.18);
      box-shadow: 0 10px 24px rgba(43,92,255,.08);
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-logo img{
      width:100%;
      height:auto;
      display:block;
    }
    .brand-txt{line-height:1.1}
    .brand-name{
      font-weight:800;
      letter-spacing:.2px;
      font-size:14px;
    }
    .brand-sub{
      color:var(--muted);
      font-size:12px;
      margin-top:3px;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a{
      font-size:13px;
      color:rgba(18,24,38,.80);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background:rgba(43,92,255,.08);
      border-color:rgba(43,92,255,.22);
      color:rgba(18,24,38,.95);
      transform: translateY(-1px);
    }
    .nav .cta{
      background: linear-gradient(135deg, rgba(43,92,255,.95), rgba(109,60,255,.92));
      color:#fff;
      border:1px solid rgba(255,255,255,.20);
      box-shadow: 0 14px 35px rgba(43,92,255,.20);
      padding:9px 12px;
    }
    .nav .cta:hover{
      background: linear-gradient(135deg, rgba(43,92,255,1), rgba(109,60,255,1));
      border-color: rgba(255,255,255,.28);
      transform: translateY(-2px);
    }

    .nav-toggle{
      display:none;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.65);
      transition: transform .15s ease, box-shadow .15s ease;
      cursor:pointer;
    }
    .nav-toggle:hover{
      transform: translateY(-1px);
      box-shadow:0 10px 20px rgba(17,24,39,.08);
    }
    .nav-toggle svg{width:18px; height:18px}

    .mobile-drawer{
      display:none;
      padding: 0 0 14px 0;
    }
    .mobile-drawer .drawer-panel{
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.70);
      border-radius: 18px;
      padding: 12px;
      box-shadow: 0 18px 45px rgba(17,24,39,.12);
    }
    .mobile-drawer a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid transparent;
      color: rgba(18,24,38,.88);
      font-size: 14px;
      transition: background .15s ease, border-color .15s ease;
    }
    .mobile-drawer a:hover{
      background: rgba(43,92,255,.08);
      border-color: rgba(43,92,255,.20);
    }
    .mobile-drawer .drawer-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 2px 2px 10px 2px;
      border-bottom: 1px solid rgba(18,24,38,.08);
      margin-bottom: 10px;
    }
    .mobile-drawer .drawer-top strong{font-size:14px}
    .mobile-drawer .drawer-top button{
      width:38px;height:38px;border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background:rgba(255,255,255,.65);
      cursor:pointer;
      display:flex;align-items:center;justify-content:center;
    }

    .hero{
      padding: 42px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 18px;
      align-items:stretch;
    }

    .hero-card{
      position:relative;
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      border:1px solid rgba(18,24,38,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding: 26px;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(600px 260px at 20% 0%, rgba(43,92,255,.20), rgba(43,92,255,0) 60%),
        radial-gradient(520px 280px at 90% 10%, rgba(109,60,255,.18), rgba(109,60,255,0) 55%),
        radial-gradient(420px 240px at 70% 60%, rgba(0,179,255,.14), rgba(0,179,255,0) 60%);
      pointer-events:none;
      filter:saturate(1.1);
    }
    .hero-inner{position:relative; z-index:1}
    .pill-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom: 14px;
      align-items:center;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.62);
      color: rgba(18,24,38,.86);
      font-size: 12px;
    }
    .pill .dot{
      width:10px;height:10px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2) 35%), linear-gradient(135deg, var(--primary), var(--primary2));
      box-shadow: 0 8px 18px rgba(43,92,255,.25);
    }

    .hero h1{
      margin: 0;
      font-size: 34px;
      line-height: 1.2;
      letter-spacing: -0.6px;
    }
    .hero p{
      margin: 14px 0 18px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.8;
      max-width: 62ch;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top: 12px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.72);
      color: rgba(18,24,38,.90);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      font-weight:700;
      font-size: 14px;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(17,24,39,.10);
      border-color: rgba(43,92,255,.22);
    }
    .btn.primary{
      background: linear-gradient(135deg, rgba(43,92,255,.98), rgba(109,60,255,.92));
      border-color: rgba(255,255,255,.20);
      color:#fff;
      box-shadow: 0 18px 45px rgba(43,92,255,.22);
    }
    .btn.primary:hover{
      box-shadow: 0 22px 55px rgba(43,92,255,.28);
      border-color: rgba(255,255,255,.28);
    }
    .btn .icon{
      width:18px;height:18px; display:inline-flex;
    }
    .btn .icon svg{width:18px;height:18px}
    .hero-facts{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 10px;
      margin-top: 18px;
    }
    .fact{
      padding: 12px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(18,24,38,.10);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .fact:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 45px rgba(17,24,39,.12);
    }
    .fact b{
      display:block;
      font-size: 16px;
      letter-spacing: .2px;
    }
    .fact span{
      display:block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12.5px;
      line-height: 1.35;
    }

    .hero-side{
      display:flex;
      flex-direction:column;
      gap: 12px;
    }
    .side-card{
      background: rgba(255,255,255,.64);
      border:1px solid rgba(18,24,38,.10);
      border-radius: var(--radius2);
      box-shadow: 0 12px 28px rgba(17,24,39,.08);
      padding: 16px;
      overflow:hidden;
      position:relative;
      min-height: 122px;
    }
    .side-card:after{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(220px 160px at 0% 0%, rgba(0,179,255,.18), rgba(0,179,255,0) 60%),
        radial-gradient(260px 180px at 100% 20%, rgba(109,60,255,.14), rgba(109,60,255,0) 60%);
      pointer-events:none;
      opacity:.9;
    }
    .side-inner{position:relative; z-index:1}
    .side-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom: 10px;
    }
    .side-title h3{
      margin:0;
      font-size: 14px;
      color: rgba(18,24,38,.92);
      letter-spacing: .2px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(18,24,38,.04);
      border:1px solid rgba(18,24,38,.08);
      color: rgba(18,24,38,.78);
      font-size: 12px;
      white-space:nowrap;
    }
    .badge i{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--accent), var(--primary2));
      box-shadow: 0 10px 20px rgba(0,179,255,.20);
      display:inline-block;
    }
    .side-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .side-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color: rgba(18,24,38,.86);
      font-size: 13px;
      line-height: 1.45;
    }
    .check{
      width:18px;height:18px; flex:0 0 auto;
      border-radius: 6px;
      background: rgba(18,183,106,.12);
      border:1px solid rgba(18,183,106,.20);
      display:flex;align-items:center;justify-content:center;
      margin-top: 1px;
    }
    .check svg{width:12px;height:12px; color: var(--good)}
    .mini-note{
      color: var(--muted);
      font-size: 12.5px;
      line-height: 1.6;
      margin-top: 10px;
    }

    .section{
      padding: 34px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom: 16px;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color: rgba(18,24,38,.82);
      font-size: 12.5px;
      letter-spacing: .2px;
      text-transform: none;
    }
    .kicker .spark{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 14px 28px rgba(43,92,255,.22);
    }
    .section-title{
      margin: 8px 0 0;
      font-size: 22px;
      letter-spacing: -0.3px;
      line-height: 1.25;
    }
    .section-desc{
      color: var(--muted);
      margin: 0;
      max-width: 62ch;
      line-height: 1.8;
      font-size: 14px;
    }

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

    .card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(18,24,38,.10);
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      overflow:hidden;
      position:relative;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 46px rgba(17,24,39,.10);
      border-color: rgba(43,92,255,.22);
    }
    .card h3{
      margin: 10px 0 8px;
      font-size: 15px;
      letter-spacing: .1px;
    }
    .card p{
      margin:0;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.75;
    }
    .card .top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .ico{
      width:42px;height:42px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(43,92,255,.14), rgba(109,60,255,.12));
      border: 1px solid rgba(43,92,255,.18);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      position:relative;
      overflow:hidden;
    }
    .ico:before{
      content:"";
      position:absolute;
      inset:-1px;
      background: radial-gradient(26px 26px at 25% 20%, rgba(255,255,255,.8), rgba(255,255,255,0) 60%);
      opacity:.7;
      pointer-events:none;
    }
    .ico svg{width:20px;height:20px; position:relative}
    .tag{
      display:inline-flex;
      align-items:center;
      padding: 7px 10px;
      border-radius: 999px;
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.65);
      color: rgba(18,24,38,.78);
      font-size: 12px;
      white-space:nowrap;
    }

    .timeline{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 12px;
    }
    .step{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(18,24,38,.10);
      border-radius: var(--radius);
      padding: 16px 16px 14px;
      position:relative;
      overflow:hidden;
      box-shadow: 0 10px 24px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 45px rgba(17,24,39,.10);
      border-color: rgba(43,92,255,.22);
    }
    .step:after{
      content:"";
      position:absolute;
      width:160px;height:160px;
      border-radius:50%;
      right:-90px; top:-110px;
      background: radial-gradient(circle at 30% 30%, rgba(43,92,255,.22), rgba(43,92,255,0) 60%);
      pointer-events:none;
    }
    .step .num{
      width:40px;height:40px;border-radius:16px;
      background: rgba(43,92,255,.10);
      border:1px solid rgba(43,92,255,.20);
      display:flex;align-items:center;justify-content:center;
      font-weight:900;
      color: rgba(43,92,255,.95);
      position:relative;
    }
    .step h3{
      margin: 12px 0 6px;
      font-size: 15px;
      letter-spacing: .1px;
      position:relative;
    }
    .step p{
      margin:0;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.7;
      position:relative;
    }

    .compare-wrap{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.62));
      border:1px solid rgba(18,24,38,.10);
      border-radius: var(--radius2);
      padding: 16px;
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .compare-wrap:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(520px 260px at 10% 0%, rgba(43,92,255,.15), rgba(43,92,255,0) 60%),
        radial-gradient(520px 300px at 100% 20%, rgba(0,179,255,.10), rgba(0,179,255,0) 55%);
      pointer-events:none;
      opacity:.85;
    }
    .compare-inner{position:relative; z-index:1}
    .rating-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding: 6px 2px 14px;
      border-bottom:1px solid rgba(18,24,38,.08);
      margin-bottom: 14px;
    }
    .rating-left{
      display:flex; align-items:center; gap:14px;
    }
    .stars{
      width:56px;height:56px;border-radius:22px;
      background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(43,92,255,.10));
      border:1px solid rgba(245,158,11,.25);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 40px rgba(245,158,11,.12);
    }
    .stars svg{width:26px;height:26px}
    .rating-left .meta b{
      display:block; font-size: 18px; letter-spacing:-.2px;
    }
    .rating-left .meta span{
      display:block; margin-top:4px; color: var(--muted); font-size: 13px; line-height:1.3;
    }
    .rating-right{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .score-pill{
      padding: 10px 12px;
      border-radius: 16px;
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.68);
      color: rgba(18,24,38,.88);
      font-size: 13.5px;
      display:flex; align-items:center; gap:10px;
    }
    .score-pill strong{font-size: 18px; letter-spacing:-.2px}
    .score-pill em{font-style:normal; color: var(--muted)}

    .table-wrap{
      overflow:auto;
      border-radius: 16px;
      border: 1px solid rgba(18,24,38,.08);
      background: rgba(255,255,255,.55);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 820px;
    }
    th, td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(18,24,38,.08);
      border-right: 1px solid rgba(18,24,38,.06);
      vertical-align: top;
      font-size: 13.5px;
      line-height: 1.6;
    }
    th:last-child, td:last-child{border-right:none}
    th{
      background: rgba(255,255,255,.75);
      position:sticky;
      top:0;
      z-index:2;
      text-align:left;
      color: rgba(18,24,38,.92);
      font-weight:800;
    }
    td{
      color: rgba(18,24,38,.84);
    }
    .yes{
      display:inline-flex; align-items:center; gap:8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(18,183,106,.10);
      border:1px solid rgba(18,183,106,.18);
      color: rgba(18,183,106,.95);
      font-weight:800;
      white-space:nowrap;
    }
    .no{
      display:inline-flex; align-items:center; gap:8px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(239,68,68,.08);
      border:1px solid rgba(239,68,68,.18);
      color: rgba(239,68,68,.95);
      font-weight:800;
      white-space:nowrap;
    }
    .muted-cell{color: var(--muted)}

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .faq-col{
      display:flex;
      flex-direction:column;
      gap: 12px;
    }
    details.faq{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(18,24,38,.10);
      border-radius: var(--radius);
      padding: 12px 12px;
      box-shadow: 0 10px 24px rgba(17,24,39,.06);
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    details.faq[open]{
      border-color: rgba(43,92,255,.22);
      box-shadow: 0 18px 45px rgba(17,24,39,.10);
      transform: translateY(-2px);
    }
    details.faq summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 12px;
      font-weight:900;
      color: rgba(18,24,38,.93);
      font-size: 14px;
      line-height: 1.5;
      padding: 6px 4px;
      user-select:none;
    }
    details.faq summary::-webkit-details-marker{display:none}
    .chev{
      width:32px;height:32px;border-radius:14px;
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.65);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      transition: transform .22s ease, border-color .18s ease;
      margin-top: -2px;
    }
    details.faq[open] .chev{transform: rotate(180deg); border-color: rgba(43,92,255,.24)}
    .faq-body{
      padding: 0 4px 8px 4px;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.8;
    }

    .comments{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }
    .quote{
      padding: 16px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.70);
      border:1px solid rgba(18,24,38,.10);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .quote:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 46px rgba(17,24,39,.10);
      border-color: rgba(43,92,255,.22);
    }
    .quote:before{
      content:"";
      position:absolute;
      width:200px;height:200px;
      border-radius:50%;
      left:-120px; top:-120px;
      background: radial-gradient(circle at 30% 30%, rgba(43,92,255,.16), rgba(43,92,255,0) 62%);
      pointer-events:none;
    }
    .quote .qtop{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px; position:relative;
    }
    .person{
      display:flex; gap:10px; align-items:center;
    }
    .avatar{
      width:40px;height:40px;border-radius:16px;
      background: linear-gradient(135deg, rgba(0,179,255,.16), rgba(109,60,255,.12));
      border:1px solid rgba(0,179,255,.18);
      display:flex; align-items:center; justify-content:center;
      color: rgba(18,24,38,.88);
      font-weight:900;
      flex:0 0 auto;
    }
    .person b{display:block; font-size: 14px}
    .person span{display:block; color: var(--muted); font-size: 12.5px; margin-top:3px; line-height:1.3}
    .stars-mini{
      display:flex; gap:2px; margin-top:2px;
    }
    .stars-mini svg{width:14px;height:14px}
    .quote p{
      position:relative;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.8;
    }

    .list-cards{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      display:grid;
      gap: 12px;
    }
    .article-item{
      display:flex;
      gap:12px;
      padding: 14px;
      border-radius: var(--radius);
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 24px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article-item:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 46px rgba(17,24,39,.10);
      border-color: rgba(43,92,255,.22);
    }
    .article-item .dotbox{
      width:40px;height:40px;border-radius:16px;
      background: rgba(43,92,255,.10);
      border:1px solid rgba(43,92,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .article-item .dotbox svg{width:18px;height:18px}
    .article-item b{
      display:block; font-size: 14px; letter-spacing:.1px;
    }
    .article-item span{
      display:block; color: var(--muted); font-size: 12.5px; margin-top:6px; line-height:1.5;
    }
    .article-item a{
      margin-top: 10px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      color: rgba(43,92,255,.95);
      font-weight:900;
      font-size: 13px;
    }
    .article-item a:hover{transform: translateY(-1px)}
    .article-item a svg{width:16px;height:16px}

    .form-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(18,24,38,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding: 16px;
      overflow:hidden;
      position:relative;
    }
    .form-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(500px 240px at 15% 0%, rgba(43,92,255,.16), rgba(43,92,255,0) 60%),
        radial-gradient(520px 260px at 95% 30%, rgba(109,60,255,.12), rgba(109,60,255,0) 58%);
      pointer-events:none;
      opacity:.85;
    }
    .form-inner{position:relative; z-index:1}
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    label{
      font-size: 12.5px;
      color: rgba(18,24,38,.82);
      font-weight:800;
    }
    input, select, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border:1px solid rgba(18,24,38,.14);
      background: rgba(255,255,255,.85);
      outline:none;
      color: rgba(18,24,38,.95);
      font-size: 14px;
      transition: border-color .15s ease, box-shadow .15s ease;
    }
    textarea{min-height: 110px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(43,92,255,.35);
      box-shadow: 0 0 0 4px rgba(43,92,255,.14);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top: 12px;
      flex-wrap:wrap;
    }
    .small-help{
      color: var(--muted);
      font-size: 12.5px;
      line-height: 1.6;
      max-width: 50ch;
    }
    .success{
      display:none;
      margin-top: 12px;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(18,183,106,.20);
      background: rgba(18,183,106,.10);
      color: rgba(18,120,70,.95);
      font-weight:800;
      font-size: 13.5px;
    }

    .tabs{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top: 6px;
    }
    .tab{
      padding: 10px 12px;
      border-radius: 999px;
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.66);
      color: rgba(18,24,38,.82);
      font-weight:900;
      font-size: 13px;
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      user-select:none;
    }
    .tab:hover{transform: translateY(-1px); border-color: rgba(43,92,255,.22)}
    .tab.active{
      background: linear-gradient(135deg, rgba(43,92,255,.16), rgba(109,60,255,.14));
      border-color: rgba(43,92,255,.28);
      color: rgba(18,24,38,.92);
    }
    .match-panel{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .match-card{
      padding: 16px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.70);
      border:1px solid rgba(18,24,38,.10);
      box-shadow: 0 10px 26px rgba(17,24,39,.06);
    }
    .match-card h3{
      margin: 0 0 8px;
      font-size: 15px;
      letter-spacing: .1px;
    }
    .pill-list{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .pill2{
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.65);
      color: rgba(18,24,38,.82);
      font-size: 12.5px;
      font-weight:800;
    }
    .match-card ul{
      margin: 10px 0 0;
      padding: 0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .match-card li{
      display:flex; gap:10px; align-items:flex-start;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.6;
    }
    .bullet{
      width:18px;height:18px;border-radius:7px;
      background: rgba(0,179,255,.10);
      border:1px solid rgba(0,179,255,.18);
      display:flex;align-items:center;justify-content:center;
      margin-top: 1px;
      flex:0 0 auto;
    }
    .bullet svg{width:12px;height:12px}

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .contact-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(18,24,38,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      padding: 16px;
      overflow:hidden;
      position:relative;
    }
    .contact-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(500px 240px at 10% 0%, rgba(0,179,255,.12), rgba(0,179,255,0) 60%),
        radial-gradient(520px 280px at 100% 30%, rgba(43,92,255,.12), rgba(43,92,255,0) 58%);
      pointer-events:none;
      opacity:.85;
    }
    .contact-inner{position:relative; z-index:1}
    .kv{
      display:grid;
      gap: 12px;
      margin-top: 10px;
    }
    .kv-item{
      display:flex; gap:12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(18,24,38,.08);
      background: rgba(255,255,255,.62);
    }
    .kv-item svg{width:18px;height:18px; margin-top:2px}
    .kv-item b{display:block; font-size: 13.5px}
    .kv-item span{display:block; color: var(--muted); font-size: 12.5px; margin-top:4px; line-height:1.5}
    .qr-wrap{
      display:flex; gap:12px; align-items:center;
      padding: 12px 12px;
      border-radius: 16px;
      border:1px solid rgba(18,24,38,.08);
      background: rgba(255,255,255,.62);
      margin-top: 12px;
    }
    .qr-wrap img{
      width:86px; height:auto; border-radius: 16px;
      border:1px solid rgba(18,24,38,.10);
      background:#fff;
      box-shadow: 0 12px 30px rgba(17,24,39,.10);
      flex:0 0 auto;
    }
    .qr-wrap .qr-meta b{display:block; font-size: 14px}
    .qr-wrap .qr-meta span{display:block; color: var(--muted); margin-top:4px; font-size: 12.5px; line-height:1.5}

    .logos{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top: 12px;
    }
    .model-chip{
      padding: 9px 10px;
      border-radius: 999px;
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.65);
      font-size: 12.5px;
      color: rgba(18,24,38,.82);
      font-weight: 900;
      white-space:nowrap;
    }

    .footer{
      margin-top: 10px;
      padding: 26px 0 30px;
      border-top:1px solid rgba(18,24,38,.08);
      background: rgba(255,255,255,.55);
    }
    .footer-inner{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footer-brand img{
      width:40px;height:40px;border-radius:16px; border:1px solid rgba(18,24,38,.10);
      background:#fff;
    }
    .footer-brand b{display:block; font-size: 14px}
    .footer-brand span{display:block; color: var(--muted); margin-top:6px; font-size: 12.5px; line-height:1.7}
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px;
      justify-content:flex-end;
    }
    .footer-links a{
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(18,24,38,.10);
      background: rgba(255,255,255,.60);
      color: rgba(18,24,38,.85);
      font-size: 13px;
      font-weight: 900;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      white-space:nowrap;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(43,92,255,.22);
      box-shadow: 0 16px 38px rgba(17,24,39,.10);
    }
    .copyright{
      margin-top: 14px;
      color: rgba(18,24,38,.62);
      font-size: 12.5px;
      text-align:center;
    }

    .float-cs{
      position:fixed;
      right: 16px;
      bottom: 16px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-cs a, .float-cs button{
      border:none;
      cursor:pointer;
      text-decoration:none;
      font-weight:900;
      font-size: 13.5px;
      border-radius: 16px;
      padding: 12px 14px;
      display:flex;
      gap:10px;
      align-items:center;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(18,24,38,.10);
      box-shadow: 0 18px 45px rgba(17,24,39,.14);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .float-cs a:hover, .float-cs button:hover{
      transform: translateY(-3px);
      border-color: rgba(43,92,255,.22);
      box-shadow: 0 22px 55px rgba(17,24,39,.18);
    }
    .float-cs .primary{
      background: linear-gradient(135deg, rgba(43,92,255,.98), rgba(109,60,255,.92));
      color:#fff;
      border-color: rgba(255,255,255,.18);
    }
    .float-cs svg{width:18px;height:18px}

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .grid-3{grid-template-columns: 1fr; }
      .timeline{grid-template-columns: 1fr 1fr; }
      .faq-grid{grid-template-columns: 1fr; }
      .comments{grid-template-columns: 1fr; }
      .list-cards{grid-template-columns: 1fr; }
      .match-panel{grid-template-columns: 1fr; }
      .contact-grid{grid-template-columns: 1fr; }
      .footer-inner{grid-template-columns: 1fr; }
      .footer-links{justify-content:flex-start}
    }
    @media (max-width: 860px){
      .nav{display:none;}
      .nav-toggle{display:flex;}
      .mobile-drawer{display:block;}
      .hero h1{font-size: 28px;}
      .hero-facts{grid-template-columns: 1fr; }
      .timeline{grid-template-columns: 1fr; }
      .form-grid{grid-template-columns: 1fr; }
    }