:root{
      --bg0:#f6fbf8;
      --bg1:#ecf7f1;
      --card:#ffffff;
      --text:#1f2a2a;
      --muted:#5a6a66;
      --muted2:#7a8a86;
      --line:#dbe9e1;
      --shadow: 0 10px 30px rgba(20, 70, 45, .10);
      --shadow2: 0 8px 22px rgba(20, 70, 45, .10);
      --mint:#2bb673;
      --mint2:#20a56a;
      --mint3:#86e8b5;
      --teal:#0f766c;
      --blue:#1a73e8;
      --warn:#b86b00;
      --radius:18px;
      --radius2:14px;
      --container: 1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 500px at 12% -10%, rgba(43,182,115,.22), transparent 55%),
        radial-gradient(900px 420px at 88% 0%, rgba(15,118,108,.14), transparent 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 38%, #ffffff 100%);
    }
    a{color:inherit; text-decoration:none}
    .container{max-width:var(--container); margin:0 auto; padding:0 20px}
    .skip{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:20px; top:14px; width:auto; height:auto; padding:10px 12px; background:var(--card); border:1px solid var(--line); border-radius:12px; z-index:9999;
    }

    header{
      position:sticky; top:0; z-index:50;
      background:rgba(246,251,248,.78);
      backdrop-filter:saturate(140%) blur(10px);
      border-bottom:1px solid rgba(219,233,225,.55);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width: 200px;
    }
    .brand img{
      width:44px; height:44px; object-fit:contain; border-radius:12px;
      background:linear-gradient(180deg, rgba(43,182,115,.15), rgba(15,118,108,.08));
      box-shadow:0 8px 20px rgba(20, 70, 45, .08);
      padding:6px;
    }
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .name{font-weight:800; letter-spacing:.2px}
    .brand .tag{font-size:12px; color:var(--muted2)}
    nav{
      display:flex; align-items:center; gap:10px;
      flex-wrap:wrap; justify-content:flex-end;
    }
    .nav-links{
      display:flex; align-items:center; gap:8px;
      flex-wrap:wrap;
    }
    .nav-links a{
      font-size:13px; color:var(--muted);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: all .18s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      color:var(--text);
      border-color:rgba(43,182,115,.35);
      background:rgba(43,182,115,.08);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(15,118,108,.25);
      background:rgba(255,255,255,.75);
      color:var(--text);
      font-weight:700;
      transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
      box-shadow:0 8px 18px rgba(20, 70, 45, .06);
      cursor:pointer;
      user-select:none;
    }
    .btn:active{transform: translateY(1px)}
    .btn:hover{
      transform: translateY(-1px);
      border-color:rgba(43,182,115,.45);
      box-shadow:0 14px 30px rgba(20, 70, 45, .12);
      background:rgba(255,255,255,.95);
    }
    .btn-primary{
      border-color:rgba(43,182,115,.55);
      background: linear-gradient(135deg, rgba(43,182,115,.95), rgba(15,118,108,.92));
      color:#fff;
      box-shadow: 0 16px 38px rgba(15,118,108,.18);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 52px rgba(15,118,108,.22);
      background: linear-gradient(135deg, rgba(43,182,115,1), rgba(15,118,108,1));
    }
    .btn-ghost{
      background:rgba(255,255,255,.6);
    }
    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(255,255,255,.95);
      box-shadow:0 0 0 6px rgba(255,255,255,.20);
    }
    .menu-btn{
      display:none;
      border-radius:14px;
      padding:10px 12px;
      border:1px solid rgba(219,233,225,.9);
      background:rgba(255,255,255,.7);
      box-shadow:0 8px 18px rgba(20, 70, 45, .06);
      cursor:pointer;
      transition: transform .16s ease;
    }
    .menu-btn:active{transform: translateY(1px)}
    .hamb{
      width:18px; height:14px; position:relative;
    }
    .hamb span{
      position:absolute; left:0; right:0; height:2px; background:rgba(31,42,42,.85); border-radius:999px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamb span:nth-child(1){top:0}
    .hamb span:nth-child(2){top:6px}
    .hamb span:nth-child(3){top:12px}
    .menu-open .hamb span:nth-child(1){top:6px; transform: rotate(45deg)}
    .menu-open .hamb span:nth-child(2){opacity:0}
    .menu-open .hamb span:nth-child(3){top:6px; transform: rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding: 10px 0 16px;
    }
    .mobile-panel .panel-inner{
      border:1px solid rgba(219,233,225,.9);
      background:rgba(255,255,255,.8);
      border-radius:18px;
      padding:12px;
      box-shadow: var(--shadow2);
    }
    .mobile-links{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      padding:4px 4px 12px;
    }
    .mobile-links a{
      padding:10px 10px;
      border-radius:14px;
      background:rgba(43,182,115,.06);
      border:1px solid rgba(43,182,115,.14);
      color:var(--text);
      font-weight:700;
      font-size:13px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .mobile-links a:hover{
      transform: translateY(-1px);
      border-color:rgba(43,182,115,.35);
      background:rgba(43,182,115,.10);
    }
    .mobile-cta{
      display:flex; flex-direction:column; gap:10px;
    }

    main{padding-bottom: 24px}

    .hero{
      padding: 28px 0 12px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.18fr .82fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background:
        radial-gradient(900px 420px at 10% 15%, rgba(43,182,115,.18), transparent 55%),
        radial-gradient(700px 340px at 85% 5%, rgba(15,118,108,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
      box-shadow: var(--shadow);
      padding: 22px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(90deg, transparent 0%, rgba(43,182,115,.14) 45%, transparent 75%);
      transform: translateX(-60%);
      animation: sheen 10s ease-in-out infinite;
      pointer-events:none;
      opacity:.75;
    }
    @keyframes sheen{
      0%{transform: translateX(-70%)}
      45%{transform: translateX(25%)}
      100%{transform: translateX(70%)}
    }
    .hero-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
    }
    .badge-row{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(43,182,115,.26);
      background: rgba(255,255,255,.65);
      color:var(--text);
      font-weight:800;
      font-size:13px;
      box-shadow: 0 10px 22px rgba(20, 70, 45, .06);
      position:relative;
      overflow:hidden;
    }
    .badge i{
      width:9px; height:9px; border-radius:50%;
      background: rgba(43,182,115,1);
      box-shadow: 0 0 0 6px rgba(43,182,115,.18);
    }
    .hero h1{
      margin: 14px 0 10px;
      font-size: 34px;
      line-height: 1.18;
      letter-spacing: -0.5px;
    }
    .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: 16px;
      align-items:center;
    }
    .trust-row{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top: 14px;
      align-items:center;
    }
    .trust-pill{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.6);
      border:1px solid rgba(219,233,225,.9);
      color:var(--muted);
      font-weight:700;
      font-size:13px;
    }
    .trust-pill .mini{
      width:28px; height:28px;
      border-radius:10px;
      background: rgba(43,182,115,.10);
      border:1px solid rgba(43,182,115,.20);
      display:flex; align-items:center; justify-content:center;
      color: var(--teal);
      font-weight:900;
      box-shadow:0 10px 18px rgba(20, 70, 45, .06);
    }

    .hero-side{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .side-card{
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.74);
      box-shadow: var(--shadow2);
      padding: 16px;
      overflow:hidden;
      position:relative;
    }
    .side-card:after{
      content:"";
      position:absolute; right:-60px; top:-60px;
      width:180px; height:180px;
      background: radial-gradient(circle at 30% 30%, rgba(43,182,115,.22), transparent 60%);
      pointer-events:none;
    }
    .kpi-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .kpi{
      border-radius:16px;
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.78);
      padding:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .kpi:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(20, 70, 45, .12);
      border-color: rgba(43,182,115,.35);
    }
    .kpi .value{
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -0.3px;
      margin-bottom: 4px;
    }
    .kpi .label{
      font-size: 12px;
      color: var(--muted);
      line-height: 1.35;
      font-weight: 700;
    }

    .quick-match{
      margin-top: 2px;
    }
    .quick-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .quick-title h2{
      margin:0;
      font-size:14px;
      color:var(--teal);
      letter-spacing:.2px;
    }
    .stepper{
      display:flex; flex-direction:column; gap:10px;
    }
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 16px;
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.72);
    }
    .step .num{
      width:30px; height:30px;
      border-radius: 12px;
      background: rgba(43,182,115,.10);
      border: 1px solid rgba(43,182,115,.20);
      color: var(--teal);
      display:flex; align-items:center; justify-content:center;
      font-weight: 900;
      flex:0 0 auto;
    }
    .step .s-title{
      font-weight: 900;
      font-size: 13px;
      margin:0 0 2px;
    }
    .step .s-desc{
      margin:0;
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.55;
      font-weight:700;
    }

    .section{
      padding: 18px 0;
    }
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin: 4px 0 14px;
    }
    .section-title h2{
      margin:0;
      font-size: 22px;
      letter-spacing: -0.2px;
    }
    .section-title p{
      margin:0;
      color: var(--muted);
      font-weight: 700;
      font-size: 13.5px;
      line-height: 1.6;
      max-width: 54ch;
    }

    .grid-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .card{
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(20, 70, 45, .08);
      padding: 16px;
      overflow:hidden;
      position:relative;
    }
    .card h3{
      margin: 0 0 8px;
      font-size: 16px;
      letter-spacing: -0.1px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size: 13.5px;
      line-height:1.75;
      font-weight:700;
    }
    .list{
      margin: 10px 0 0;
      padding: 0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .li{
      display:flex; gap:12px; align-items:flex-start;
      padding: 10px 12px;
      border-radius: 16px;
      border:1px solid rgba(219,233,225,.85);
      background: rgba(255,255,255,.65);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .li:hover{
      transform: translateY(-2px);
      border-color: rgba(43,182,115,.35);
      box-shadow: 0 18px 46px rgba(20, 70, 45, .10);
    }
    .li .dot{
      width:10px; height:10px; border-radius:50%;
      background: rgba(43,182,115,1);
      box-shadow:0 0 0 6px rgba(43,182,115,.18);
      margin-top: 6px;
      flex:0 0 auto;
    }
    .li .t{
      font-weight: 900; font-size: 13.5px; margin:0 0 3px;
    }
    .li .d{
      margin:0;
      color: var(--muted);
      font-weight: 700;
      font-size: 12.8px;
      line-height:1.6;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step-card{
      padding:14px;
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background:
        radial-gradient(600px 240px at 20% 0%, rgba(43,182,115,.12), transparent 55%),
        rgba(255,255,255,.74);
      box-shadow: 0 10px 22px rgba(20, 70, 45, .07);
      position:relative;
      overflow:hidden;
    }
    .step-card:before{
      content:"";
      position:absolute; left:-40px; top:-40px;
      width:110px; height:110px;
      border-radius: 30px;
      background: rgba(43,182,115,.10);
      border:1px solid rgba(43,182,115,.18);
      transform: rotate(12deg);
    }
    .step-card .snum{
      width:34px; height:34px;
      border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color: var(--teal);
      background: rgba(43,182,115,.10);
      border:1px solid rgba(43,182,115,.20);
      position:relative;
      z-index:1;
      margin-bottom: 10px;
    }
    .step-card h3{position:relative; z-index:1; margin:0 0 6px; font-size:15px}
    .step-card p{position:relative; z-index:1; margin:0; color:var(--muted); font-weight:700; font-size:13px; line-height:1.7}

    .compare{
      padding: 14px;
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(20, 70, 45, .08);
    }
    .compare-head{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
      padding: 6px 6px 12px;
      border-bottom:1px solid rgba(219,233,225,.75);
      margin-bottom: 12px;
    }
    .rating{
      display:flex; gap:12px; align-items:center;
    }
    .stars{
      font-size: 18px;
      letter-spacing:2px;
      color: #f6b51a;
      text-shadow: 0 10px 18px rgba(246,181,26,.18);
    }
    .score{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .score .big{
      font-size: 28px; font-weight: 1000; letter-spacing:-.6px;
    }
    .score .small{
      font-size: 12.5px; color:var(--muted); font-weight:800;
    }
    .compare .note{
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.6;
      max-width: 56ch;
      padding-top: 2px;
    }
    .table-wrap{
      overflow:auto;
      border-radius: 14px;
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.7);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width: 760px;
    }
    th, td{
      text-align:left;
      padding: 12px 12px;
      border-bottom:1px solid rgba(219,233,225,.75);
      font-weight:800;
      color:var(--text);
      vertical-align:top;
      font-size: 13px;
    }
    th{
      background: rgba(43,182,115,.10);
      color: var(--teal);
      font-size: 13px;
      position:sticky; top:0;
      z-index:1;
    }
    td{color:var(--muted)}
    .good{
      color: var(--text);
    }
    .tag-mini{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius:999px;
      border:1px solid rgba(43,182,115,.25);
      background: rgba(43,182,115,.10);
      color: var(--teal);
      font-weight: 1000;
      font-size: 12.5px;
      white-space:nowrap;
    }
    .tag-warn{
      border-color: rgba(184,107,0,.25);
      background: rgba(184,107,0,.10);
      color: #8a4e00;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .review{
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.78);
      padding: 14px;
      box-shadow: 0 10px 22px rgba(20, 70, 45, .08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .review:hover{
      transform: translateY(-2px);
      border-color: rgba(43,182,115,.35);
      box-shadow: 0 18px 46px rgba(20, 70, 45, .12);
    }
    .review:after{
      content:"";
      position:absolute; right:-50px; top:-60px;
      width:160px; height:160px;
      background: radial-gradient(circle at 30% 30%, rgba(43,182,115,.18), transparent 62%);
      pointer-events:none;
    }
    .review .head{
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start;
      position:relative; z-index:1;
    }
    .avatar{
      width:34px; height:34px;
      border-radius: 14px;
      background: rgba(43,182,115,.12);
      border:1px solid rgba(43,182,115,.22);
      display:flex; align-items:center; justify-content:center;
      color:var(--teal);
      font-weight: 1000;
    }
    .review .role{
      font-weight: 1000;
      font-size: 13px;
      margin: 2px 0 0;
    }
    .review .meta{
      color:var(--muted2);
      font-weight: 800;
      font-size: 12px;
      margin-top:6px;
    }
    .review .text{
      margin: 10px 0 0;
      color: var(--muted);
      font-weight: 800;
      font-size: 13px;
      line-height: 1.7;
      position:relative; z-index:1;
    }

    .cards-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .svc{
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background:
        radial-gradient(620px 260px at 0% 0%, rgba(43,182,115,.14), transparent 50%),
        rgba(255,255,255,.78);
      padding: 14px;
      box-shadow: 0 10px 22px rgba(20, 70, 45, .08);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      position:relative; overflow:hidden;
      min-height: 172px;
    }
    .svc:hover{
      transform: translateY(-2px);
      border-color: rgba(43,182,115,.35);
      box-shadow: 0 18px 46px rgba(20, 70, 45, .12);
    }
    .svc .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      position:relative; z-index:1;
    }
    .svc .glyph{
      width:42px; height:42px;
      border-radius: 18px;
      background: rgba(43,182,115,.12);
      border:1px solid rgba(43,182,115,.22);
      display:flex; align-items:center; justify-content:center;
      color: var(--teal);
      font-weight: 1000;
      box-shadow: 0 12px 24px rgba(20, 70, 45, .08);
    }
    .svc h3{margin: 10px 0 6px; font-size: 15.5px; position:relative; z-index:1}
    .svc p{margin:0; color:var(--muted); font-weight:800; font-size: 13px; line-height:1.7; position:relative; z-index:1}

    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .chip{
      padding: 10px 12px;
      border-radius: 999px;
      border:1px solid rgba(219,233,225,.95);
      background: rgba(255,255,255,.75);
      font-weight: 900;
      color: var(--muted);
      font-size: 13px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .chip:hover{
      transform: translateY(-1px);
      border-color: rgba(43,182,115,.35);
      background: rgba(43,182,115,.08);
      color: var(--text);
    }

    .case-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:14px;
      align-items:start;
    }
    .case-main{
      padding:16px;
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(20, 70, 45, .08);
      overflow:hidden;
      position:relative;
    }
    .case-main:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(900px 320px at 10% 10%, rgba(43,182,115,.18), transparent 55%),
        radial-gradient(780px 260px at 90% 0%, rgba(15,118,108,.12), transparent 55%);
      pointer-events:none;
    }
    .case-main .inner{position:relative; z-index:1}
    .case-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom: 12px;
    }
    .case-top h3{margin:0; font-size:16px}
    .filter-row{
      display:flex; gap:8px; flex-wrap:wrap; align-items:center;
    }
    .pill{
      border-radius: 999px;
      padding: 9px 11px;
      border:1px solid rgba(219,233,225,.95);
      background: rgba(255,255,255,.75);
      color: var(--muted);
      font-weight: 1000;
      font-size: 13px;
      cursor:pointer;
      transition: all .16s ease;
      user-select:none;
    }
    .pill:hover{
      transform: translateY(-1px);
      border-color: rgba(43,182,115,.35);
      background: rgba(43,182,115,.08);
      color: var(--text);
    }
    .pill.active{
      border-color: rgba(43,182,115,.55);
      background: linear-gradient(135deg, rgba(43,182,115,.16), rgba(15,118,108,.10));
      color: var(--teal);
      box-shadow: 0 16px 34px rgba(15,118,108,.12);
    }
    .case-list{
      display:flex; flex-direction:column; gap:10px;
      margin: 0;
      padding: 0;
      list-style:none;
    }
    .case-item{
      border-radius: 16px;
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.7);
      padding: 12px 12px;
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .case-item:hover{
      transform: translateY(-2px);
      border-color: rgba(43,182,115,.35);
      box-shadow: 0 18px 46px rgba(20, 70, 45, .10);
    }
    .case-left{
      display:flex; gap:12px; align-items:flex-start;
      min-width: 0;
    }
    .case-k{
      width:40px; height:40px;
      border-radius: 16px;
      background: rgba(43,182,115,.12);
      border:1px solid rgba(43,182,115,.22);
      display:flex; align-items:center; justify-content:center;
      color: var(--teal);
      font-weight: 1000;
      flex: 0 0 auto;
    }
    .case-title{
      font-weight: 1000;
      margin:0 0 4px;
      font-size: 13.8px;
    }
    .case-desc{
      margin:0;
      color:var(--muted);
      font-weight: 800;
      font-size: 12.8px;
      line-height:1.65;
      overflow:hidden;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
    }
    .case-right{
      display:flex; flex-direction:column; align-items:flex-end; gap:8px;
      flex: 0 0 auto;
    }
    .case-meta{
      font-size: 12.5px;
      font-weight: 900;
      color: var(--muted2);
      white-space:nowrap;
    }
    .case-small-btn{
      border-radius: 12px;
      padding: 9px 10px;
      border:1px solid rgba(43,182,115,.25);
      background: rgba(43,182,115,.08);
      color: var(--teal);
      font-weight: 1000;
      font-size: 12.8px;
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      white-space:nowrap;
    }
    .case-small-btn:hover{
      transform: translateY(-1px);
      border-color: rgba(43,182,115,.45);
      background: rgba(43,182,115,.12);
    }

    .case-side{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .side-block{
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(20, 70, 45, .08);
      padding: 14px;
    }
    .side-block h3{margin:0 0 10px; font-size:15px}
    .side-block .sub{
      margin:0;
      color:var(--muted);
      font-weight:800;
      font-size:13px;
      line-height:1.7;
    }
    .mini-list{
      margin: 10px 0 0;
      padding:0;
      list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .mini-list li{
      display:flex; align-items:flex-start; gap:10px;
      padding: 10px 10px;
      border-radius: 14px;
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.72);
    }
    .mini-list .b{
      width:28px; height:28px; border-radius:12px;
      background: rgba(43,182,115,.10);
      border:1px solid rgba(43,182,115,.22);
      display:flex; align-items:center; justify-content:center;
      color:var(--teal); font-weight:1000; flex:0 0 auto;
    }
    .mini-list .tt{
      margin:0;
      font-weight:1000; font-size:13px;
    }
    .mini-list .dd{
      margin:4px 0 0;
      color:var(--muted);
      font-weight:800;
      font-size:12.5px;
      line-height:1.6;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    details{
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 22px rgba(20, 70, 45, .06);
      padding: 12px 14px;
      transition: border-color .16s ease, transform .16s ease;
    }
    details[open]{border-color: rgba(43,182,115,.45)}
    details:hover{transform: translateY(-1px)}
    summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight: 1000;
      color: var(--text);
      font-size: 13.8px;
      line-height: 1.6;
    }
    summary::-webkit-details-marker{display:none}
    .sum-icon{
      width:28px; height:28px;
      border-radius: 12px;
      border:1px solid rgba(219,233,225,.95);
      background: rgba(43,182,115,.08);
      color: var(--teal);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
      margin-top: 2px;
    }
    details[open] .sum-icon{background: rgba(43,182,115,.14); border-color: rgba(43,182,115,.35)}
    .faq p{
      margin: 10px 0 2px;
      color: var(--muted);
      font-weight: 800;
      line-height: 1.75;
      font-size: 13px;
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .article{
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 22px rgba(20, 70, 45, .07);
      padding: 14px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .article:hover{
      transform: translateY(-2px);
      border-color: rgba(43,182,115,.35);
      box-shadow: 0 18px 46px rgba(20, 70, 45, .12);
    }
    .article .meta{
      display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-bottom: 8px;
      color: var(--muted2);
      font-weight: 900;
      font-size: 12.5px;
    }
    .article a{
      display:flex; flex-direction:column; gap:6px;
    }
    .article .title{
      font-weight: 1000;
      font-size: 14.8px;
      letter-spacing: -.1px;
    }
    .article .desc{
      color: var(--muted);
      font-weight: 800;
      font-size: 13px;
      line-height: 1.7;
      margin:0;
    }
    .article .read{
      margin-top: 10px;
      display:flex; align-items:center; gap:10px;
      color: var(--teal);
      font-weight: 1000;
      font-size: 13px;
    }
    .arrow{
      width:26px; height:26px;
      border-radius: 12px;
      border:1px solid rgba(43,182,115,.25);
      background: rgba(43,182,115,.10);
      display:flex; align-items:center; justify-content:center;
      transition: transform .16s ease;
    }
    .article:hover .arrow{transform: translateX(2px)}

    form{
      margin:0;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top: 10px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-weight: 1000;
      font-size: 13px;
      color: var(--text);
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border:1px solid rgba(219,233,225,.95);
      background: rgba(255,255,255,.9);
      padding: 12px 12px;
      font-size: 14px;
      color: var(--text);
      outline:none;
      transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
      font-weight: 800;
    }
    textarea{min-height: 120px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(43,182,115,.55);
      box-shadow: 0 0 0 5px rgba(43,182,115,.14);
    }
    .form-actions{
      grid-column: 1 / -1;
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top: 2px;
    }
    .form-hint{
      color: var(--muted);
      font-weight: 800;
      font-size: 12.8px;
      line-height: 1.6;
      max-width: 60ch;
      margin:0;
    }
    .consent{
      display:flex; align-items:flex-start; gap:10px;
      color: var(--muted);
      font-weight: 800;
      font-size: 12.5px;
      line-height:1.6;
      margin-top: 8px;
    }
    .checkbox{
      width:18px; height:18px;
      border-radius: 6px;
      border:1px solid rgba(219,233,225,.95);
      background: rgba(255,255,255,.95);
      display:inline-flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top: 2px;
    }
    .checkbox .tick{
      width:10px; height:10px; border-radius: 3px;
      background: rgba(43,182,115,1);
      display:none;
    }
    .checkbox.checked .tick{display:block}

    footer{
      padding: 22px 0 26px;
      background: linear-gradient(180deg, rgba(236,247,241,.0), rgba(236,247,241,.9));
      border-top: 1px solid rgba(219,233,225,.8);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .footer-card{
      border-radius: var(--radius);
      border:1px solid rgba(219,233,225,.9);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 26px rgba(20, 70, 45, .08);
      padding: 16px;
    }
    .footer-card h3{margin:0 0 10px; font-size:15.5px}
    .footer-card p{
      margin:0;
      color: var(--muted);
      font-weight: 800;
      line-height: 1.7;
      font-size: 13px;
    }
    .footer-links{
      margin-top: 12px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
    }
    .footer-links a{
      padding: 10px 12px;
      border-radius: 14px;
      border:1px solid rgba(219,233,225,.95);
      background: rgba(255,255,255,.75);
      color: var(--muted);
      font-weight: 1000;
      font-size: 13px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      word-break:break-word;
    }
    .footer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(43,182,115,.35);
      background: rgba(43,182,115,.08);
      color: var(--text);
    }
    .footer-right{
      display:flex; flex-direction:column; gap:12px;
    }
    .copyright{
      margin-top: 12px;
      color: var(--muted2);
      font-weight: 900;
      font-size: 12.5px;
      line-height: 1.6;
    }

    .float-cs{
      position:fixed;
      right: 16px;
      bottom: 16px;
      z-index: 60;
      display:flex;
      flex-direction:column;
      gap:10px;
      pointer-events:none;
    }
    .float-cs a, .float-cs button{
      pointer-events:auto;
    }
    .float-btn{
      border-radius: 16px;
      border:1px solid rgba(43,182,115,.35);
      background: rgba(255,255,255,.85);
      box-shadow: 0 18px 44px rgba(15,118,108,.20);
      padding: 12px 12px;
      display:flex; gap:10px; align-items:center;
      font-weight: 1000;
      cursor:pointer;
      transition: transform .16s ease, box-shadow .16s ease;
      color: var(--text);
      max-width: 220px;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 24px 58px rgba(15,118,108,.26);
    }
    .float-btn .bubble{
      width:38px; height:38px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(43,182,115,.18), rgba(15,118,108,.10));
      border:1px solid rgba(43,182,115,.28);
      display:flex; align-items:center; justify-content:center;
      color: var(--teal);
      flex:0 0 auto;
      font-weight:1000;
    }
    .float-btn .txt{
      display:flex; flex-direction:column; line-height:1.2;
    }
    .float-btn .txt span:nth-child(1){font-size:13px}
    .float-btn .txt span:nth-child(2){font-size:12px; color:var(--muted2); font-weight:900}
    .to-top{
      width:46px; height:46px;
      border-radius: 18px;
      border:1px solid rgba(219,233,225,.95);
      background: rgba(255,255,255,.85);
      box-shadow: 0 18px 44px rgba(15,118,108,.14);
      cursor:pointer;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      display:flex; align-items:center; justify-content:center;
      color: var(--teal);
      font-weight:1000;
    }
    .to-top:hover{
      transform: translateY(-2px);
      border-color: rgba(43,182,115,.35);
      box-shadow: 0 24px 58px rgba(15,118,108,.22);
    }

    .fade-in{
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in.in{
      opacity:1;
      transform: translateY(0);
    }
    .sr-only{
      position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero h1{font-size: 30px}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .cards-3{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .faq{grid-template-columns: 1fr}
      .case-grid{grid-template-columns:1fr}
      .articles{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .mobile-panel{display:block}
      .nav-links{display:none}
      .menu-btn{display:inline-flex}
      .mobile-panel{display:none}
      .mobile-panel.open{display:block}
      .nav-wrap{padding:10px 0}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .hero-card:before{animation:none}
      .fade-in{transition:none}
      details{transition:none}
      .kpi, .li, .svc, .review, .article, .case-item{transition:none}
    }