:root{
      --bg0:#f6faf7;
      --bg1:#f0f7f1;
      --card:#ffffff;
      --text:#162019;
      --muted:#51615a;
      --muted2:#6c7a73;
      --line:rgba(22,32,25,.10);
      --line2:rgba(22,32,25,.14);
      --brand:#2ea86f;
      --brand2:#19a884;
      --mint:#62d39b;
      --mint2:#a8efd1;
      --accent:#0f5f44;
      --shadow: 0 16px 40px rgba(9, 35, 20, .08);
      --shadow2: 0 10px 24px rgba(9, 35, 20, .10);
      --radius:18px;
      --radius2:14px;
      --container: 1120px;
      --padX: 20px;
      --focus: 0 0 0 4px rgba(46,168,111,.18);
    }

    *{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(1100px 560px at 15% -10%, rgba(98,211,155,.25), transparent 55%),
        radial-gradient(900px 520px at 85% 0%, rgba(25,168,132,.18), transparent 52%),
        linear-gradient(180deg, var(--bg0), #ffffff 40%, #fbfffc);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    a:hover{opacity:.92}
    button, input, select, textarea{font:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }

    .skip-link{
      position:absolute; left:-999px; top:10px;
      background:var(--card); border:1px solid var(--line2);
      padding:10px 12px; border-radius:12px;
      color:var(--text); z-index:9999;
    }
    .skip-link:focus{left:12px; outline:none; box-shadow:var(--focus)}

    header{
      position:sticky; top:0; z-index:50;
      background: rgba(246,250,247,.70);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(22,32,25,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width: 180px;
    }
    .brand img{
      width:38px; height:38px; object-fit:contain;
      border-radius:12px;
      border:1px solid rgba(22,32,25,.10);
      background:#fff;
      padding:6px;
    }
    .brand .name{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .name strong{
      font-size:14px; letter-spacing:.2px;
    }
    .brand .name span{
      font-size:12px; color:var(--muted);
    }

    nav{
      display:flex; align-items:center; gap:16px;
      flex:1;
      justify-content:flex-end;
    }
    .nav-links{
      display:flex; align-items:center; gap:10px;
      flex-wrap:nowrap;
      overflow:auto;
      scrollbar-width:none;
    }
    .nav-links::-webkit-scrollbar{display:none}
    .nav-links a{
      padding:10px 10px;
      border-radius:12px;
      font-size:13px;
      color:rgba(22,32,25,.86);
      border:1px solid transparent;
      transition: background .15s ease, border-color .15s ease, transform .15s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(98,211,155,.14);
      border-color: rgba(46,168,111,.22);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
      margin-left:6px;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.8);
      color:var(--text);
      box-shadow: 0 8px 18px rgba(9, 35, 20, .06);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      border-color: rgba(46,168,111,.25);
      box-shadow: 0 14px 26px rgba(9, 35, 20, .10);
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn-primary{
      background: linear-gradient(180deg, rgba(46,168,111,1), rgba(25,168,132,.95));
      border-color: rgba(7, 85, 52, .30);
      color:#fff;
      box-shadow: 0 16px 34px rgba(25,168,132,.25);
    }
    .btn-primary:hover{
      box-shadow: 0 18px 40px rgba(25,168,132,.30);
    }
    .btn-ghost{
      background: rgba(255,255,255,.55);
    }

    .burger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(22,32,25,.12);
      background: rgba(255,255,255,.65);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .burger:hover{transform: translateY(-1px); border-color: rgba(46,168,111,.25)}
    .burger:focus{outline:none; box-shadow:var(--focus)}
    .burger i{
      width:18px; height:2px; background: rgba(22,32,25,.85); display:block; position:relative;
      border-radius:2px;
    }
    .burger i:before,.burger i:after{
      content:""; position:absolute; left:0; width:18px; height:2px; background: rgba(22,32,25,.85); border-radius:2px;
    }
    .burger i:before{top:-6px}
    .burger i:after{top:6px}

    .mobile-panel{
      display:none;
      padding: 0 0 14px 0;
    }
    .mobile-panel .panel{
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.75);
      border-radius:18px;
      padding:12px;
      box-shadow: var(--shadow2);
    }
    .mobile-panel a{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:14px;
      font-size:14px;
      color:rgba(22,32,25,.90);
      border:1px solid rgba(22,32,25,.08);
      background: rgba(255,255,255,.55);
      margin-bottom:10px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .mobile-panel a:last-child{margin-bottom:0}
    .mobile-panel a:hover{transform: translateY(-1px); border-color: rgba(46,168,111,.25); background: rgba(98,211,155,.12)}
    .mobile-panel .pill{
      font-size:12px; color: rgba(15,95,68,.95);
      background: rgba(46,168,111,.12);
      border:1px solid rgba(46,168,111,.22);
      padding:6px 10px; border-radius:999px;
      white-space:nowrap;
    }

    main{padding: 18px 0 0}

    .hero{
      position:relative;
      padding: 18px 0 22px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius: 26px;
      border:1px solid rgba(22,32,25,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.64)),
        radial-gradient(900px 260px at 20% 0%, rgba(98,211,155,.22), transparent 55%),
        radial-gradient(760px 240px at 85% 15%, rgba(25,168,132,.16), transparent 58%);
      box-shadow: 0 28px 60px rgba(9,35,20,.08);
      overflow:hidden;
      position:relative;
      padding: 22px 22px 18px;
      min-height: 360px;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(500px 160px at 20% 0%, rgba(46,168,111,.18), transparent 60%),
        radial-gradient(420px 140px at 80% 20%, rgba(25,168,132,.14), transparent 62%);
      pointer-events:none;
      filter: saturate(1.1);
    }
    .hero-inner{position:relative; z-index:2; display:flex; flex-direction:column; gap:14px; height:100%}
    .kicker{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    }
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(46,168,111,.25);
      background: rgba(98,211,155,.12);
      color: rgba(15,95,68,.98);
      font-size:13px;
      white-space:nowrap;
    }
    .dot{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(180deg, var(--mint), var(--brand));
      box-shadow: 0 0 0 4px rgba(46,168,111,.14);
    }
    .hero h1{
      margin:0;
      font-size: 34px;
      letter-spacing: -0.6px;
      line-height:1.12;
    }
    .hero p{
      margin:0;
      color: var(--muted);
      font-size: 15px;
      line-height:1.8;
      max-width: 62ch;
    }
    .hero-actions{
      display:flex; flex-wrap:wrap; gap:12px; margin-top: 4px; align-items:center;
    }
    .hero-meta{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:10px;
      margin-top:auto;
    }
    .mini-metric{
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.62);
      border-radius:16px;
      padding:12px 12px;
      display:flex; flex-direction:column; gap:6px;
      position:relative;
      overflow:hidden;
    }
    .mini-metric:after{
      content:"";
      position:absolute; right:-40px; top:-40px;
      width:120px; height:120px; border-radius:999px;
      background: radial-gradient(circle at 30% 30%, rgba(98,211,155,.35), transparent 60%);
      pointer-events:none;
    }
    .mini-metric strong{
      font-size:16px;
      letter-spacing: -.2px;
    }
    .mini-metric span{
      color:var(--muted2);
      font-size:12px;
      line-height:1.4;
    }

    .side-card{
      border-radius: 26px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 44px rgba(9,35,20,.07);
      padding: 18px;
      display:flex; flex-direction:column; gap:12px;
      overflow:hidden;
      position:relative;
      min-height: 360px;
    }
    .side-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(520px 220px at 15% 0%, rgba(98,211,155,.20), transparent 55%),
        radial-gradient(420px 210px at 100% 10%, rgba(25,168,132,.14), transparent 58%);
      pointer-events:none;
    }
    .side-inner{position:relative; z-index:2; display:flex; flex-direction:column; height:100%}
    .side-title{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .side-title h2{
      margin:0;
      font-size:16px;
      letter-spacing: -.2px;
    }
    .status{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(46,168,111,.22);
      background: rgba(98,211,155,.10);
      color: rgba(15,95,68,.98);
      font-size:12px;
      white-space:nowrap;
    }
    .pulse{
      width:10px; height:10px; border-radius:999px;
      background: var(--brand2);
      box-shadow: 0 0 0 0 rgba(25,168,132,.35);
      animation: pulse 1.8s ease-out infinite;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(25,168,132,.34)}
      70%{box-shadow:0 0 0 12px rgba(25,168,132,0)}
      100%{box-shadow:0 0 0 0 rgba(25,168,132,0)}
    }

    .countdown-block{
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.62);
      border-radius:18px;
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
      margin-top: 2px;
    }
    .countdown-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .countdown-top p{
      margin:0; color:var(--muted); font-size:13px; line-height:1.6;
    }
    .clock{
      display:flex; gap:10px; align-items:flex-end; flex-wrap:nowrap;
      justify-content:flex-end;
    }
    .time-unit{
      min-width:56px;
      text-align:center;
      border-radius:14px;
      border:1px solid rgba(22,32,25,.10);
      background: linear-gradient(180deg, rgba(98,211,155,.14), rgba(255,255,255,.62));
      padding:10px 10px 8px;
    }
    .time-unit strong{
      display:block; font-size:18px; letter-spacing: -.2px;
      margin-bottom:2px;
    }
    .time-unit span{
      font-size:11px; color:var(--muted2);
    }

    .phase-list{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top: 6px;
      flex:1;
    }
    .phase{
      display:flex; gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.58);
      transition: transform .15s ease, border-color .15s ease;
      align-items:flex-start;
    }
    .phase:hover{transform: translateY(-1px); border-color: rgba(46,168,111,.22)}
    .phase .badge{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(46,168,111,.12);
      border:1px solid rgba(46,168,111,.22);
      flex: 0 0 auto;
    }
    .phase .badge svg{display:block}
    .phase .text{
      display:flex; flex-direction:column; gap:4px;
      min-width:0;
    }
    .phase .text strong{
      font-size:13px; letter-spacing: -.1px;
    }
    .phase .text span{
      font-size:12px; color:var(--muted); line-height:1.5;
    }

    .section{
      padding: 34px 0;
    }
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:16px;
    }
    .section-title h2{
      margin:0;
      font-size: 22px;
      letter-spacing: -.35px;
    }
    .section-title p{
      margin:0; color:var(--muted); font-size:13px; line-height:1.6;
      max-width: 58ch;
    }

    .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{
      border:1px solid rgba(22,32,25,.10);
      border-radius: var(--radius);
      background: rgba(255,255,255,.70);
      box-shadow: 0 10px 28px rgba(9,35,20,.06);
      padding: 16px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{transform: translateY(-2px); box-shadow: var(--shadow2); border-color: rgba(46,168,111,.18)}
    .card h3{margin:10px 0 6px; font-size:15px; letter-spacing:-.15px}
    .card p{margin:0; color:var(--muted); font-size:13px; line-height:1.7}
    .icon{
      width:42px; height:42px; border-radius:16px;
      background: rgba(46,168,111,.12);
      border:1px solid rgba(46,168,111,.22);
      display:flex; align-items:center; justify-content:center;
    }
    .icon svg{display:block}
    .chip-row{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:12px;
    }
    .chip{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.55);
      color: rgba(22,32,25,.86);
      white-space:nowrap;
    }

    .process{
      display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px;
      align-items:stretch;
    }
    .step{
      padding:16px 16px 14px;
      border-radius: 22px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.66);
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease;
      min-height: 156px;
    }
    .step:hover{transform: translateY(-2px); border-color: rgba(46,168,111,.20)}
    .step:before{
      content:"";
      position:absolute; right:-40px; top:-40px;
      width:120px; height:120px; border-radius:999px;
      background: radial-gradient(circle at 30% 30%, rgba(98,211,155,.22), transparent 60%);
      pointer-events:none;
    }
    .step .num{
      width:34px; height:34px;
      border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(46,168,111,.25);
      background: rgba(98,211,155,.10);
      color: rgba(15,95,68,.98);
      font-weight:700;
      position:relative;
      z-index:2;
    }
    .step h3{margin:10px 0 6px; position:relative; z-index:2; font-size:14px}
    .step p{margin:0; color:var(--muted); font-size:12.8px; line-height:1.7; position:relative; z-index:2}

    .compare-wrap{
      border-radius: 26px;
      border:1px solid rgba(22,32,25,.10);
      background:
        radial-gradient(900px 420px at 20% 0%, rgba(98,211,155,.20), transparent 55%),
        rgba(255,255,255,.68);
      box-shadow: 0 22px 56px rgba(9,35,20,.07);
      overflow:hidden;
    }
    .compare-top{
      padding: 18px 18px 14px;
      display:flex; flex-wrap:wrap; align-items:flex-start; justify-content:space-between; gap:14px;
      border-bottom:1px solid rgba(22,32,25,.10);
    }
    .rating{
      display:flex; align-items:flex-start; gap:12px;
      min-width: 260px;
    }
    .stars{
      width:56px; height:56px; border-radius:20px;
      background: rgba(46,168,111,.12);
      border:1px solid rgba(46,168,111,.24);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .stars svg{display:block}
    .rating .txt strong{
      font-size:16px; letter-spacing:-.2px;
      display:block;
    }
    .rating .txt span{
      color:var(--muted); font-size:13px; line-height:1.5;
      display:block; margin-top:4px;
    }
    .score-pill{
      display:flex; flex-direction:column; gap:6px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.6);
      border-radius:18px;
      padding:12px 14px;
      min-width: 210px;
    }
    .score-pill .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .score-pill .label{
      font-size:12.5px; color:var(--muted);
    }
    .score-pill .value{
      font-size:26px; font-weight:800; letter-spacing:-.6px;
      color: rgba(15,95,68,.98);
    }
    .score-pill .sub{
      font-size:12px; color:var(--muted2); line-height:1.6;
    }

    .compare-table{
      width:100%;
      border-collapse: separate;
      border-spacing: 0;
      font-size:13px;
    }
    .compare-table th, .compare-table td{
      padding:12px 14px;
      border-bottom:1px solid rgba(22,32,25,.08);
      vertical-align:top;
    }
    .compare-table th{
      text-align:left;
      color: rgba(22,32,25,.88);
      background: rgba(255,255,255,.35);
      font-weight:700;
      position:sticky;
      top:0;
      z-index:1;
    }
    .compare-table td{color: var(--muted)}
    .good{
      color: rgba(15,95,68,.98) !important;
      font-weight:700;
    }
    .muted-strong{
      color: rgba(22,32,25,.88);
      font-weight:700;
    }

    .table-wrap{
      overflow:auto;
      max-width:100%;
      -webkit-overflow-scrolling:touch;
    }

    .mobile-scroll-hint{
      display:none;
      padding:10px 14px 0;
      color:var(--muted2);
      font-size:12px;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .timeline .line-card{
      padding:18px;
    }
    .timeline ol{
      margin:0;
      padding-left:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .titem{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.58);
    }
    .titem .pin{
      width:34px; height:34px; border-radius:14px;
      background: rgba(98,211,155,.12);
      border:1px solid rgba(46,168,111,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      color: rgba(15,95,68,.98);
      font-weight:800;
      font-size:13px;
    }
    .titem .content strong{display:block; font-size:13.5px; letter-spacing:-.1px}
    .titem .content span{display:block; margin-top:4px; color:var(--muted); font-size:12.8px; line-height:1.6}

    .clients{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .quote{
      padding:16px;
      border-radius: 22px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 14px 30px rgba(9,35,20,.05);
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease;
      min-height: 164px;
    }
    .quote:hover{transform: translateY(-2px); border-color: rgba(46,168,111,.18)}
    .quote:before{
      content:"“";
      position:absolute; right:14px; top:-2px;
      font-size:64px;
      color: rgba(46,168,111,.12);
      font-weight:900;
      pointer-events:none;
    }
    .quote .who{
      display:flex; align-items:center; gap:10px;
      margin-top: 10px;
    }
    .avatar{
      width:38px; height:38px; border-radius:16px;
      border:1px solid rgba(22,32,25,.10);
      background: linear-gradient(180deg, rgba(98,211,155,.20), rgba(255,255,255,.75));
      display:flex; align-items:center; justify-content:center;
      font-weight:800; color: rgba(15,95,68,.98);
    }
    .who strong{display:block; font-size:13.5px; letter-spacing:-.1px}
    .who span{display:block; margin-top:2px; color:var(--muted2); font-size:12px; line-height:1.4}
    .quote p{
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.75;
      padding-right: 6px;
    }
    .badge-mini{
      display:inline-flex; align-items:center; gap:8px;
      border-radius:999px;
      border:1px solid rgba(46,168,111,.22);
      background: rgba(98,211,155,.12);
      color: rgba(15,95,68,.98);
      padding:8px 10px;
      font-size:12px;
      margin-bottom:10px;
      white-space:nowrap;
    }

    .gallery{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:14px;
      align-items:stretch;
    }
    .gallery .big{
      padding:18px;
      border-radius: 26px;
    }
    .gallery .big .row{
      display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
    }
    .feature-list{
      display:grid; gap:10px;
      grid-template-columns: 1fr 1fr;
      width: min(520px, 100%);
      margin-top: 6px;
    }
    .fitem{
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.58);
      border-radius:18px;
      padding:12px 12px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .fitem .sicon{
      width:34px; height:34px; border-radius:14px;
      background: rgba(46,168,111,.12);
      border:1px solid rgba(46,168,111,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .fitem .sicon svg{display:block}
    .fitem .stxt strong{display:block; font-size:13.5px; letter-spacing:-.1px}
    .fitem .stxt span{display:block; margin-top:4px; color:var(--muted); font-size:12.8px; line-height:1.6}

    .side-stack{
      display:flex; flex-direction:column; gap:14px;
    }
    .poster-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .img-card{
      border-radius: 26px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.66);
      overflow:hidden;
      box-shadow: 0 18px 44px rgba(9,35,20,.06);
      padding: 12px;
    }
    .img-wrap{
      width:100%;
      border-radius: 20px;
      overflow:hidden;
      border:1px solid rgba(22,32,25,.10);
      background: #fff;
    }
    .img-wrap img{
      width:100%;
      height:auto;
      display:block;
      object-fit:contain;
    }
    .img-card .cap{
      padding:10px 6px 2px;
      color: var(--muted);
      font-size:12.8px;
      line-height:1.6;
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .a-card{
      border-radius: 22px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.66);
      padding: 16px;
      transition: transform .18s ease, border-color .18s ease;
      min-height: 164px;
      display:flex; flex-direction:column; gap:10px;
    }
    .a-card:hover{transform: translateY(-2px); border-color: rgba(46,168,111,.18)}
    .a-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .a-pill{
      font-size:12px;
      border:1px solid rgba(46,168,111,.22);
      background: rgba(98,211,155,.12);
      color: rgba(15,95,68,.98);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .a-card h3{
      margin:0;
      font-size:14.5px;
      letter-spacing:-.2px;
      line-height:1.45;
    }
    .a-card p{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.7;
    }
    .a-card .linkrow{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding-top:6px;
      border-top:1px solid rgba(22,32,25,.08);
    }
    .a-card .linkrow a{
      display:inline-flex; align-items:center; gap:8px;
      color: rgba(15,95,68,.98);
      font-weight:700;
      font-size:13px;
      padding:8px 10px;
      border-radius:14px;
      background: rgba(98,211,155,.12);
      border:1px solid rgba(46,168,111,.20);
      transition: transform .15s ease;
      white-space:nowrap;
    }
    .a-card .linkrow a:hover{transform: translateY(-1px)}
    .a-card .linkrow span{
      color:var(--muted2);
      font-size:12px;
    }

    form .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{display:block; font-size:12.8px; color: rgba(22,32,25,.86); margin-bottom:6px}
    .field{
      border:1px solid rgba(22,32,25,.12);
      border-radius:16px;
      background: rgba(255,255,255,.72);
      padding:12px 12px;
      width:100%;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    .field:focus{
      outline:none;
      border-color: rgba(46,168,111,.35);
      box-shadow: var(--focus);
      background:#fff;
    }
    textarea.field{min-height: 110px; resize: vertical}
    .form-actions{
      display:flex; gap:12px; align-items:center; justify-content:space-between;
      margin-top: 12px;
      flex-wrap:wrap;
    }
    .form-note{
      color:var(--muted2);
      font-size:12px;
      line-height:1.6;
      max-width: 52ch;
    }
    .toast{
      position:fixed; left:50%; bottom:18px;
      transform: translateX(-50%) translateY(20px);
      background: rgba(255,255,255,.9);
      border:1px solid rgba(22,32,25,.14);
      box-shadow: 0 18px 46px rgba(9,35,20,.14);
      border-radius:18px;
      padding:12px 14px;
      z-index:9999;
      opacity:0; pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
      max-width: calc(100% - 26px);
    }
    .toast.show{
      opacity:1; pointer-events:auto;
      transform: translateX(-50%) translateY(0);
    }
    .toast strong{display:block; font-size:13.5px}
    .toast span{display:block; margin-top:4px; color:var(--muted); font-size:12.8px; line-height:1.5}

    .faq-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq{
      border-radius: 26px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.68);
      padding: 10px;
    }
    details.faq-item{
      border-radius: 18px;
      border:1px solid rgba(22,32,25,.08);
      background: rgba(255,255,255,.62);
      overflow:hidden;
      margin: 10px;
      transition: border-color .15s ease, transform .15s ease;
    }
    details.faq-item[open]{
      border-color: rgba(46,168,111,.24);
      transform: translateY(-1px);
    }
    details.faq-item summary{
      cursor:pointer;
      list-style:none;
      padding: 14px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      user-select:none;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .qtxt{
      font-weight:800;
      letter-spacing:-.15px;
      font-size:13.5px;
      color: rgba(22,32,25,.92);
      line-height:1.5;
    }
    .chev{
      width:32px; height:32px; border-radius:14px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(98,211,155,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      margin-top:-2px;
    }
    details[open] .chev{
      transform: rotate(180deg);
      border-color: rgba(46,168,111,.26);
      background: rgba(46,168,111,.12);
    }
    .ans{
      padding: 0 14px 14px 14px;
      color: var(--muted);
      font-size: 12.9px;
      line-height: 1.75;
      border-top: 1px solid rgba(22,32,25,.08);
    }

    .tags-cloud{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .cloud-tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.60);
      font-size:12.7px;
      color: rgba(22,32,25,.86);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .cloud-tag:hover{
      transform: translateY(-1px);
      border-color: rgba(46,168,111,.22);
      background: rgba(98,211,155,.12);
    }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .net{
      border-radius: 22px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.66);
      padding:16px;
      min-height: 160px;
    }
    .net h3{margin:10px 0 6px; font-size:14.5px}
    .net ul{margin:0; padding-left:18px; color:var(--muted); font-size:12.9px; line-height:1.8}
    .net li{margin:2px 0}

    .footer{
      margin-top: 22px;
      background: #0b2417;
      color: rgba(255,255,255,.92);
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer .container{padding: 26px var(--padX) 18px}
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:start;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footer-brand img{
      width:46px; height:46px; object-fit:contain;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.05);
      padding:8px;
    }
    .footer-brand strong{
      font-size:15.5px;
      display:block;
      letter-spacing:-.2px;
    }
    .footer-brand span{
      display:block;
      margin-top:6px;
      color: rgba(255,255,255,.75);
      font-size:12.8px;
      line-height:1.7;
      max-width: 62ch;
    }
    .footer-links{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px 14px;
    }
    .footer-links a{
      color: rgba(255,255,255,.86);
      font-size:13px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      transition: transform .15s ease, border-color .15s ease;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .footer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(98,211,155,.35);
    }
    .footer-bottom{
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.10);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .copyright{
      color: rgba(255,255,255,.72);
      font-size:12.4px;
      line-height:1.6;
    }
    .friend{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center; justify-content:flex-end;
    }
    .friend a{
      color: rgba(255,255,255,.88);
      font-size:12.6px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.04);
      transition: transform .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .friend a:hover{
      transform: translateY(-1px);
      border-color: rgba(98,211,155,.34);
    }

    .float-qa{
      position:fixed;
      right: 16px;
      bottom: 16px;
      z-index: 80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-card{
      border-radius: 18px;
      border:1px solid rgba(22,32,25,.12);
      background: rgba(255,255,255,.84);
      box-shadow: 0 18px 46px rgba(9,35,20,.18);
      overflow:hidden;
      width: 200px;
      transform-origin: right bottom;
      transform: translateY(12px) scale(.98);
      opacity:0;
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .float-card.show{
      opacity:1;
      transform: translateY(0) scale(1);
      pointer-events:auto;
    }
    .float-card .top{
      padding: 10px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      background: linear-gradient(180deg, rgba(98,211,155,.18), rgba(255,255,255,.70));
      border-bottom: 1px solid rgba(22,32,25,.10);
    }
    .float-card .top strong{font-size:13px; letter-spacing:-.15px}
    .close-btn{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(22,32,25,.10);
      background: rgba(255,255,255,.75);
      cursor:pointer;
    }
    .close-btn:hover{border-color: rgba(46,168,111,.25)}
    .float-card .body{padding:12px; display:flex; flex-direction:column; gap:10px}
    .qr-wrap{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(22,32,25,.10);
      background:#fff;
      padding:10px;
      display:flex; align-items:center; justify-content:center;
    }
    .qr-wrap img{
      width:100%; height:auto;
      display:block;
      border-radius:10px;
    }
    .float-card .hint{
      font-size:12.6px;
      color:var(--muted);
      line-height:1.6;
      margin-top:-2px;
    }

    .float-btn{
      width:52px; height:52px;
      border-radius:18px;
      border:1px solid rgba(22,32,25,.12);
      background: linear-gradient(180deg, rgba(46,168,111,1), rgba(25,168,132,.95));
      color:#fff;
      box-shadow: 0 18px 44px rgba(25,168,132,.32);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      filter: saturate(1.05);
      box-shadow: 0 22px 56px rgba(25,168,132,.35);
    }
    .float-btn:focus{outline:none; box-shadow:var(--focus)}

    .backtop{
      width:52px; height:52px;
      border-radius:18px;
      border:1px solid rgba(22,32,25,.12);
      background: rgba(255,255,255,.85);
      box-shadow: 0 16px 36px rgba(9,35,20,.14);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, border-color .15s ease;
    }
    .backtop:hover{transform: translateY(-2px); border-color: rgba(46,168,111,.25)}
    .backtop:focus{outline:none; box-shadow:var(--focus)}

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr}
      .hero-card, .side-card{min-height:unset}
      .hero h1{font-size: 30px}
      .hero-meta{grid-template-columns: 1fr; }
      .process{grid-template-columns: 1fr 1fr}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .clients{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .faq-wrap{grid-template-columns: 1fr}
      .timeline{grid-template-columns: 1fr}
      .network-grid{grid-template-columns: 1fr}
      .gallery{grid-template-columns: 1fr}
      .feature-list{grid-template-columns: 1fr}
      .mobile-panel{display:block}
      nav .nav-links{display:none}
      nav .nav-cta{display:none}
      .burger{display:flex}
    }

    @media (max-width: 520px){
      .hero-card{padding:18px}
      .side-card{padding:14px}
      .hero h1{font-size: 26px}
      .time-unit{min-width:52px}
      .process{grid-template-columns: 1fr}
      .feature-list{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .footer-links{grid-template-columns: 1fr}
      .friend{justify-content:flex-start}
      .mobile-scroll-hint{display:block}
      .compare-top{align-items:flex-start}
      .score-pill{min-width:unset; width:100%}
    }