:root{
      --bg0:#f6fbf7;
      --bg1:#ecfff1;
      --card:#ffffff;
      --text:#111827;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(16,185,129,.18);
      --line2:rgba(17,24,39,.10);
      --brand:#16c172;
      --brand2:#0ea75d;
      --brand3:#7CFFB2;
      --shadow: 0 14px 35px rgba(16,185,129,.14);
      --shadow2: 0 10px 22px rgba(2,6,23,.08);
      --ring: 0 0 0 4px rgba(22,193,114,.18);
      --radius:18px;
      --radius2:14px;
      --container:1140px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 500px at 14% -10%, rgba(22,193,114,.22), transparent 60%),
        radial-gradient(680px 420px at 88% 6%, rgba(124,255,178,.22), transparent 60%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 42%, #fff 100%);
    }
    a{color:inherit; text-decoration:none}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 20px;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(246,251,247,.72);
      border-bottom:1px solid rgba(16,185,129,.14);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 200px;
    }
    .brand .logoWrap{
      width:40px;height:40px;
      border-radius:12px;
      background:linear-gradient(135deg, rgba(22,193,114,.18), rgba(16,185,129,.06));
      border:1px solid rgba(16,185,129,.24);
      display:flex;align-items:center;justify-content:center;
      overflow:hidden;
    }
    .ai-page-logo{
      width:38px;height:auto; display:block;
    }
    .brandText{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brandText strong{font-size:14px; letter-spacing:.2px}
    .brandText span{font-size:12px; color:var(--muted2)}
    .navRight{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:flex-end;
      flex:1;
    }
    .menu{
      display:flex; gap:16px; align-items:center;
      padding:0; margin:0; list-style:none;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .menu a{
      font-size:13px;
      color:var(--muted);
      padding:8px 10px;
      border-radius:999px;
      transition:background .2s ease, color .2s ease, transform .2s ease;
      outline:none;
    }
    .menu a:hover{
      background:rgba(16,185,129,.10);
      color:#0f172a;
      transform:translateY(-1px);
    }
    .navActions{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:12px;
      border:1px solid rgba(16,185,129,.25);
      background:#fff;
      color:#0f172a;
      font-weight:650;
      font-size:13px;
      box-shadow: 0 8px 18px rgba(2,6,23,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 28px rgba(2,6,23,.10);
      border-color:rgba(16,185,129,.40);
      background:#f7fffb;
    }
    .btnPrimary{
      border-color: rgba(22,193,114,.55);
      background: linear-gradient(135deg, rgba(22,193,114,.98), rgba(14,167,93,.98));
      color:#052e18;
      box-shadow: 0 16px 35px rgba(16,185,129,.26);
    }
    .btnPrimary:hover{
      background: linear-gradient(135deg, rgba(22,193,114,1), rgba(14,167,93,1));
      box-shadow:0 22px 50px rgba(16,185,129,.32);
    }
    .btnGhost{
      border-color: rgba(17,24,39,.14);
      background: rgba(255,255,255,.76);
      color:#0f172a;
    }
    .btnSmall{padding:9px 12px; border-radius:11px; font-size:13px}
    .icon{
      width:18px; height:18px; flex:0 0 auto;
    }
    .hamburger{
      display:none;
      width:42px; height:42px;
      border-radius:12px;
      border:1px solid rgba(16,185,129,.22);
      background:rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, background .18s ease;
    }
    .hamburger:hover{transform:translateY(-1px); background:rgba(247,255,251,.9)}
    .hamburger svg{width:20px;height:20px}
    .mobilePanel{
      display:none;
      padding:12px 0 16px;
    }
    .mobilePanel .menu{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      width:100%;
      justify-content:start;
      padding:0;
    }
    .mobilePanel .menu a{
      text-align:center;
      padding:12px 10px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      border-radius:14px;
      color:var(--muted);
    }
    .mobilePanel .navActions{
      margin-top:12px;
      justify-content:space-between;
      gap:10px;
    }

    .hero{
      padding:30px 0 10px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .heroCard{
      background:
        radial-gradient(900px 300px at 20% 0%, rgba(22,193,114,.18), transparent 60%),
        radial-gradient(600px 260px at 90% 0%, rgba(124,255,178,.18), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      border:1px solid rgba(16,185,129,.20);
      border-radius: var(--radius);
      box-shadow: var(--shadow2);
      padding:26px 22px;
      position:relative;
      overflow:hidden;
    }
    .heroCard::after{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(120deg, rgba(22,193,114,.22), transparent 35%),
        linear-gradient(280deg, rgba(124,255,178,.18), transparent 40%);
      opacity:.55;
      pointer-events:none;
      mask-image: radial-gradient(380px 190px at 16% 10%, #000 35%, transparent 72%);
    }
    .badgeRow{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center;
      position:relative;
      z-index:1;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(22,193,114,.10);
      border:1px solid rgba(22,193,114,.22);
      color:#0f3a22;
      font-weight:650;
      font-size:12.5px;
    }
    .badgeDot{
      width:10px;height:10px; border-radius:50%;
      background:linear-gradient(180deg, #22c55e, #16c172);
      box-shadow:0 0 0 4px rgba(22,193,114,.18);
    }
    .heroTitle{
      margin:14px 0 10px;
      font-size:38px;
      line-height:1.08;
      letter-spacing:-.6px;
      position:relative;
      z-index:1;
    }
    .heroLead{
      margin:0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.7;
      position:relative;
      z-index:1;
      max-width: 58ch;
    }
    .heroCtas{
      margin-top:16px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      position:relative; z-index:1;
    }
    .heroMeta{
      margin-top:16px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      position:relative; z-index:1;
    }
    .metaChip{
      flex: 0 0 auto;
      display:flex; align-items:center; gap:10px;
      padding:11px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.62);
      min-width: 170px;
    }
    .metaChip strong{font-size:13.5px}
    .metaChip span{display:block; font-size:12px; color:var(--muted2); margin-top:2px}
    .metaIcon{
      width:36px;height:36px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(22,193,114,.22), rgba(124,255,178,.08));
      border:1px solid rgba(22,193,114,.22);
      display:flex; align-items:center; justify-content:center;
    }
    .metaIcon svg{width:18px;height:18px}

    .sidePanel{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.56));
      border:1px solid rgba(16,185,129,.18);
      border-radius: var(--radius);
      box-shadow: var(--shadow2);
      padding:18px 16px;
      overflow:hidden;
      position:relative;
      min-height: 320px;
    }
    .sidePanel::before{
      content:"";
      position:absolute;
      inset:-60px -40px auto auto;
      width:190px;height:190px;
      background: radial-gradient(circle at 30% 30%, rgba(22,193,114,.35), transparent 58%);
      transform: rotate(12deg);
      pointer-events:none;
    }
    .panelHead{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      position:relative; z-index:1;
      margin-bottom:12px;
    }
    .panelHead h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .panelHead p{
      margin:4px 0 0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.55;
    }
    .spark{
      width:46px;height:46px;
      border-radius:16px;
      background: rgba(22,193,114,.10);
      border:1px solid rgba(22,193,114,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .spark svg{width:22px;height:22px}
    .kpiGrid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      position:relative; z-index:1;
    }
    .kpi{
      padding:14px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.62);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .kpi:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(2,6,23,.10);
    }
    .kpi .num{
      font-weight:850;
      font-size:20px;
      letter-spacing:-.4px;
    }
    .kpi .lab{
      margin-top:6px;
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.35;
    }
    .flowMini{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
      position:relative; z-index:1;
    }
    .miniStep{
      display:flex; align-items:flex-start; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(16,185,129,.14);
      background:rgba(22,193,114,.06);
    }
    .miniStep .dot{
      width:26px;height:26px; border-radius:10px;
      background: linear-gradient(135deg, rgba(22,193,114,1), rgba(124,255,178,.45));
      border:1px solid rgba(22,193,114,.32);
      display:flex; align-items:center; justify-content:center;
      color:#052e18;
      font-weight:900;
      font-size:12.5px;
      flex:0 0 auto;
    }
    .miniStep strong{font-size:13.5px}
    .miniStep span{
      display:block;
      margin-top:3px;
      color:var(--muted);
      font-size:12.6px; line-height:1.55;
    }

    .section{
      padding:18px 0;
    }
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:12px;
    }
    .sectionTitle{
      margin:0;
      font-size:24px;
      letter-spacing:-.4px;
    }
    .sectionDesc{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:14px;
      max-width:62ch;
    }
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .card{
      background:rgba(255,255,255,.76);
      border:1px solid rgba(17,24,39,.10);
      border-radius: var(--radius2);
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
      padding:16px 14px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(2,6,23,.10);
      border-color: rgba(16,185,129,.26);
    }
    .cardTop{
      display:flex; align-items:flex-start; gap:12px;
    }
    .cardIcon{
      width:44px;height:44px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(22,193,114,.20), rgba(124,255,178,.06));
      border:1px solid rgba(22,193,114,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .cardIcon svg{width:20px;height:20px}
    .card h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.7;
    }
    .pillRow{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .pill{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,185,129,.18);
      background:rgba(22,193,114,.07);
      color:#0f3a22;
      white-space:nowrap;
    }

    .compareWrap{
      border-radius: var(--radius);
      border:1px solid rgba(16,185,129,.20);
      background:
        radial-gradient(880px 300px at 20% 0%, rgba(22,193,114,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.55));
      box-shadow: var(--shadow2);
      padding:16px;
      overflow:hidden;
    }
    .compareHead{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      padding:4px 4px 12px;
      border-bottom:1px dashed rgba(16,185,129,.20);
    }
    .compareHead h3{margin:0; font-size:18px; letter-spacing:-.3px}
    .compareHead p{margin:6px 0 0; color:var(--muted); font-size:13.6px; line-height:1.65}
    .seg{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .seg button{
      border-radius:999px;
      padding:9px 11px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.65);
      color:var(--muted);
      font-weight:650;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
    }
    .seg button:hover{transform:translateY(-1px); border-color:rgba(16,185,129,.26)}
    .seg button[aria-pressed="true"]{
      background: rgba(22,193,114,.12);
      border-color: rgba(22,193,114,.34);
      color:#08301c;
      box-shadow: 0 0 0 4px rgba(22,193,114,.12);
    }

    .tableWrap{
      overflow:auto;
      margin-top:12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:820px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      font-size:13.5px;
      line-height:1.55;
    }
    th{
      position:sticky;
      top:0;
      background: rgba(236,255,241,.95);
      z-index:1;
      text-align:left;
      color:#0f172a;
      font-weight:850;
      border-bottom:1px solid rgba(16,185,129,.20);
    }
    tr:last-child td{border-bottom:none}
    .tagGood{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(22,193,114,.10);
      border:1px solid rgba(22,193,114,.22);
      color:#0f3a22;
      font-weight:750;
      font-size:12.5px;
      white-space:nowrap;
    }
    .tagMid{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(59,130,246,.09);
      border:1px solid rgba(59,130,246,.18);
      color:#0b2a4d;
      font-weight:750;
      font-size:12.5px;
      white-space:nowrap;
    }
    .tagBad{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(244,63,94,.10);
      border:1px solid rgba(244,63,94,.20);
      color:#7f1d1d;
      font-weight:750;
      font-size:12.5px;
      white-space:nowrap;
    }
    .rowTitle{
      font-weight:900;
      letter-spacing:-.2px;
      color:#0f172a;
      white-space:nowrap;
    }
    .scoreCard{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .scoreBox{
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
      min-height: 108px;
      display:flex; flex-direction:column; justify-content:space-between;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      font-weight:900;
      color:#065f46;
      letter-spacing:-.2px;
    }
    .starSvg{width:18px;height:18px}
    .scoreNum{
      font-size:30px;
      font-weight:950;
      letter-spacing:-.8px;
    }
    .scoreMeta{color:var(--muted); font-size:13px; line-height:1.5; margin-top:6px}

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      align-items:stretch;
    }
    .step{
      position:relative;
      padding:16px 14px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      overflow:hidden;
    }
    .step:hover{
      transform: translateY(-3px);
      box-shadow:0 18px 42px rgba(2,6,23,.10);
      border-color: rgba(16,185,129,.26);
    }
    .step::after{
      content:"";
      position:absolute;
      inset:-40px -40px auto auto;
      width:120px;height:120px;
      background: radial-gradient(circle at 30% 30%, rgba(22,193,114,.20), transparent 62%);
      pointer-events:none;
    }
    .stepHead{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      position:relative; z-index:1;
    }
    .stepNum{
      width:34px;height:34px; border-radius:14px;
      background: rgba(22,193,114,.12);
      border:1px solid rgba(22,193,114,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#08301c;
      flex:0 0 auto;
    }
    .stepIcon{
      width:40px;height:40px; border-radius:16px;
      background: rgba(255,255,255,.62);
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .stepIcon svg{width:18px;height:18px}
    .step h3{
      margin:10px 0 0;
      font-size:15.5px;
      letter-spacing:-.2px;
      position:relative; z-index:1;
    }
    .step p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.7;
      position:relative; z-index:1;
    }

    .caseGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
    }
    .caseList{
      display:flex; flex-direction:column; gap:12px;
    }
    .caseItem{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.74);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .caseItem:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(2,6,23,.10);
      border-color: rgba(16,185,129,.26);
    }
    .caseBadge{
      width:46px;height:46px;border-radius:18px;
      background: linear-gradient(135deg, rgba(22,193,114,.22), rgba(124,255,178,.08));
      border:1px solid rgba(22,193,114,.22);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
    }
    .caseBadge svg{width:22px;height:22px}
    .caseItem h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .caseItem p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.7;
    }
    .caseTags{margin-top:10px; display:flex; flex-wrap:wrap; gap:8px}
    .caseTags .pill{background:rgba(255,255,255,.7)}
    .caseSide{
      border-radius: var(--radius);
      border:1px solid rgba(16,185,129,.18);
      background:
        radial-gradient(560px 220px at 30% 0%, rgba(22,193,114,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.54));
      box-shadow: var(--shadow2);
      padding:16px;
      overflow:hidden;
      position:relative;
      min-height: 260px;
    }
    .caseSide::before{
      content:"";
      position:absolute;
      inset:auto -50px -70px auto;
      width:240px;height:240px;
      background: radial-gradient(circle at 30% 30%, rgba(124,255,178,.24), transparent 58%);
      pointer-events:none;
    }
    .caseSide h3{margin:0; font-size:16px; letter-spacing:-.2px; position:relative; z-index:1}
    .caseSide p{margin:8px 0 0; color:var(--muted); font-size:13.6px; line-height:1.7; position:relative; z-index:1}
    .metricRow{
      margin-top:14px;
      position:relative; z-index:1;
      display:grid; grid-template-columns:1fr 1fr; gap:12px;
    }
    .metric{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
      padding:12px 12px;
    }
    .metric strong{display:block; font-size:18px; font-weight:950; letter-spacing:-.5px}
    .metric span{display:block; margin-top:4px; color:var(--muted2); font-size:12.6px; line-height:1.45}

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .articleCard{
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height: 176px;
    }
    .articleCard:hover{
      transform: translateY(-3px);
      box-shadow:0 18px 42px rgba(2,6,23,.10);
      border-color: rgba(16,185,129,.26);
    }
    .articleTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .articleCard h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
      line-height:1.35;
    }
    .articleMeta{
      color:var(--muted2);
      font-size:12.5px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .articleCard p{
      margin:0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.65;
      flex:1;
    }
    .articleLink{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding-top:10px;
      border-top:1px dashed rgba(16,185,129,.20);
      color:#064e3b;
      font-weight:750;
      font-size:13px;
    }
    .articleLink svg{width:18px;height:18px}

    .reviews{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .review{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.74);
      padding:14px;
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height: 196px;
    }
    .review:hover{
      transform: translateY(-3px);
      box-shadow:0 18px 42px rgba(2,6,23,.10);
      border-color: rgba(16,185,129,.26);
    }
    .reviewHead{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:42px;height:42px;border-radius:18px;
      background: linear-gradient(135deg, rgba(22,193,114,.20), rgba(124,255,178,.08));
      border:1px solid rgba(22,193,114,.22);
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
    }
    .avatar svg{width:20px;height:20px}
    .reviewWho{
      flex:1;
      margin-left:10px;
    }
    .reviewWho strong{
      display:block;
      font-size:14px;
      letter-spacing:-.2px;
    }
    .reviewWho span{
      display:block;
      margin-top:2px;
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.4;
    }
    .rating{
      display:flex; gap:3px; align-items:center;
      color:#065f46;
    }
    .review p{
      margin:0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.75;
      flex:1;
    }
    .review .quote{
      color:#0f172a;
      font-weight:850;
      letter-spacing:-.2px;
    }

    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .formCard{
      border-radius: var(--radius);
      border:1px solid rgba(16,185,129,.20);
      background:
        radial-gradient(700px 260px at 20% 0%, rgba(22,193,114,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.55));
      box-shadow: var(--shadow2);
      padding:16px;
    }
    .formCard h3{margin:0; font-size:17px; letter-spacing:-.3px}
    .formCard p{margin:8px 0 0; color:var(--muted); font-size:13.6px; line-height:1.7}
    form{
      margin-top:12px;
      display:flex; flex-direction:column; gap:10px;
    }
    label{
      display:flex; flex-direction:column; gap:6px;
      font-size:13px;
      color:#0f172a;
      font-weight:700;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.14);
      background:rgba(255,255,255,.78);
      color:#0f172a;
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
      font-size:14px;
    }
    textarea{min-height:106px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(22,193,114,.55);
      box-shadow: var(--ring);
      background:#fff;
    }
    .formActions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:2px;
      align-items:center;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.5;
    }
    .helperCard{
      border-radius: var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
      padding:16px;
    }
    .helperCard h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .helperCard .helperList{
      margin:10px 0 0;
      padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .helperItem{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(16,185,129,.14);
      background:rgba(22,193,114,.06);
    }
    .helperItem .b{
      width:28px;height:28px;border-radius:12px;
      background: rgba(22,193,114,.14);
      border:1px solid rgba(22,193,114,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      color:#08301c;
      font-weight:950;
      font-size:12.5px;
    }
    .helperItem strong{display:block; font-size:13.6px}
    .helperItem span{display:block; margin-top:3px; color:var(--muted); font-size:12.8px; line-height:1.55}

    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .cloudTag{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      color:var(--muted);
      font-weight:700;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloudTag:hover{
      transform: translateY(-2px);
      border-color: rgba(16,185,129,.26);
      background: rgba(22,193,114,.08);
      color:#0f172a;
    }

    .timeline{
      display:grid; grid-template-columns:1fr; gap:10px;
      margin-top:12px;
    }
    .timelineItem{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
    }
    .timeDot{
      width:38px;height:38px;border-radius:16px;
      background: rgba(22,193,114,.12);
      border:1px solid rgba(22,193,114,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      color:#08301c;
      font-weight:950;
    }
    .timelineItem strong{display:block; font-size:14px; letter-spacing:-.2px}
    .timelineItem span{display:block; margin-top:4px; color:var(--muted); font-size:13px; line-height:1.65}

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .accordion{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.72);
      overflow:hidden;
      box-shadow: 0 10px 22px rgba(2,6,23,.06);
    }
    .accItem + .accItem{border-top:1px solid rgba(17,24,39,.08)}
    .accBtn{
      width:100%;
      text-align:left;
      border:0;
      background:transparent;
      padding:14px 14px;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .accBtn strong{
      font-size:13.8px;
      letter-spacing:-.2px;
      line-height:1.55;
      color:#0f172a;
    }
    .chev{
      width:28px;height:28px;border-radius:12px;
      background: rgba(22,193,114,.10);
      border:1px solid rgba(22,193,114,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .22s ease;
      margin-top:-2px;
    }
    .chev svg{width:16px;height:16px}
    .accBtn[aria-expanded="true"] .chev{transform: rotate(180deg)}
    .accPanel{
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
    }
    .accPanelInner{
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.75;
    }

    .footer{
      margin-top:18px;
      background: linear-gradient(180deg, rgba(5,46,24,.95), rgba(4,36,19,.98));
      color:#e7fff2;
      border-top: 1px solid rgba(124,255,178,.18);
    }
    .footerInner{
      padding:20px 0 14px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .footerBrand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footerLogo{
      width:44px;height:44px;border-radius:16px;
      background: rgba(124,255,178,.10);
      border:1px solid rgba(124,255,178,.20);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .footerLogo img{width:40px;height:auto; display:block}
    .footerBrand h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .footerBrand p{margin:8px 0 0; color:rgba(231,255,242,.86); font-size:13.6px; line-height:1.7; max-width: 56ch}
    .footerLinks{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .footerLinks a{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(124,255,178,.18);
      color:rgba(231,255,242,.9);
      background:rgba(124,255,178,.06);
      font-weight:750;
      font-size:13px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .footerLinks a:hover{
      transform: translateY(-2px);
      background:rgba(124,255,178,.12);
      border-color: rgba(124,255,178,.28);
    }
    .footerBottom{
      margin-top:14px;
      padding-top:12px;
      border-top:1px solid rgba(124,255,178,.16);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      color:rgba(231,255,242,.86);
      font-size:12.8px;
    }
    .footerBottom .smallLinks{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
    }
    .smallLinks a{
      color:rgba(231,255,242,.92);
      font-weight:750;
    }

    .floatBtn{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:70;
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
    }
    .floatCard{
      display:none;
      width:270px;
      border-radius:18px;
      border:1px solid rgba(16,185,129,.22);
      background:rgba(255,255,255,.92);
      box-shadow: 0 18px 50px rgba(2,6,23,.16);
      overflow:hidden;
    }
    .floatCard .top{
      padding:12px 12px 10px;
      background: linear-gradient(135deg, rgba(22,193,114,.14), rgba(124,255,178,.08));
      border-bottom:1px solid rgba(16,185,129,.18);
    }
    .floatCard .top strong{display:block; font-size:13.8px; letter-spacing:-.2px}
    .floatCard .top span{display:block; margin-top:4px; color:var(--muted); font-size:12.8px; line-height:1.45}
    .floatCard .body{
      padding:10px 12px 12px;
      display:flex; gap:12px; align-items:center;
    }
    .floatCard img{
      width:78px; height:78px; object-fit:cover; border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
    }
    .floatCard .actions{
      display:flex; flex-direction:column; gap:8px; margin-left:auto;
    }
    .floatCard .actions a{
      padding:9px 11px;
      border-radius:12px;
      border:1px solid rgba(16,185,129,.22);
      background: rgba(22,193,114,.08);
      color:#08301c;
      font-weight:850;
      font-size:13px;
      text-align:center;
      transition: transform .18s ease, background .18s ease;
      white-space:nowrap;
    }
    .floatCard .actions a:hover{transform:translateY(-2px); background: rgba(22,193,114,.12)}
    .floatToggle{
      width:52px;height:52px;border-radius:18px;
      border:1px solid rgba(16,185,129,.28);
      background: linear-gradient(135deg, rgba(22,193,114,.95), rgba(14,167,93,.95));
      box-shadow: 0 20px 48px rgba(16,185,129,.34);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease;
    }
    .floatToggle:hover{transform: translateY(-3px)}
    .floatToggle svg{width:22px;height:22px; color:#052e18}
    .toTop{
      width:52px;height:52px;border-radius:18px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.85);
      box-shadow: 0 12px 26px rgba(2,6,23,.10);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, background .18s ease;
    }
    .toTop:hover{transform: translateY(-3px); background:#fff}
    .toTop svg{width:22px;height:22px}
    .srOnly{
      position:absolute; width:1px;height:1px;
      padding:0; margin:-1px; overflow:hidden;
      clip:rect(0,0,0,0); white-space:nowrap; border:0;
    }

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr; }
      .sidePanel{min-height:auto}
      .grid3{grid-template-columns:1fr 1fr}
      .grid2{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr 1fr}
      .caseGrid{grid-template-columns:1fr}
      .articles{grid-template-columns:1fr 1fr}
      .reviews{grid-template-columns:1fr 1fr}
      .faqGrid{grid-template-columns:1fr}
      .formGrid{grid-template-columns:1fr}
      .footerGrid{grid-template-columns:1fr}
      .footerLinks{justify-content:flex-start}
      .mobilePanel{display:block}
      .menu{display:none}
      .hamburger{display:flex}
      .navActions .btnGhost{display:none}
      .mobilePanel{display:none}
      .navRight{flex:0 0 auto}
    }
    @media (max-width: 560px){
      .heroTitle{font-size:30px}
      .metaChip{min-width: 100%}
      .kpiGrid{grid-template-columns:1fr 1fr}
      .grid3{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .articles{grid-template-columns:1fr}
      .reviews{grid-template-columns:1fr}
      table{min-width:720px}
      .floatCard{width:250px}
    }

    @media (prefers-reduced-motion: reduce){
      *{scroll-behavior:auto}
      .reveal{transition:none}
      .card, .kpi, .step, .articleCard, .review{transition:none}
    }