:root{
      --bg0:#f6fbf7;
      --bg1:#ffffff;
      --text:#0f172a;
      --muted:#52606d;
      --muted2:#7a8794;
      --line:rgba(15,23,42,.10);
      --card:rgba(255,255,255,.78);
      --shadow: 0 12px 30px rgba(9, 20, 15, .10);
      --shadow2: 0 10px 20px rgba(16, 185, 129, .12);
      --green:#18c964;
      --green2:#0ea85a;
      --accent:#27f29a;
      --accent2:#7CFF7F;
      --blue:#0b76ff;
      --warn:#f59e0b;
      --radius:16px;
      --radius2:22px;
      --container: 1120px;
    }
    *{box-sizing:border-box}
    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(1100px 520px at 10% -10%, rgba(24,201,100,.18), transparent 55%),
        radial-gradient(900px 420px at 90% 0%, rgba(39,242,154,.16), transparent 52%),
        linear-gradient(180deg, var(--bg0), #ffffff 70%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:18px; top:14px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
      box-shadow:var(--shadow);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(150%) blur(10px);
      background:rgba(246, 251, 247, .72);
      border-bottom:1px solid rgba(15,23,42,.06);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width:190px;
    }
    .brand img{
      width:38px; height:38px;
      border-radius:12px;
      object-fit:cover;
      box-shadow:0 10px 22px rgba(24,201,100,.18);
      border:1px solid rgba(24,201,100,.25);
      background:#fff;
    }
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .brand-name{
      font-weight:820; letter-spacing:.2px;
      font-size:15px;
    }
    .brand .brand-sub{
      font-size:12px; color:var(--muted); margin-top:3px;
    }
    nav .nav-links{
      display:flex; align-items:center; gap:18px;
    }
    .nav-links a{
      font-size:13px; color:rgba(15,23,42,.78);
      padding:10px 10px; border-radius:12px;
      transition:background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(24,201,100,.10);
      color:rgba(15,23,42,.95);
      transform: translateY(-1px);
    }
    .nav-actions{
      display:flex; align-items:center; gap:10px;
      min-width:210px;
      justify-content:flex-end;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      color:rgba(15,23,42,.95);
      padding:10px 14px;
      font-size:13px;
      font-weight:700;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 25px rgba(2, 44, 18, .08);
      border-color: rgba(24,201,100,.28);
    }
    .btn-primary{
      background: linear-gradient(135deg, rgba(24,201,100,.98), rgba(14,168,90,.98));
      border-color: rgba(24,201,100,.35);
      color:#08311b;
      box-shadow: 0 16px 30px rgba(24,201,100,.18);
    }
    .btn-primary:hover{
      box-shadow: 0 20px 40px rgba(24,201,100,.22);
      border-color: rgba(24,201,100,.55);
    }
    .btn .icon{
      width:18px; height:18px; display:inline-block;
    }
    .burger{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background:#fff;
      cursor:pointer;
      align-items:center; justify-content:center;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .burger:hover{ transform: translateY(-1px); box-shadow: 0 12px 25px rgba(2, 44, 18, .08); }
    .burger span{
      width:18px; height:2px; background:rgba(15,23,42,.78);
      display:block; border-radius:4px;
      position:relative;
    }
    .burger span:before, .burger span:after{
      content:""; position:absolute; left:0; width:18px; height:2px; background:rgba(15,23,42,.78);
      border-radius:4px;
    }
    .burger span:before{ top:-6px; }
    .burger span:after{ top:6px; }

    .mobile-panel{
      display:none;
      padding:12px 0 16px;
    }
    .mobile-links{
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-links a{
      padding:12px 12px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.75);
      border-radius:14px;
      font-weight:700;
      font-size:13px;
    }
    .mobile-links a:active{ transform: translateY(1px); }

    .hero{
      position:relative;
      padding:34px 0 26px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      padding:26px 0;
      display:flex; flex-direction:column; justify-content:center;
      gap:14px;
    }
    .eyebrow{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      border:1px solid rgba(24,201,100,.25);
      background:rgba(255,255,255,.72);
      padding:8px 10px;
      border-radius:999px;
      box-shadow: 0 10px 20px rgba(24,201,100,.10);
    }
    .pill .dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #7CFF7F, #18c964);
      box-shadow: 0 0 0 4px rgba(24,201,100,.15);
    }
    .pill span{
      font-size:12px; font-weight:800; letter-spacing:.2px; color:rgba(7,40,22,.95);
      text-transform:none;
    }
    .hero h1{
      font-size:38px;
      letter-spacing:-.6px;
      margin:0;
      line-height:1.1;
      max-width:20ch;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size:14.5px;
      line-height:1.7;
      max-width:60ch;
    }
    .hero-cta{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:6px;
    }
    .btn-ghost{
      background:rgba(255,255,255,.72);
      border-color: rgba(15,23,42,.10);
    }
    .hero-meta{
      display:flex; gap:14px; flex-wrap:wrap;
      margin-top:10px;
    }
    .meta-item{
      display:flex; flex-direction:column; gap:4px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background:rgba(255,255,255,.65);
      min-width:160px;
    }
    .meta-item b{ font-size:14px; }
    .meta-item small{ color:var(--muted); font-weight:650; }

    .hero-right{
      border-radius: var(--radius2);
      border:1px solid rgba(24,201,100,.20);
      background:
        radial-gradient(800px 420px at 20% 0%, rgba(39,242,154,.20), transparent 50%),
        radial-gradient(600px 320px at 95% 25%, rgba(24,201,100,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.60));
      box-shadow: var(--shadow2);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .hero-right:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(24,201,100,.00), rgba(24,201,100,.16), rgba(39,242,154,.00));
      transform: translateX(-70%);
      animation: sheen 7s ease-in-out infinite;
      pointer-events:none;
      opacity:.85;
    }
    @keyframes sheen{
      0%, 30% { transform: translateX(-70%); }
      55% { transform: translateX(20%); }
      100% { transform: translateX(110%); }
    }
    .data-stack{
      position:relative;
      display:flex; flex-direction:column; gap:12px;
      height:100%;
    }
    .mini-grid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .data-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.08);
      border-radius:16px;
      padding:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .data-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(11,118,255,.06);
      border-color: rgba(24,201,100,.28);
    }
    .data-card .k{
      color:rgba(15,23,42,.82);
      font-weight:900;
      letter-spacing:-.2px;
      font-size:20px;
      display:flex; align-items:baseline; gap:8px;
    }
    .data-card .k i{
      font-style:normal;
      color:rgba(15,23,42,.55);
      font-weight:850;
      font-size:12px;
      letter-spacing:.2px;
      padding:4px 8px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background:rgba(255,255,255,.65);
    }
    .data-card .t{
      margin-top:6px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.4;
      font-weight:700;
      min-height:34px;
    }

    .progress-box{
      margin-top:2px;
      background: rgba(255,255,255,.68);
      border:1px solid rgba(15,23,42,.08);
      border-radius:18px;
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .progress-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .progress-title{
      display:flex; flex-direction:column; gap:6px;
    }
    .progress-title b{
      font-size:14px; letter-spacing:-.1px;
    }
    .progress-title small{
      color:var(--muted); font-weight:700; line-height:1.5;
    }
    .status-chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(24,201,100,.26);
      background:rgba(24,201,100,.10);
      color:rgba(7,40,22,.95);
      font-weight:900; font-size:12px;
      white-space:nowrap;
    }
    .status-chip .pulse{
      width:10px; height:10px; border-radius:50%;
      background: var(--green);
      box-shadow: 0 0 0 0 rgba(24,201,100,.35);
      animation: pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{ box-shadow: 0 0 0 0 rgba(24,201,100,.35); }
      60%{ box-shadow: 0 0 0 10px rgba(24,201,100,.00); }
      100%{ box-shadow: 0 0 0 0 rgba(24,201,100,.00); }
    }
    .progress-bar{
      height:12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.65);
      overflow:hidden;
      position:relative;
    }
    .progress-bar > span{
      display:block;
      height:100%;
      width:52%;
      border-radius:999px;
      background: linear-gradient(90deg, rgba(24,201,100,.95), rgba(39,242,154,.95));
      box-shadow: 0 10px 20px rgba(24,201,100,.20);
      transform-origin:left center;
      animation: fill 6s ease-in-out infinite;
    }
    @keyframes fill{
      0%, 45% { width: 52%; }
      60% { width: 76%; }
      100% { width: 52%; }
    }
    .progress-details{
      margin-top:10px;
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .kv{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
    }
    .kv b{ font-size:13px; }
    .kv small{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-weight:750;
      line-height:1.4;
      font-size:12.5px;
    }

    section{
      padding:18px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.35px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      max-width:58ch;
      font-weight:700;
    }
    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .grid-4{
      display:grid; grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.08);
      border-radius: var(--radius);
      box-shadow: 0 10px 25px rgba(2, 44, 18, .04);
      padding:14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      border-color: rgba(24,201,100,.24);
      box-shadow: 0 18px 40px rgba(24,201,100,.10);
    }
    .card .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px; border-radius:999px;
      background: rgba(24,201,100,.10);
      border:1px solid rgba(24,201,100,.24);
      font-size:12px; font-weight:900; color:rgba(7,40,22,.95);
      margin-bottom:10px;
      width:fit-content;
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
      line-height:1.3;
    }
    .card p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.7;
      font-weight:700;
      min-height:44px;
    }

    .steps{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .step-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .step-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      transition: transform .18s ease, border-color .18s ease;
    }
    .step-item:hover{ transform: translateY(-2px); border-color: rgba(24,201,100,.24); }
    .step-num{
      width:36px; height:36px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(24,201,100,.95), rgba(39,242,154,.90));
      border:1px solid rgba(24,201,100,.30);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:#05311a;
      box-shadow: 0 14px 25px rgba(24,201,100,.18);
      flex:0 0 auto;
    }
    .step-item b{ font-size:14px; letter-spacing:-.1px; }
    .step-item small{
      display:block; margin-top:5px; color:var(--muted);
      font-weight:750; line-height:1.6; font-size:13px;
    }
    .side-panel{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(24,201,100,.18);
      background:
        radial-gradient(680px 320px at 30% 10%, rgba(24,201,100,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.60));
      box-shadow: var(--shadow2);
      display:flex; flex-direction:column; gap:12px;
    }
    .side-panel .line{
      height:1px; background: rgba(15,23,42,.08);
      margin:2px 0;
    }
    .side-panel h3{
      margin:0; font-size:16px; letter-spacing:-.2px;
    }
    .bullets{
      display:grid; grid-template-columns: 1fr 1fr; gap:10px;
    }
    .bullet{
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      border-radius:14px;
      padding:10px 12px;
      min-height:60px;
    }
    .bullet b{ display:block; font-size:13px; }
    .bullet small{ display:block; margin-top:5px; color:var(--muted); font-weight:750; line-height:1.5; font-size:12.5px; }

    .table-wrap{
      border-radius: var(--radius2);
      overflow:hidden;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 45px rgba(2, 44, 18, .04);
    }
    .table-toolbar{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:14px 14px 10px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background:
        radial-gradient(600px 260px at 10% 0%, rgba(24,201,100,.14), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.65));
    }
    .table-toolbar b{
      font-size:14px; letter-spacing:-.1px;
    }
    .table-toolbar small{
      color:var(--muted); font-weight:750;
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width:720px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
      font-size:13px;
      line-height:1.6;
      font-weight:750;
    }
    th{
      background: rgba(24,201,100,.06);
      color:rgba(15,23,42,.90);
      font-size:13px;
      letter-spacing:-.1px;
      text-align:left;
      white-space:nowrap;
    }
    td{ color:rgba(15,23,42,.82); }
    .score-star{
      display:flex; align-items:center; gap:8px; flex-wrap:wrap;
    }
    .star{
      width:18px; height:18px; display:inline-block;
    }
    .highlight{
      border:2px solid rgba(24,201,100,.25);
      background: rgba(24,201,100,.08);
      border-radius:16px;
      padding:8px 10px;
      display:inline-flex; align-items:center; gap:10px;
    }
    .highlight strong{
      font-size:18px;
      letter-spacing:-.2px;
    }
    .muted{ color:var(--muted); font-weight:800; }

    .reviews{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .review-card{
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.72);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .review-card:hover{
      transform: translateY(-2px);
      border-color: rgba(24,201,100,.24);
      box-shadow: 0 18px 40px rgba(24,201,100,.10);
    }
    .review-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(24,201,100,.22);
      background: radial-gradient(circle at 30% 30%, rgba(39,242,154,.35), rgba(24,201,100,.12));
      box-shadow: 0 14px 25px rgba(24,201,100,.12);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:rgba(7,40,22,.95);
      flex:0 0 auto;
    }
    .review-type{
      font-weight:950; font-size:13px;
      color:rgba(15,23,42,.88);
      margin-top:1px;
    }
    .rating{
      display:flex; gap:2px; align-items:center; justify-content:flex-end;
      padding:6px 8px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      white-space:nowrap;
    }
    .review-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      font-weight:760;
      min-height:92px;
    }

    .timeline{
      display:grid; grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .time-card{
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      position:relative;
      overflow:hidden;
    }
    .time-card:before{
      content:"";
      position:absolute; inset:auto -40px -40px auto;
      width:120px; height:120px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(39,242,154,.32), rgba(24,201,100,.06));
      pointer-events:none;
    }
    .time-card b{
      display:block; font-size:14px; letter-spacing:-.15px;
      position:relative;
    }
    .time-card small{
      display:block; margin-top:6px;
      color:var(--muted);
      font-weight:770;
      line-height:1.6;
      font-size:13px;
      position:relative;
    }
    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .tag{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-size:13px;
      font-weight:800;
      color:rgba(15,23,42,.82);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .tag:hover{
      transform: translateY(-2px);
      border-color: rgba(24,201,100,.26);
      background: rgba(24,201,100,.08);
    }

    .faq-grid{
      display:grid; grid-template-columns: 1.05fr .95fr; gap:12px;
      align-items:start;
    }
    details{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.08);
      border-radius: var(--radius);
      padding:12px 14px;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    details[open]{
      border-color: rgba(24,201,100,.28);
      box-shadow: 0 18px 40px rgba(24,201,100,.10);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:950;
      font-size:14px;
      color:rgba(15,23,42,.92);
    }
    summary::-webkit-details-marker{display:none}
    .chev{
      width:28px; height:28px; border-radius:12px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      flex:0 0 auto;
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease;
      margin-top:-2px;
    }
    details[open] .chev{ transform: rotate(180deg); }
    .faq-body{
      color:var(--muted);
      font-weight:780;
      font-size:13.2px;
      line-height:1.8;
      margin-top:10px;
      padding-right:4px;
    }
    .aside-box{
      border-radius: var(--radius2);
      border:1px solid rgba(24,201,100,.18);
      background:
        radial-gradient(680px 320px at 20% 10%, rgba(24,201,100,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.60));
      box-shadow: var(--shadow2);
      padding:16px;
      display:flex; flex-direction:column; gap:12px;
    }
    .aside-box h3{ margin:0; font-size:16px; letter-spacing:-.2px; }
    .aside-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .aside-row{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
    }
    .aside-ico{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(24,201,100,.25);
      background: rgba(24,201,100,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .aside-row b{ display:block; font-size:13px; }
    .aside-row small{ display:block; margin-top:5px; color:var(--muted); font-weight:780; line-height:1.55; font-size:12.8px; }

    .articles{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;
    }
    .article-card{
      border-radius: var(--radius);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.72);
      padding:14px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:170px;
    }
    .article-card:hover{ transform: translateY(-2px); border-color: rgba(24,201,100,.24); box-shadow: 0 18px 40px rgba(24,201,100,.10); }
    .article-card .meta{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:var(--muted2);
      font-size:12.5px;
      font-weight:800;
    }
    .article-card h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
      line-height:1.4;
    }
    .article-card p{
      margin:0;
      color:var(--muted);
      font-weight:780;
      line-height:1.7;
      font-size:13px;
      flex:1 1 auto;
    }
    .article-card a.readmore{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:950; font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      width:fit-content;
    }
    .article-card a.readmore:hover{ transform: translateY(-1px); border-color: rgba(24,201,100,.24); box-shadow: 0 16px 30px rgba(24,201,100,.10); }

    .form-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      align-items:start;
    }
    .form-card{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.72);
      padding:16px;
      box-shadow: 0 18px 45px rgba(2, 44, 18, .04);
    }
    .form-card h3{ margin:0; font-size:16px; letter-spacing:-.2px; }
    .form-card p{ margin:8px 0 0; color:var(--muted); font-weight:770; line-height:1.7; font-size:13.2px; }
    form{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    label{
      font-size:13px;
      font-weight:900;
      color:rgba(15,23,42,.90);
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.90);
      font-size:14px;
      color:rgba(15,23,42,.95);
      outline:none;
      transition: border-color .18s ease, box-shadow .18s ease;
      font-weight:750;
    }
    textarea{ min-height:110px; resize:vertical; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(24,201,100,.45);
      box-shadow: 0 0 0 4px rgba(24,201,100,.15);
    }
    .form-actions{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      margin-top:6px;
    }
    .hint{
      color:var(--muted2);
      font-weight:800;
      font-size:12.8px;
      line-height:1.5;
    }

    footer{
      margin-top:12px;
      background: linear-gradient(180deg, rgba(9,20,15,.00), rgba(9,20,15,.06) 28%, rgba(9,20,15,.10));
      border-top:1px solid rgba(15,23,42,.08);
    }
    .footer-inner{
      padding:20px 0 16px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:12px;
      align-items:start;
    }
    .footer-left{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.08);
      padding:16px;
    }
    .footer-left .top{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
    }
    .footer-left b{
      font-size:15px; letter-spacing:-.2px;
    }
    .footer-left p{
      margin:8px 0 0;
      color:var(--muted);
      font-weight:780; line-height:1.7; font-size:13.2px;
      max-width:64ch;
    }
    .footer-right{
      border-radius: var(--radius2);
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.08);
      padding:16px;
    }
    .footer-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .footer-links a{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      font-weight:950; font-size:13px;
      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(24,201,100,.24);
      box-shadow: 0 16px 30px rgba(24,201,100,.10);
    }
    .copyright{
      padding:12px 0 18px;
      color:rgba(15,23,42,.72);
      font-weight:850;
      font-size:12.8px;
    }

    .backtop{
      position:fixed;
      right:16px;
      bottom:92px;
      z-index:60;
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 40px rgba(2,44,18,.10);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, opacity .18s ease;
      opacity:0;
      pointer-events:none;
    }
    .backtop.show{
      opacity:1;
      pointer-events:auto;
    }
    .backtop:active{ transform: translateY(1px); }

    .float-kefu{
      position:fixed;
      right:16px;
      bottom:34px;
      z-index:61;
      width:56px; height:56px;
      border-radius:20px;
      border:1px solid rgba(24,201,100,.26);
      background: linear-gradient(135deg, rgba(24,201,100,.98), rgba(39,242,154,.92));
      box-shadow: 0 18px 45px rgba(24,201,100,.25);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease;
    }
    .float-kefu:active{ transform: translateY(1px); }
    .float-kefu svg{ width:22px; height:22px; }
    .kefu-pop{
      position:fixed;
      right:16px;
      bottom:94px;
      z-index:62;
      width:min(320px, calc(100vw - 32px));
      border-radius: 20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(12px) saturate(140%);
      box-shadow: 0 26px 70px rgba(2,44,18,.18);
      padding:12px;
      display:none;
      transform-origin: right bottom;
      animation: popIn .18s ease-out;
    }
    @keyframes popIn{
      from{ transform: scale(.98) translateY(6px); opacity:.0; }
      to{ transform: scale(1) translateY(0); opacity:1; }
    }
    .kefu-pop.show{ display:block; }
    .kefu-pop .row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .kefu-pop b{ font-size:14px; letter-spacing:-.2px; }
    .kefu-pop button{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      cursor:pointer;
      transition: transform .18s ease;
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
    }
    .kefu-pop button:active{ transform: translateY(1px); }
    .kefu-pop .content{
      display:grid; grid-template-columns: 92px 1fr; gap:12px; align-items:center;
    }
    .kefu-pop img{
      width:92px; height:92px; border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      object-fit:cover;
      background:#fff;
    }
    .kefu-pop .right{
      display:flex; flex-direction:column; gap:8px;
    }
    .kefu-pop .right small{
      color:var(--muted);
      font-weight:800; line-height:1.6;
      font-size:12.8px;
    }
    .kefu-pop .actions{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:2px;
    }
    .kefu-pop .linkbtn{
      padding:10px 12px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      font-weight:950; font-size:13px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      white-space:nowrap;
      cursor:pointer;
      display:inline-flex; align-items:center; gap:8px;
    }
    .kefu-pop .linkbtn:hover{
      transform: translateY(-1px);
      border-color: rgba(24,201,100,.24);
      box-shadow: 0 16px 30px rgba(24,201,100,.10);
    }

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

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .hero-right{ order:2; }
      .hero h1{ font-size:34px; }
      .grid-3{ grid-template-columns: 1fr; }
      .grid-4{ grid-template-columns: 1fr 1fr; }
      .steps{ grid-template-columns: 1fr; }
      .timeline{ grid-template-columns: 1fr 1fr; }
      .reviews{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .articles{ grid-template-columns: 1fr; }
      .form-grid{ grid-template-columns: 1fr; }
      .footer-inner{ grid-template-columns: 1fr; }
      table{ min-width:680px; }
    }
    @media (max-width: 860px){
      nav .nav-links{ display:none; }
      .burger{ display:flex; }
      .mobile-panel.show{ display:block; }
    }
    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior:auto !important; }
      .reveal{ transition:none; }
      .hero-right:before, .status-chip .pulse, .progress-bar > span{ animation:none !important; }
    }