:root{
      --bg:#f5fbf7;
      --bg2:#f0fbf3;
      --card:#ffffff;
      --text:#13231c;
      --muted:#4d6a5b;
      --muted2:#6c8376;
      --line:rgba(16,61,42,.12);
      --shadow: 0 18px 45px rgba(16,61,42,.10);
      --shadow2: 0 10px 25px rgba(16,61,42,.10);
      --brand:#2bb673;
      --brand2:#22a06a;
      --accent:#1f7a62;
      --accent2:#0f3f31;
      --chip:#e6f7ee;
      --btn:#0f7a55;
      --btn2:#0b6a4a;
      --warn:#0b5a44;
      --radius:18px;
      --radius2:14px;
      --container:1160px;
      --gap:18px;
      --focus: 0 0 0 4px rgba(43,182,115,.20);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Microsoft YaHei", Arial, "Noto Sans", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1100px 600px at 20% -10%, rgba(43,182,115,.22), transparent 50%),
        radial-gradient(900px 480px at 85% 0%, rgba(34,160,106,.18), transparent 45%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg2) 55%, #f8fcfa 100%);
    }
    a{color:inherit}
    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .skip{
      position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:var(--card); border:1px solid var(--line); border-radius:12px;
      z-index:9999; box-shadow:var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(170%) blur(10px);
      background:rgba(245,251,247,.72);
      border-bottom:1px solid rgba(16,61,42,.10);
    }
    .nav-wrap{padding:12px 0}
    .nav{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px; min-width:180px;
    }
    .brand img{width:44px; height:44px; border-radius:14px; background:rgba(255,255,255,.7); padding:6px; box-shadow:0 10px 22px rgba(16,61,42,.08)}
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.05;
    }
    .brand .brand-name{
      font-weight:820; letter-spacing:.2px;
      font-size:14px;
    }
    .brand .brand-sub{
      font-size:12px; color:var(--muted);
      margin-top:3px;
    }
    .nav-right{display:flex; align-items:center; gap:10px}
    .menu{
      display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:flex-end;
    }
    .nav a.nav-link{
      text-decoration:none;
      padding:10px 10px;
      border-radius:12px;
      font-size:13px;
      color:rgba(19,35,28,.86);
      border:1px solid transparent;
      transition: background .2s, border-color .2s, transform .2s;
      white-space:nowrap;
    }
    .nav a.nav-link:hover{
      background:rgba(43,182,115,.10);
      border-color:rgba(43,182,115,.18);
      transform: translateY(-1px);
    }
    .cta-row{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(16,61,42,.14);
      background:rgba(255,255,255,.78);
      text-decoration:none;
      color:var(--accent2);
      font-weight:700;
      font-size:13px;
      transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
      box-shadow:0 10px 22px rgba(16,61,42,.08);
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); box-shadow:0 14px 30px rgba(16,61,42,.12); border-color:rgba(43,182,115,.32)}
    .btn:focus{outline:none; box-shadow: var(--shadow2), var(--focus)}
    .btn-primary{
      border-color:rgba(15,122,85,.25);
      background: linear-gradient(180deg, rgba(43,182,115,.98), rgba(15,122,85,.96));
      color:#fff;
      box-shadow: 0 18px 40px rgba(15,122,85,.22);
    }
    .btn-primary:hover{box-shadow: 0 22px 55px rgba(15,122,85,.26)}
    .btn .dot{
      width:8px; height:8px; border-radius:999px;
      background:rgba(255,255,255,.95);
      box-shadow:0 0 0 4px rgba(255,255,255,.20);
    }
    .hamburger{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(16,61,42,.14);
      background:rgba(255,255,255,.78);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .2s, box-shadow .2s, border-color .2s;
      box-shadow:0 10px 22px rgba(16,61,42,.08);
    }
    .hamburger:hover{transform: translateY(-1px); border-color:rgba(43,182,115,.32)}
    .hamburger:focus{outline:none; box-shadow: var(--shadow2), var(--focus)}
    .hamburger svg{width:18px; height:18px}
    .mobile-panel{
      display:none;
      padding:12px 0 16px 0;
    }
    .mobile-menu{
      display:flex; flex-direction:column; gap:10px;
      background:rgba(255,255,255,.70);
      border:1px solid rgba(16,61,42,.12);
      border-radius:18px;
      padding:12px;
      box-shadow:var(--shadow2);
    }
    .mobile-menu a{
      text-decoration:none;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(16,61,42,.10);
      background:rgba(255,255,255,.75);
      font-weight:700;
      font-size:13px;
      color:rgba(19,35,28,.90);
      transition: transform .2s, background .2s, border-color .2s;
    }
    .mobile-menu a:hover{transform: translateY(-1px); border-color:rgba(43,182,115,.30); background:rgba(43,182,115,.10)}

    main{padding:18px 0 52px}
    .hero{
      padding:22px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:16px;
      align-items:stretch;
    }
    .hero-card{
      background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.70));
      border:1px solid rgba(16,61,42,.12);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px -2px auto -2px;
      height:190px;
      background:
        radial-gradient(500px 160px at 15% 0%, rgba(43,182,115,.28), transparent 60%),
        radial-gradient(420px 140px at 85% 0%, rgba(34,160,106,.22), transparent 55%),
        linear-gradient(90deg, rgba(43,182,115,.12), rgba(34,160,106,.05));
      pointer-events:none;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(43,182,115,.20);
      background: rgba(230,247,238,.55);
      color:rgba(15,63,49,.92);
      font-weight:800;
      font-size:12px;
      position:relative; z-index:1;
    }
    .kicker svg{width:16px; height:16px}
    .hero h1{
      margin:14px 0 10px;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.14;
      position:relative; z-index:1;
    }
    .hero p{
      margin:0;
      color:rgba(19,35,28,.80);
      font-size:14.5px;
      line-height:1.8;
      position:relative; z-index:1;
      max-width:62ch;
    }
    .hero-actions{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:18px;
      position:relative; z-index:1;
    }
    .hero-actions .btn-primary{padding:12px 16px}
    .micro{
      display:flex; gap:10px; align-items:flex-start;
      margin-top:14px;
      color:var(--muted);
      font-size:12.5px;
      position:relative; z-index:1;
    }
    .micro ul{margin:0; padding-left:18px}
    .micro li{margin:6px 0}
    .side-stack{
      display:flex; flex-direction:column; gap:16px;
    }
    .metric-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(16,61,42,.12);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:var(--shadow2);
      position:relative; overflow:hidden;
    }
    .metric-card:after{
      content:"";
      position:absolute; right:-60px; top:-80px;
      width:180px; height:180px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(43,182,115,.28), transparent 60%);
      pointer-events:none;
    }
    .metric-top{
      display:flex; justify-content:space-between; align-items:flex-start; gap:12px;
      position:relative;
    }
    .metric-title{
      font-weight:860;
      font-size:14px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(43,182,115,.20);
      background: rgba(230,247,238,.55);
      color:rgba(15,63,49,.92);
      font-weight:850;
      font-size:12px;
      white-space:nowrap;
    }
    .badge i{
      width:9px; height:9px; border-radius:999px;
      background:rgba(43,182,115,.95);
      box-shadow:0 0 0 5px rgba(43,182,115,.18);
      display:inline-block;
    }
    .metrics{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px; margin-top:12px;
      position:relative;
    }
    .metric{
      border:1px solid rgba(16,61,42,.10);
      background: rgba(255,255,255,.66);
      border-radius:16px;
      padding:12px;
      transition: transform .22s, box-shadow .22s, border-color .22s;
    }
    .metric:hover{transform: translateY(-2px); border-color:rgba(43,182,115,.28); box-shadow:0 14px 30px rgba(16,61,42,.12)}
    .metric .num{
      font-weight:920;
      letter-spacing:-.5px;
      font-size:20px;
      margin-bottom:6px;
    }
    .metric .lab{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.4;
    }

    .section{
      padding: 26px 0;
    }
    .section h2{
      font-size:22px;
      margin:0 0 10px;
      letter-spacing:-.3px;
    }
    .section .subhead{
      color:rgba(19,35,28,.78);
      font-size:14px;
      line-height:1.8;
      margin:0 0 18px;
      max-width:78ch;
    }
    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:16px;
      align-items:stretch;
    }
    .grid-2{
      display:grid; grid-template-columns: repeat(2, 1fr);
      gap:16px;
      align-items:stretch;
    }
    .card{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(16,61,42,.12);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 10px 25px rgba(16,61,42,.08);
      transition: transform .22s, box-shadow .22s, border-color .22s;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow:0 18px 40px rgba(16,61,42,.12);
      border-color:rgba(43,182,115,.28);
    }
    .card h3{
      margin:8px 0 10px;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:rgba(19,35,28,.78);
      font-size:13.5px;
      line-height:1.8;
    }
    .icon{
      width:40px; height:40px;
      border-radius:14px;
      background: linear-gradient(180deg, rgba(43,182,115,.18), rgba(43,182,115,.06));
      border:1px solid rgba(43,182,115,.26);
      display:flex; align-items:center; justify-content:center;
      position:relative;
    }
    .icon svg{width:20px; height:20px; color:var(--accent)}
    .list{
      margin:12px 0 0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .list li{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(19,35,28,.80);
      font-size:13.5px;
      line-height:1.7;
    }
    .check{
      width:18px; height:18px; border-radius:6px;
      background: rgba(43,182,115,.14);
      border:1px solid rgba(43,182,115,.28);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .check svg{width:12px; height:12px; color:var(--brand)}
    .steps{
      display:grid; grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .step{
      border-radius:var(--radius);
      padding:16px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.70));
      border:1px solid rgba(16,61,42,.12);
      box-shadow:0 10px 25px rgba(16,61,42,.08);
      position:relative;
      overflow:hidden;
      transition: transform .22s, box-shadow .22s, border-color .22s;
      min-height:160px;
    }
    .step:hover{transform: translateY(-3px); border-color:rgba(43,182,115,.28); box-shadow:0 18px 40px rgba(16,61,42,.12)}
    .step:before{
      content:"";
      position:absolute; left:-30px; top:-30px;
      width:110px; height:110px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(43,182,115,.24), transparent 60%);
      pointer-events:none;
    }
    .step .n{
      width:34px; height:34px; border-radius:14px;
      background: rgba(43,182,115,.14);
      border:1px solid rgba(43,182,115,.28);
      display:flex; align-items:center; justify-content:center;
      font-weight:920; letter-spacing:-.4px;
      color:rgba(11,90,68,.95);
      position:relative;
    }
    .step h3{margin:12px 0 8px; font-size:15.5px; position:relative}
    .step p{margin:0; color:rgba(19,35,28,.78); font-size:13.5px; line-height:1.8; position:relative}

    .table-wrap{
      overflow:auto;
      border-radius:var(--radius);
      border:1px solid rgba(16,61,42,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 25px rgba(16,61,42,.08);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
    }
    th, td{
      padding:14px 14px;
      border-bottom:1px solid rgba(16,61,42,.10);
      vertical-align:top;
      font-size:13.5px;
      color:rgba(19,35,28,.86);
    }
    th{
      background: linear-gradient(180deg, rgba(230,247,238,.9), rgba(230,247,238,.55));
      font-weight:900;
      text-align:left;
      position:sticky;
      top:0;
      z-index:1;
    }
    td.muted{color:var(--muted)}
    .tag-row{display:flex; flex-wrap:wrap; gap:8px}
    .tag{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,61,42,.12);
      background: rgba(255,255,255,.70);
      color:rgba(19,35,28,.85);
      font-weight:750;
      font-size:12.5px;
      white-space:nowrap;
    }
    .tag.good{
      border-color:rgba(43,182,115,.28);
      background: rgba(43,182,115,.10);
      color:rgba(11,90,68,.95);
    }

    .comparison-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .rating{
      display:flex; gap:12px; align-items:center;
      padding:14px 16px;
      border-radius:18px;
      border:1px solid rgba(43,182,115,.22);
      background: rgba(230,247,238,.55);
    }
    .stars{display:flex; gap:4px}
    .stars svg{width:18px; height:18px}
    .rating .score{
      font-weight:950;
      letter-spacing:-.6px;
      font-size:30px;
      line-height:1;
    }
    .rating .hint{color:var(--muted); font-size:13.5px; line-height:1.4}
    .rating .rec{
      font-weight:920; color:rgba(11,90,68,.98); margin-top:4px;
      font-size:13.5px;
    }

    .pricing-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .price-card{
      border-radius:var(--radius);
      padding:16px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(16,61,42,.12);
      box-shadow:0 10px 25px rgba(16,61,42,.08);
      position:relative;
      overflow:hidden;
      transition: transform .22s, box-shadow .22s, border-color .22s;
      min-height:190px;
    }
    .price-card:hover{transform: translateY(-3px); border-color:rgba(43,182,115,.28); box-shadow:0 18px 40px rgba(16,61,42,.12)}
    .price-card h3{margin:10px 0 8px; font-size:15.5px}
    .price-top{
      display:flex; align-items:baseline; justify-content:space-between; gap:10px;
      margin-top:2px;
    }
    .price{
      font-weight:950; letter-spacing:-.6px;
      font-size:28px;
      color:rgba(15,122,85,.98);
    }
    .price-unit{
      font-size:12.5px; color:var(--muted);
      font-weight:800; margin-left:6px;
    }
    .price-card p{margin:0; color:rgba(19,35,28,.78); font-size:13.5px; line-height:1.8}
    .price-card .small{margin-top:12px; color:var(--muted); font-size:12.5px; line-height:1.6}
    .price-card .cta-mini{
      margin-top:12px;
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .mini-link{
      text-decoration:none;
      font-weight:850;
      color:rgba(11,90,68,.98);
      padding:9px 12px;
      border-radius:14px;
      border:1px solid rgba(43,182,115,.25);
      background: rgba(43,182,115,.10);
      transition: transform .2s, border-color .2s, background .2s;
      font-size:13px;
    }
    .mini-link:hover{transform: translateY(-1px); border-color:rgba(43,182,115,.40); background: rgba(43,182,115,.14)}
    .mini-ghost{
      text-decoration:none;
      font-weight:850;
      color:rgba(19,35,28,.90);
      padding:9px 12px;
      border-radius:14px;
      border:1px solid rgba(16,61,42,.14);
      background: rgba(255,255,255,.75);
      transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
      font-size:13px;
    }
    .mini-ghost:hover{transform: translateY(-1px); border-color:rgba(43,182,115,.30); box-shadow:0 10px 25px rgba(16,61,42,.10)}

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }

    .accordion{
      border-radius:var(--radius);
      border:1px solid rgba(16,61,42,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 25px rgba(16,61,42,.08);
      overflow:hidden;
    }
    details{
      border-bottom:1px solid rgba(16,61,42,.10);
      padding:0;
    }
    details:last-child{border-bottom:none}
    summary{
      list-style:none;
      cursor:pointer;
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:900;
      color:rgba(19,35,28,.92);
      font-size:14px;
      transition: background .2s;
    }
    summary::-webkit-details-marker{display:none}
    details[open] summary{background: rgba(230,247,238,.45)}
    .sum-right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
      color:var(--muted);
      font-weight:850;
    }
    .chev{
      width:28px; height:28px; border-radius:12px;
      border:1px solid rgba(16,61,42,.12);
      background: rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s;
    }
    details[open] .chev{transform: rotate(180deg)}
    .acc-body{
      padding:0 16px 16px 16px;
      color:rgba(19,35,28,.78);
      font-size:13.5px;
      line-height:1.85;
    }

    .review-grid{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .review{
      border-radius:var(--radius);
      padding:16px;
      border:1px solid rgba(16,61,42,.12);
      background: rgba(255,255,255,.82);
      box-shadow:0 10px 25px rgba(16,61,42,.08);
      transition: transform .22s, box-shadow .22s, border-color .22s;
      min-height:180px;
      display:flex; flex-direction:column; gap:10px;
    }
    .review:hover{transform: translateY(-3px); border-color:rgba(43,182,115,.28); box-shadow:0 18px 40px rgba(16,61,42,.12)}
    .review .top{
      display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(180deg, rgba(43,182,115,.22), rgba(43,182,115,.07));
      border:1px solid rgba(43,182,115,.25);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(11,90,68,.95);
    }
    .who{
      flex:1 1 auto;
      min-width:0;
    }
    .who .name{
      font-weight:950; font-size:13.5px; margin-bottom:4px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .who .role{
      color:var(--muted); font-weight:850; font-size:12.5px; line-height:1.3;
    }
    .review .text{
      color:rgba(19,35,28,.80);
      font-size:13.5px;
      line-height:1.85;
      margin-top:auto;
    }
    .review .stars-mini{display:flex; gap:4px}
    .review .stars-mini svg{width:16px; height:16px}

    .articles-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    .article-list{
      border-radius:var(--radius);
      border:1px solid rgba(16,61,42,.12);
      background:rgba(255,255,255,.78);
      box-shadow:0 10px 25px rgba(16,61,42,.08);
      overflow:hidden;
    }
    .article-list .head{
      padding:14px 16px;
      background: linear-gradient(180deg, rgba(230,247,238,.90), rgba(230,247,238,.55));
      display:flex; justify-content:space-between; align-items:center; gap:12px;
      border-bottom:1px solid rgba(16,61,42,.10);
    }
    .article-list .head strong{font-size:14.5px}
    .article-list .head span{color:var(--muted); font-size:12.5px; font-weight:850}
    .article-items{
      padding:10px 8px 12px 8px;
      display:flex; flex-direction:column; gap:8px;
    }
    .article-item{
      text-decoration:none;
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start;
      padding:12px;
      margin:0 8px;
      border-radius:16px;
      border:1px solid rgba(16,61,42,.10);
      background: rgba(255,255,255,.72);
      transition: transform .22s, border-color .22s, box-shadow .22s;
    }
    .article-item:hover{transform: translateY(-2px); border-color:rgba(43,182,115,.30); box-shadow:0 16px 35px rgba(16,61,42,.12)}
    .article-item .t{
      min-width:0;
    }
    .article-item .t .title{
      font-weight:950; font-size:13.5px;
      display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
    }
    .article-item .t .meta{
      color:var(--muted); font-size:12.5px; font-weight:850; margin-top:6px;
    }
    .pill{
      flex:0 0 auto;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(43,182,115,.22);
      background: rgba(43,182,115,.10);
      color:rgba(11,90,68,.95);
      font-weight:900;
      font-size:12.5px;
    }

    .side-panel{
      border-radius:var(--radius);
      border:1px solid rgba(16,61,42,.12);
      background: rgba(255,255,255,.78);
      box-shadow:0 10px 25px rgba(16,61,42,.08);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .side-panel:before{
      content:"";
      position:absolute; inset:auto -80px -120px auto;
      width:240px; height:240px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(43,182,115,.22), transparent 60%);
      pointer-events:none;
    }
    .side-panel h3{margin:4px 0 10px; font-size:16px}
    .side-panel p{margin:0; color:rgba(19,35,28,.78); font-size:13.5px; line-height:1.85; position:relative}
    .tagcloud{
      margin-top:14px; display:flex; flex-wrap:wrap; gap:8px; position:relative;
    }
    .tagcloud .tag{background: rgba(255,255,255,.76)}
    .timeline{
      margin-top:14px; position:relative;
      border-left:2px solid rgba(43,182,115,.25);
      padding-left:14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .timeitem{
      display:flex; gap:10px; align-items:flex-start;
    }
    .timeitem .dot2{
      width:12px; height:12px; border-radius:50%;
      background: rgba(43,182,115,.95);
      box-shadow:0 0 0 6px rgba(43,182,115,.16);
      margin-top:4px;
      flex:0 0 auto;
    }
    .timeitem .content{
      min-width:0;
    }
    .timeitem .content .k{
      font-weight:950; font-size:13.5px; margin-bottom:5px;
    }
    .timeitem .content .v{
      color:var(--muted); font-size:12.8px; line-height:1.6; font-weight:850;
    }

    form{
      display:flex; flex-direction:column; gap:12px; margin-top:6px;
    }
    .form-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    label{display:flex; flex-direction:column; gap:7px; font-weight:900; color:rgba(19,35,28,.92); font-size:13px}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(16,61,42,.14);
      background: rgba(255,255,255,.80);
      color:rgba(19,35,28,.92);
      outline:none;
      transition: box-shadow .2s, border-color .2s, background .2s;
      font-size:14px;
    }
    textarea{min-height:120px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(43,182,115,.45);
      box-shadow: var(--focus);
      background: rgba(255,255,255,.92);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:6px;
    }
    .hint-text{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
      font-weight:850;
    }

    .case-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .case{
      border-radius:var(--radius);
      border:1px solid rgba(16,61,42,.12);
      background: rgba(255,255,255,.82);
      box-shadow:0 10px 25px rgba(16,61,42,.08);
      overflow:hidden;
      transition: transform .22s, box-shadow .22s, border-color .22s;
      display:flex; flex-direction:column;
    }
    .case:hover{transform: translateY(-3px); border-color:rgba(43,182,115,.28); box-shadow:0 18px 40px rgba(16,61,42,.12)}
    .media{
      padding:0;
      background: linear-gradient(180deg, rgba(230,247,238,.65), rgba(255,255,255,.76));
      border-bottom:1px solid rgba(16,61,42,.10);
    }
    .media img{
      width:100%;
      height:auto;
      max-height:220px;
      object-fit:cover;
      display:block;
    }
    .case-body{padding:14px 14px 16px 14px; display:flex; flex-direction:column; gap:10px}
    .case-body .title{
      font-weight:980; font-size:14.5px; letter-spacing:-.2px;
      margin:0;
    }
    .case-body .desc{
      margin:0;
      color:rgba(19,35,28,.78);
      font-size:13.5px; line-height:1.8;
    }
    .case-body .meta{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:auto;
    }
    .meta .chip{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,61,42,.12);
      background: rgba(255,255,255,.72);
      color:rgba(19,35,28,.86);
      font-weight:900;
      font-size:12.5px;
    }
    .meta .chip.green{
      border-color:rgba(43,182,115,.28);
      background: rgba(43,182,115,.10);
      color:rgba(11,90,68,.95);
    }

    footer{
      background: linear-gradient(180deg, rgba(245,251,247,.55), rgba(238,249,242,.95));
      border-top:1px solid rgba(16,61,42,.10);
      padding:18px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:16px;
      align-items:start;
    }
    .footer-card{
      border-radius:var(--radius);
      padding:16px;
      border:1px solid rgba(16,61,42,.12);
      background: rgba(255,255,255,.78);
      box-shadow:0 10px 25px rgba(16,61,42,.08);
    }
    .footer-card h3{margin:0 0 10px; font-size:15.5px}
    .footer-card p{margin:0; color:rgba(19,35,28,.78); font-size:13.5px; line-height:1.8}
    .footer-links{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    .footer-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(16,61,42,.12);
      background: rgba(255,255,255,.78);
      font-weight:900;
      color:rgba(19,35,28,.90);
      font-size:13px;
      transition: transform .2s, border-color .2s, box-shadow .2s;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .footer-links a:hover{transform: translateY(-2px); border-color:rgba(43,182,115,.28); box-shadow:0 14px 30px rgba(16,61,42,.12)}
    .copyright{
      margin-top:14px;
      color:var(--muted);
      font-size:12.5px;
      font-weight:850;
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .small-row{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      color:var(--muted);
      font-size:12.5px;
      font-weight:850;
    }
    .divider{
      width:1px; height:14px; background: rgba(16,61,42,.18);
    }

    .float-cta{
      position:fixed;
      right:14px; bottom:14px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:52px; height:52px; border-radius:18px;
      border:1px solid rgba(16,61,42,.14);
      background: rgba(255,255,255,.85);
      box-shadow: 0 18px 40px rgba(16,61,42,.15);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .2s, box-shadow .2s, border-color .2s, opacity .2s;
    }
    .float-btn:hover{transform: translateY(-2px); border-color:rgba(43,182,115,.30)}
    .float-btn:focus{outline:none; box-shadow: var(--shadow2), var(--focus)}
    .float-btn svg{width:22px; height:22px; color:rgba(15,63,49,.92)}
    .float-tip{
      margin-right:6px;
      padding:9px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(16,61,42,.12);
      box-shadow:0 16px 35px rgba(16,61,42,.12);
      color:rgba(19,35,28,.90);
      font-weight:900;
      font-size:12.5px;
      max-width:220px;
      transform-origin: right bottom;
      animation: floatIn .35s ease both;
    }
    @keyframes floatIn{from{opacity:0; transform: translateY(8px) scale(.98)} to{opacity:1; transform: translateY(0) scale(1)}}

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

    .anchors{
      scroll-margin-top:88px;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      .steps{grid-template-columns: repeat(2, 1fr)}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .pricing-grid{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .articles-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .two-col{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .menu{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      .float-cta{right:10px; bottom:10px}
      table{min-width:680px}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .card:hover, .metric:hover, .step:hover, .price-card:hover, .article-item:hover, .review:hover, .case:hover, .btn:hover{transform:none}
    }