:root{
      --bg0:#f7faf7;
      --bg1:#ffffff;
      --text:#0f172a;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(17, 24, 39, .10);
      --shadow:0 10px 30px rgba(17, 24, 39, .08);
      --shadow2:0 18px 50px rgba(17, 24, 39, .12);
      --green:#22c55e;
      --green2:#16a34a;
      --lime:#a3ff12;
      --brand:#18c764;
      --brand2:#0aa34b;
      --chip:rgba(22, 163, 74, .10);
      --chip2:rgba(34, 197, 94, .14);
      --card:#ffffff;
      --radius:18px;
      --radius2:26px;
      --max:1180px;
      --pad:18px;
      --focus: 0 0 0 3px rgba(34, 197, 94, .25);
      --danger:#ef4444;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Apple Color Emoji", "Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(900px 420px at 18% -10%, rgba(34, 197, 94, .18), transparent 55%),
        radial-gradient(780px 360px at 85% 0%, rgba(163, 255, 18, .14), transparent 55%),
        linear-gradient(180deg, var(--bg0) 0%, #ffffff 52%, #f7faf7 100%);
    }

    a{ color:inherit; text-decoration:none; }
    button, input, select, textarea{ font:inherit; }
    img{ max-width:100%; height:auto; display:block; }

    .container{
      width:100%;
      max-width:var(--max);
      padding:0 var(--pad);
      margin:0 auto;
    }

    .skip-link{
      position:absolute; left:-9999px; top:10px;
      background:#0b1220; color:#fff;
      padding:10px 14px; border-radius:999px; z-index:1000;
    }
    .skip-link:focus{ left:var(--pad); outline:none; }

    /* Header */
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(247, 250, 247, .72);
      border-bottom: 1px solid rgba(17,24,39,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .brand-badge{
      width:40px; height:40px; border-radius:14px;
      background:
        radial-gradient(12px 12px at 28% 28%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
        linear-gradient(145deg, rgba(34,197,94,.18), rgba(34,197,94,.05)),
        linear-gradient(145deg, #22c55e, #0ea55a);
      box-shadow: 0 10px 28px rgba(34,197,94,.22);
      display:grid; place-items:center;
      border:1px solid rgba(16,185,129,.25);
      flex:0 0 auto;
      position:relative;
      overflow:hidden;
    }
    .brand-badge:after{
      content:"";
      position:absolute; inset:-40px -40px auto auto;
      width:90px; height:90px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), rgba(255,255,255,0) 60%);
      transform: rotate(20deg);
      pointer-events:none;
    }
    .brand-badge svg{ width:20px; height:20px; }
    .brand-text{
      display:flex; flex-direction:column; line-height:1.15;
    }
    .brand-text strong{ font-size:14px; letter-spacing:.2px; }
    .brand-text span{ font-size:12px; color:var(--muted2); }

    .nav-actions{
      display:flex; align-items:center; gap:10px;
    }
    .nav-links{
      display:flex; align-items:center; gap:18px;
      padding:0; margin:0; list-style:none;
      flex-wrap:wrap;
    }
    .nav-links a{
      font-size:13px; color:rgba(15,23,42,.82);
      padding:8px 10px; border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }
    .nav-links a:hover{
      background: rgba(34,197,94,.08);
      border-color: rgba(34,197,94,.18);
      transform: translateY(-1px);
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:11px 14px;
      border:1px solid rgba(16,185,129,.30);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{ outline:none; box-shadow: var(--focus); }
    .btn:active{ transform: translateY(1px); }
    .btn-primary{
      background: linear-gradient(135deg, #1fd36a 0%, #12b76a 40%, #0aa34b 100%);
      color:#062012;
      border-color: rgba(6, 95, 70, .25);
      box-shadow: 0 14px 34px rgba(16,185,129,.20);
    }
    .btn-primary .btn-ic{
      width:18px; height:18px; border-radius:7px;
      background: rgba(255,255,255,.35);
      display:grid; place-items:center;
      border:1px solid rgba(255,255,255,.45);
    }
    .btn-ghost{
      background: rgba(255,255,255,.7);
      border-color: rgba(17,24,39,.10);
      color: rgba(15,23,42,.9);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
    }
    .btn-ghost:hover{
      border-color: rgba(34,197,94,.20);
      box-shadow: 0 18px 40px rgba(17,24,39,.08);
      transform: translateY(-1px);
    }

    .hamburger{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 12px 30px rgba(17,24,39,.06);
      cursor:pointer;
      align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .hamburger:active{ transform: translateY(1px); }
    .hamburger:focus{ outline:none; box-shadow: var(--focus); }
    .hamburger span{
      width:18px; height:2px; background: rgba(15,23,42,.82);
      position:relative; display:block;
    }
    .hamburger span:before, .hamburger span:after{
      content:""; position:absolute; left:0; width:18px; height:2px;
      background: rgba(15,23,42,.82);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:before{ top:-6px; }
    .hamburger span:after{ top:6px; }

    .mobile-drawer{
      display:none;
      border-top: 1px solid rgba(17,24,39,.08);
      background: rgba(247,250,247,.9);
    }
    .mobile-drawer-inner{
      padding:12px 0 16px;
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-drawer-inner a{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.65);
      color: rgba(15,23,42,.9);
      transition: border-color .2s ease, transform .2s ease;
      font-size:14px;
    }
    .mobile-drawer-inner a:hover{
      border-color: rgba(34,197,94,.22);
      transform: translateY(-1px);
    }

    /* Hero */
    .hero{
      position:relative;
      overflow:hidden;
      padding:34px 0 16px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-main{
      border-radius:var(--radius2);
      background:
        radial-gradient(900px 260px at 15% 10%, rgba(34,197,94,.22), transparent 60%),
        radial-gradient(600px 240px at 90% 18%, rgba(163,255,18,.14), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.65) 100%);
      border: 1px solid rgba(17,24,39,.08);
      box-shadow: var(--shadow);
      padding:26px 22px;
      position:relative;
    }
    .hero-main:before{
      content:"";
      position:absolute; inset:-2px auto auto -2px;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.32), rgba(34,197,94,0) 62%);
      pointer-events:none;
      filter: blur(2px);
    }

    .kicker{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .kicker .pill{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(34,197,94,.12);
      border: 1px solid rgba(34,197,94,.20);
      color: rgba(6,95,70,.95);
      font-size:12px;
      letter-spacing:.2px;
      display:inline-flex; align-items:center; gap:8px;
    }
    .dot{
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(180deg, #22c55e, #0ea55a);
      box-shadow: 0 0 0 3px rgba(34,197,94,.14);
    }

    h1{
      margin:0 0 10px;
      font-size:32px;
      line-height:1.12;
      letter-spacing:-.6px;
    }
    .lead{
      margin:0 0 16px;
      color: rgba(15,23,42,.78);
      font-size:15px;
      line-height:1.7;
      max-width:64ch;
    }
    .hero-cta{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin:18px 0 10px;
    }
    .btn-link{
      display:inline-flex; align-items:center; gap:10px;
      font-size:14px;
      color: rgba(15,23,42,.86);
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.58);
      box-shadow: 0 12px 30px rgba(17,24,39,.05);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .btn-link:hover{
      transform: translateY(-1px);
      border-color: rgba(34,197,94,.22);
      background: rgba(255,255,255,.75);
    }
    .btn-link:focus{ outline:none; box-shadow: var(--focus); }

    .hero-highlights{
      margin-top:14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .chip{
      padding:9px 10px;
      border-radius:14px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(17,24,39,.08);
      color: rgba(15,23,42,.85);
      display:flex; align-items:center; gap:9px;
      min-width: 170px;
    }
    .chip svg{ width:16px; height:16px; }
    .chip strong{ font-size:13px; }
    .chip span{ display:block; font-size:12px; color: var(--muted2); margin-top:2px; }

    .hero-side{
      border-radius:var(--radius2);
      background:
        linear-gradient(180deg, rgba(34,197,94,.10) 0%, rgba(255,255,255,.55) 100%);
      border: 1px solid rgba(17,24,39,.08);
      box-shadow: var(--shadow);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      position:relative;
      overflow:hidden;
    }
    .hero-side:after{
      content:"";
      position:absolute;
      right:-80px; top:-90px;
      width:220px; height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.25), rgba(34,197,94,0) 65%);
      pointer-events:none;
      filter: blur(3px);
    }

    .mini-title{
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
    }
    .mini-title h2{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
      color: rgba(15,23,42,.88);
    }
    .badge-live{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border: 1px solid rgba(34,197,94,.22);
      background: rgba(34,197,94,.10);
      color: rgba(6,95,70,.95);
      font-size:12px;
      white-space:nowrap;
    }
    .badge-live i{
      width:8px; height:8px; border-radius:50%;
      background:#22c55e;
      display:inline-block;
      box-shadow:0 0 0 3px rgba(34,197,94,.18);
      animation:pulse 1.6s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{ transform:scale(1); opacity:1; }
      50%{ transform:scale(1.25); opacity:.75; }
    }

    .stats-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .stat{
      border-radius:16px;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(17,24,39,.08);
      padding:14px 12px;
      transition: transform .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .stat:before{
      content:"";
      position:absolute; inset:-2px auto auto -2px;
      width:78px; height:78px;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.22), rgba(34,197,94,0) 60%);
      pointer-events:none;
    }
    .stat:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .stat .num{
      font-weight:800;
      font-size:18px;
      letter-spacing:-.3px;
    }
    .stat .lbl{
      margin-top:6px;
      color: var(--muted2);
      font-size:12px;
      line-height:1.4;
    }

    .side-callout{
      border-radius:16px;
      padding:14px 12px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(17,24,39,.08);
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .call-ic{
      width:38px; height:38px; border-radius:14px;
      display:grid; place-items:center;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.18);
      flex:0 0 auto;
    }
    .side-callout strong{
      display:block;
      font-size:13px;
      margin-top:2px;
    }
    .side-callout span{
      display:block;
      margin-top:4px;
      font-size:12px;
      color: var(--muted2);
      line-height:1.5;
    }

    /* Section base */
    main{ padding:10px 0 0; }
    section{
      padding:34px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
      line-height:1.25;
    }
    .section-head p{
      margin:0;
      color: rgba(15,23,42,.72);
      font-size:14px;
      line-height:1.7;
      max-width:60ch;
    }

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

    .card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.08);
      border-radius: var(--radius);
      box-shadow: 0 12px 30px rgba(17,24,39,.05);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .card:after{
      content:"";
      position:absolute;
      inset:auto -60px -70px auto;
      width:180px; height:180px;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.16), rgba(34,197,94,0) 62%);
      pointer-events:none;
    }
    .card h3{
      margin:0 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color: rgba(15,23,42,.72);
      line-height:1.7;
      font-size:13px;
    }

    .list{
      margin:0; padding-left:18px;
      color: rgba(15,23,42,.75);
      line-height:1.8;
      font-size:13px;
    }

    /* Service cards */
    .service-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .service-left .tags{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .tag{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.18);
      color: rgba(6,95,70,.95);
      font-size:12px;
      white-space:nowrap;
    }

    .cap-grid{
      display:grid; grid-template-columns: 1fr;
      gap:12px;
    }
    .cap{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 14px;
      border-radius:16px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(17,24,39,.08);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .cap:hover{
      transform: translateY(-2px);
      border-color: rgba(34,197,94,.20);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .cap .ic{
      width:42px; height:42px; border-radius:16px;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.18);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .cap strong{ display:block; font-size:14px; margin-top:1px; }
    .cap span{ display:block; margin-top:5px; font-size:12px; color: var(--muted2); line-height:1.6; }

    /* Steps */
    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .step{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.62) 100%);
      box-shadow: 0 12px 30px rgba(17,24,39,.05);
      position:relative;
      overflow:hidden;
      min-height: 190px;
    }
    .step .n{
      width:34px; height:34px; border-radius:14px;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.20);
      display:grid; place-items:center;
      font-weight:800;
      color: rgba(6,95,70,.95);
      margin-bottom:10px;
    }
    .step h3{ margin:0 0 8px; font-size:15px; }
    .step p{ margin:0; color: rgba(15,23,42,.72); font-size:13px; line-height:1.7; }
    .step:after{
      content:"";
      position:absolute; inset:auto -70px -85px auto;
      width:200px; height:200px;
      background: radial-gradient(circle at 30% 30%, rgba(163,255,18,.16), rgba(163,255,18,0) 62%);
      pointer-events:none;
    }

    /* Compare table */
    .compare-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .compare-head{
      padding:18px 18px 10px;
      border-bottom:1px solid rgba(17,24,39,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
    }
    .compare-head h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .compare-head p{
      margin:6px 0 0;
      color: rgba(15,23,42,.72);
      font-size:13px;
      line-height:1.7;
      max-width:64ch;
    }
    .compare-meta{
      display:flex; flex-direction:column; align-items:flex-end; gap:10px;
      min-width:220px;
    }
    .rating{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(34,197,94,.20);
      background: rgba(34,197,94,.10);
    }
    .stars{
      display:flex; gap:3px;
    }
    .stars svg{ width:16px; height:16px; }
    .rating b{
      font-size:15px;
    }
    .rating span{
      font-size:12px; color: rgba(6,95,70,.95);
      margin-left:2px;
    }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width: 760px;
    }
    .table-wrap{
      overflow:auto;
    }
    .compare-table th, .compare-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      font-size:13px;
      line-height:1.7;
      white-space:nowrap;
    }
    .compare-table th{
      background: rgba(34,197,94,.08);
      color: rgba(15,23,42,.92);
      font-weight:700;
      position:sticky;
      top:0;
      z-index:1;
    }
    .best{
      color: rgba(6,95,70,.98);
      font-weight:800;
    }
    .check{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.18);
      color: rgba(6,95,70,.95);
      font-weight:700;
      white-space:nowrap;
    }
    .minus{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(148,163,184,.16);
      border:1px solid rgba(148,163,184,.28);
      color: rgba(51,65,85,.95);
      font-weight:700;
      white-space:nowrap;
    }
    .compare-foot{
      padding:14px 18px 18px;
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
    }
    .compare-foot .note{
      color: rgba(15,23,42,.68);
      font-size:12px;
      line-height:1.7;
      max-width:72ch;
    }

    /* Timeline & network */
    .network-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .time-line{
      display:grid; gap:12px;
    }
    .time-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 14px;
      border-radius:16px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(17,24,39,.08);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .time-item:hover{
      transform: translateY(-2px);
      border-color: rgba(34,197,94,.20);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .time-dot{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(180deg, #22c55e, #0ea55a);
      margin-top:6px;
      box-shadow:0 0 0 4px rgba(34,197,94,.14);
      flex:0 0 auto;
    }
    .time-item strong{ display:block; font-size:14px; }
    .time-item span{ display:block; margin-top:6px; color: var(--muted2); font-size:12px; line-height:1.6; }

    .matrix{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
      padding:16px;
      box-shadow: var(--shadow);
    }
    .matrix h3{ margin:0 0 10px; font-size:16px; }
    .matrix .row{
      display:flex; gap:12px; flex-wrap:wrap;
    }
    .region{
      flex:1 1 220px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.66);
      padding:12px;
      min-width: 210px;
    }
    .region b{ display:block; font-size:14px; }
    .region span{ display:block; margin-top:6px; color: var(--muted2); font-size:12px; line-height:1.6; }

    /* Case center */
    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case{
      border-radius: var(--radius);
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.08);
      box-shadow: 0 12px 30px rgba(17,24,39,.05);
      overflow:hidden;
      display:flex;
      flex-direction:column;
    }
    .case-top{
      padding:16px;
      position:relative;
      min-height: 120px;
      background:
        radial-gradient(380px 140px at 20% 0%, rgba(34,197,94,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.55));
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .case-top .type{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(34,197,94,.18);
      background: rgba(34,197,94,.10);
      color: rgba(6,95,70,.95);
      font-size:12px;
      font-weight:800;
    }
    .case h3{
      margin:12px 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .case p{
      margin:0;
      color: rgba(15,23,42,.72);
      font-size:13px;
      line-height:1.7;
    }
    .case-bottom{
      padding:14px 16px 16px;
      display:flex; flex-direction:column; gap:10px;
    }
    .case-bottom .meta{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .mchip{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.65);
      font-size:12px;
      color: rgba(15,23,42,.82);
    }

    /* Article list */
    .article-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .article{
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 12px 30px rgba(17,24,39,.05);
      padding:14px 14px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .article:hover{
      transform: translateY(-2px);
      border-color: rgba(34,197,94,.20);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
    }
    .article .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .article .cat{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(34,197,94,.18);
      background: rgba(34,197,94,.10);
      color: rgba(6,95,70,.95);
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .article .date{
      color: var(--muted2);
      font-size:12px;
      white-space:nowrap;
    }
    .article h3{
      margin:0 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
      line-height:1.4;
    }
    .article p{
      margin:0;
      color: rgba(15,23,42,.72);
      font-size:13px;
      line-height:1.7;
    }
    .article a.readmore{
      margin-top:10px;
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.58);
      transition: transform .15s ease, border-color .2s ease, background .15s ease;
      font-size:13px;
      color: rgba(15,23,42,.88);
      width:fit-content;
    }
    .article a.readmore:hover{
      transform: translateY(-1px);
      border-color: rgba(34,197,94,.22);
      background: rgba(255,255,255,.75);
    }

    /* FAQ */
    .faq-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      padding:8px;
    }
    details.faq{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.66);
      margin:10px 8px;
      overflow:hidden;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    details.faq[open]{
      border-color: rgba(34,197,94,.22);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
      transform: translateY(-2px);
    }
    summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      user-select:none;
    }
    summary::-webkit-details-marker{ display:none; }
    .q{
      display:flex; gap:12px; align-items:flex-start;
    }
    .q .qmark{
      width:34px; height:34px; border-radius:14px;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.20);
      display:grid; place-items:center;
      color: rgba(6,95,70,.95);
      font-weight:900;
      flex:0 0 auto;
      margin-top:1px;
    }
    .q b{
      display:block; font-size:14px; line-height:1.5;
      letter-spacing:-.2px;
    }
    .chev{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.55);
      display:grid; place-items:center;
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease;
      margin-top:1px;
    }
    details[open] .chev{ transform: rotate(180deg); border-color: rgba(34,197,94,.24); }
    .ans{
      padding:0 14px 14px;
      color: rgba(15,23,42,.72);
      font-size:13px;
      line-height:1.8;
    }

    /* Comments */
    .review-grid{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review{
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 30px rgba(17,24,39,.05);
      padding:16px;
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .review:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
      border-color: rgba(34,197,94,.20);
    }
    .review:before{
      content:"";
      position:absolute; inset:-90px -90px auto auto;
      width:180px; height:180px;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.18), rgba(34,197,94,0) 62%);
      pointer-events:none;
    }
    .review .row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      margin-bottom:10px;
      position:relative;
      z-index:1;
    }
    .avatar{
      width:44px; height:44px; border-radius:18px;
      background:
        radial-gradient(12px 12px at 30% 28%, rgba(255,255,255,.9), rgba(255,255,255,0) 58%),
        linear-gradient(145deg, rgba(34,197,94,.20), rgba(34,197,94,.05)),
        linear-gradient(145deg, #22c55e, #0ea55a);
      border:1px solid rgba(16,185,129,.28);
      box-shadow: 0 14px 34px rgba(16,185,129,.18);
      display:grid; place-items:center;
      color:#062012;
      font-weight:900;
      flex:0 0 auto;
    }
    .review .who b{ display:block; font-size:14px; }
    .review .who span{ display:block; margin-top:6px; font-size:12px; color: var(--muted2); line-height:1.4; }
    .review .stars{
      display:flex; gap:2px; align-items:center;
    }
    .review .stars svg{ width:16px; height:16px; }
    .review p{
      margin:0;
      color: rgba(15,23,42,.74);
      font-size:13px;
      line-height:1.8;
      position:relative; z-index:1;
    }

    /* Forms */
    .form-card{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow);
      padding:18px;
    }
    .form-grid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:13px;
      color: rgba(15,23,42,.82);
      font-weight:700;
    }
    .field input, .field select, .field textarea{
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.75);
      padding:12px 12px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
      color: rgba(15,23,42,.92);
    }
    .field textarea{ min-height:110px; resize:vertical; grid-column: 1 / -1; }
    .field input:focus, .field select:focus, .field textarea:focus{
      border-color: rgba(34,197,94,.35);
      box-shadow: var(--focus);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:12px;
    }
    .hint{
      color: var(--muted2);
      font-size:12px;
      line-height:1.6;
      max-width:60ch;
    }
    .privacy{
      display:flex; gap:10px; align-items:flex-start;
      color: var(--muted2);
      font-size:12px;
      line-height:1.6;
    }
    .checkx{
      width:18px; height:18px; border-radius:6px;
      border:1px solid rgba(17,24,39,.18);
      background: rgba(255,255,255,.7);
      display:grid; place-items:center;
      flex:0 0 auto;
      margin-top:2px;
    }

    /* Floating */
    .floating{
      position:fixed;
      right:14px;
      bottom:14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      z-index:60;
      pointer-events:none;
    }
    .float-btn{
      pointer-events:auto;
      width:52px; height:52px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 44px rgba(17,24,39,.14);
      display:grid; place-items:center;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .float-btn:hover{
      transform: translateY(-3px);
      border-color: rgba(34,197,94,.22);
      box-shadow: 0 24px 60px rgba(17,24,39,.18);
    }
    .float-btn:focus{ outline:none; box-shadow: var(--focus); }
    .float-btn svg{ width:22px; height:22px; }

    /* Footer */
    footer{
      padding:22px 0 26px;
      border-top:1px solid rgba(17,24,39,.08);
      background: rgba(247,250,247,.72);
    }
    .footer-wrap{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .footer-left .small{
      color: rgba(15,23,42,.70);
      font-size:13px;
      line-height:1.8;
      margin-top:10px;
      max-width:70ch;
    }
    .footer-right{
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .footer-links{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .footer-links a{
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.65);
      color: rgba(15,23,42,.86);
      font-size:13px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .footer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(34,197,94,.22);
      background: rgba(255,255,255,.80);
    }
    .copyright{
      margin-top:12px;
      color: rgba(75,85,99,.95);
      font-size:12px;
    }

    /* Reveal */
    .reveal{
      opacity:0;
      transform: translateY(14px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.in{
      opacity:1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      h1{ font-size:28px; }
      .service-grid{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: repeat(2, 1fr); }
      .case-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .article-grid{ grid-template-columns: 1fr; }
      .network-grid{ grid-template-columns: 1fr; }
      .footer-wrap{ grid-template-columns: 1fr; }
      .footer-right{ align-items:flex-start; }
      .footer-links{ justify-content:flex-start; }
      .nav-links{ display:none; }
      .hamburger{ display:flex; }
      .mobile-drawer{ display:block; }
      .mobile-drawer.is-open{ display:block; }
      .mobile-drawer{ max-height: 0; overflow:hidden; transition: max-height .25s ease; }
      .mobile-drawer.is-open{ max-height: 420px; }
    }
    @media (max-width: 520px){
      .stats-grid{ grid-template-columns: 1fr 1fr; }
      .chip{ min-width: 0; flex:1 1 auto; }
      .steps{ grid-template-columns: 1fr; }
      .form-grid{ grid-template-columns: 1fr; }
      .floating{ right:10px; bottom:10px; }
      .hero-main{ padding:22px 16px; }
      .hero-side{ padding:16px; }
      section{ padding:28px 0; }
    }