:root{
      --bg0:#f6fbf7;
      --bg1:#eef7f0;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#5b6b7b;
      --muted2:#7a8a9b;
      --line:rgba(16,24,40,.12);
      --line2:rgba(16,24,40,.08);
      --green:#1f9d73;
      --green2:#2fbf8a;
      --mint:#d9f7ea;
      --mint2:#c7efd9;
      --accent:#0ea5a4;
      --blue:#2563eb;
      --shadow:0 10px 30px rgba(16,24,40,.08);
      --shadow2:0 8px 20px rgba(16,24,40,.10);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --container:1120px;
    }
    *{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", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(47,191,138,.18), transparent 60%),
        radial-gradient(900px 520px at 90% 0%, rgba(14,165,164,.14), transparent 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 45%, #ffffff);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 20px;
    }

    /* Header */
    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(246,251,247,.7);
      border-bottom:1px solid rgba(16,24,40,.06);
    }
    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:220px;
    }
    .brand img{
      width:42px;
      height:42px;
      border-radius:14px;
      box-shadow: 0 8px 18px rgba(31,157,115,.16);
      border:1px solid rgba(31,157,115,.22);
      background:#fff;
      padding:6px;
    }
    .brand .name{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand .name strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand .name span{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
      white-space:nowrap;
    }

    nav .nav-links{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px;
      color:var(--muted);
      padding:8px 10px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      border:1px solid transparent;
      user-select:none;
    }
    .nav-links a:hover{
      background: rgba(31,157,115,.08);
      color:#0f2a1f;
      border-color: rgba(31,157,115,.18);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      flex-shrink:0;
      margin-left:6px;
    }
    .btn{
      appearance:none;
      border:1px solid rgba(16,24,40,.12);
      background:#fff;
      color:var(--text);
      border-radius:14px;
      padding:10px 14px;
      font-weight:650;
      font-size:13px;
      letter-spacing:.2px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      box-shadow: 0 10px 20px rgba(16,24,40,.04);
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(16,24,40,.10);
      border-color: rgba(31,157,115,.25);
    }
    .btn-primary{
      background: linear-gradient(135deg, rgba(31,157,115,1), rgba(14,165,164,1));
      border-color: rgba(31,157,115,.35);
      color:#fff;
      box-shadow: 0 18px 35px rgba(31,157,115,.22);
    }
    .btn-primary:hover{
      border-color: rgba(255,255,255,.25);
      box-shadow: 0 26px 55px rgba(31,157,115,.30);
    }
    .btn-ghost{
      background: rgba(255,255,255,.75);
    }

    .hamburger{
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background:#fff;
      display:none;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      box-shadow: 0 12px 24px rgba(16,24,40,.05);
      transition: transform .2s ease;
    }
    .hamburger:active{transform: translateY(1px)}
    .hamburger .bars{
      width:18px; height:14px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background:#1f2937;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger .bars span:nth-child(1){top:1px}
    .hamburger .bars span:nth-child(2){top:6px}
    .hamburger .bars span:nth-child(3){top:11px}
    .mobile-panel{
      display:none;
      border-top:1px solid rgba(16,24,40,.06);
      padding:12px 0 16px;
      background: rgba(246,251,247,.75);
    }
    .mobile-links{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      padding-top:10px;
    }
    .mobile-links a{
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      border-radius:14px;
      padding:10px 12px;
      color:var(--muted);
      font-size:13px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      user-select:none;
    }
    .mobile-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(31,157,115,.25);
      background:#fff;
      color:#0f2a1f;
    }

    /* Hero */
    .hero{
      padding:46px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.06fr .94fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-left{
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(47,191,138,.22), transparent 55%),
        radial-gradient(520px 360px at 85% 25%, rgba(14,165,164,.16), transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.62));
      border:1px solid rgba(16,24,40,.08);
      border-radius: calc(var(--radius) + 6px);
      box-shadow: var(--shadow);
      padding:26px 24px;
      position:relative;
      overflow:hidden;
      min-height: 360px;
    }
    .hero-left:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        linear-gradient(120deg, rgba(31,157,115,.16), transparent 40%),
        linear-gradient(300deg, rgba(14,165,164,.14), transparent 45%);
      opacity:.9;
      pointer-events:none;
    }
    .hero-content{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      height:100%;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(31,157,115,.10);
      border:1px solid rgba(31,157,115,.20);
      width:fit-content;
      color:#0f2a1f;
      font-weight:700;
      font-size:12px;
      letter-spacing:.2px;
    }
    .dot{
      width:8px; height:8px; border-radius:50%;
      background: linear-gradient(135deg, var(--green), var(--accent));
      box-shadow: 0 0 0 4px rgba(31,157,115,.18);
      animation: pulse 2.6s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform:scale(1); opacity:1}
      50%{transform:scale(1.15); opacity:.8}
    }
    .hero h1{
      margin:16px 0 10px;
      font-size:34px;
      line-height:1.18;
      letter-spacing:-.5px;
    }
    .hero .sub{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width: 54ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
      align-items:center;
    }
    .mini-trust{
      display:flex;
      gap:10px;
      margin-top:auto;
      padding-top:18px;
      flex-wrap:wrap;
    }
    .trust-item{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.7);
      border-radius: 14px;
      min-width: 210px;
    }
    .ic{
      width:34px; height:34px;
      border-radius:12px;
      background: linear-gradient(135deg, rgba(31,157,115,.14), rgba(14,165,164,.10));
      border:1px solid rgba(31,157,115,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#0f2a1f;
      font-weight:900;
    }
    .trust-item strong{
      display:block;
      font-size:13px;
      margin-bottom:4px;
      letter-spacing:.1px;
    }
    .trust-item span{
      display:block;
      font-size:12px;
      color:var(--muted);
      line-height:1.3;
    }

    .hero-right{
      display:flex;
      flex-direction:column;
      gap:14px;
      min-height: 360px;
    }
    .glass-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(16,24,40,.08);
      border-radius: var(--radius);
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      padding:18px 16px;
      overflow:hidden;
      position:relative;
    }
    .glass-card:after{
      content:"";
      position:absolute;
      width:240px;
      height:240px;
      right:-120px;
      top:-120px;
      background: radial-gradient(circle at center, rgba(31,157,115,.25), transparent 60%);
      pointer-events:none;
    }

    .data-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .metric{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.78);
      transition: transform .2s ease, box-shadow .2s ease;
      min-height:92px;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(16,24,40,.10);
    }
    .metric .num{
      font-size:22px;
      font-weight:900;
      letter-spacing:-.4px;
    }
    .metric .lbl{
      margin-top:8px;
      color:var(--muted);
      font-size:12px;
      line-height:1.35;
    }

    .capability{
      display:flex;
      flex-direction:column;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .cap-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .cap-title h3{
      margin:0;
      font-size:15px;
      letter-spacing:.2px;
    }
    .badge{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(31,157,115,.22);
      background: rgba(31,157,115,.10);
      font-weight:750;
      color:#0f2a1f;
      white-space:nowrap;
    }
    .cap-list{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:2px;
    }
    .pill{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.76);
      color:var(--muted);
      font-size:12px;
      font-weight:650;
      display:inline-flex;
      align-items:center;
      gap:8px;
      transition: transform .2s ease, border-color .2s ease;
      user-select:none;
    }
    .pill:hover{
      transform: translateY(-1px);
      border-color: rgba(31,157,115,.22);
      color:#0f2a1f;
    }
    .pill .spark{
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(135deg, rgba(31,157,115,1), rgba(14,165,164,1));
      box-shadow: 0 0 0 4px rgba(31,157,115,.14);
    }

    /* Sections */
    section{
      padding:28px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:16px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
      line-height:1.25;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      max-width:58ch;
    }
    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:18px;
      align-items:stretch;
    }

    .card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(16,24,40,.08);
      border-radius: var(--radius);
      box-shadow: 0 10px 24px rgba(16,24,40,.05);
      padding:18px 16px;
      overflow:hidden;
    }
    .card.soft{
      background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.70));
    }
    .card h3{
      margin:0 0 10px;
      font-size:15px;
      letter-spacing:.2px;
    }
    .list{
      margin:0;
      padding-left:18px;
      color:var(--muted);
      line-height:1.8;
      font-size:13px;
    }
    .list li{margin:7px 0}
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .tag{
      border:1px solid rgba(16,24,40,.10);
      border-radius:999px;
      padding:8px 10px;
      color:var(--muted);
      background: rgba(255,255,255,.72);
      font-size:12px;
      font-weight:650;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step{
      padding:14px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.76);
      position:relative;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:140px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 35px rgba(16,24,40,.10);
      border-color: rgba(31,157,115,.22);
    }
    .step .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .step .idx{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(31,157,115,.10);
      border:1px solid rgba(31,157,115,.22);
      font-weight:900;
      color:#0f2a1f;
    }
    .step h3{
      margin:0;
      font-size:14px;
      letter-spacing:.1px;
      line-height:1.25;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.7;
      margin-top:auto;
    }

    .compare-wrap{
      overflow:hidden;
    }
    .compare-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    table{
      width:100%;
      border-collapse: separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:16px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(16,24,40,.08);
      box-shadow: 0 10px 24px rgba(16,24,40,.05);
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      vertical-align:top;
      font-size:13px;
      color:var(--muted);
      line-height:1.6;
    }
    th{
      color:#102a1f;
      font-size:13px;
      font-weight:850;
      background: linear-gradient(180deg, rgba(31,157,115,.12), rgba(255,255,255,.6));
      border-bottom:1px solid rgba(31,157,115,.18);
    }
    tr:last-child td{border-bottom:none}
    .score{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .score-card{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(16,24,40,.08);
      border-radius: var(--radius);
      box-shadow: 0 10px 24px rgba(16,24,40,.05);
      padding:16px 16px;
      position:relative;
      overflow:hidden;
    }
    .score-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(480px 220px at 30% 0%, rgba(31,157,115,.22), transparent 55%),
        radial-gradient(420px 240px at 100% 40%, rgba(14,165,164,.18), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .score-card > *{position:relative; z-index:1}
    .stars{
      display:flex;
      align-items:center;
      gap:6px;
      flex-wrap:wrap;
      margin-top:6px;
    }
    .star{
      width:18px; height:18px;
      background: linear-gradient(135deg, var(--green), var(--accent));
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      box-shadow: 0 10px 18px rgba(31,157,115,.18);
    }
    .score-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
    }
    .score-top h3{
      margin:0;
      font-size:15px;
      letter-spacing:.2px;
    }
    .score-big{
      font-size:38px;
      font-weight:950;
      letter-spacing:-1px;
      line-height:1;
    }
    .score-meta{
      color:var(--muted);
      font-size:13px;
      margin-top:8px;
      line-height:1.7;
    }
    .small-row{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
    }
    .small-chip{
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }
    .small-chip strong{color:#0f2a1f}

    .tabs{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:8px;
    }
    .tab{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      color:var(--muted);
      cursor:pointer;
      font-size:12.5px;
      font-weight:750;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
      user-select:none;
    }
    .tab:hover{transform: translateY(-1px); border-color: rgba(31,157,115,.22); background:#fff; color:#0f2a1f}
    .tab.active{
      border-color: rgba(31,157,115,.35);
      background: rgba(31,157,115,.12);
      color:#0f2a1f;
    }

    .cases{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .case{
      padding:14px 14px;
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 22px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:168px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .case:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      border-color: rgba(31,157,115,.22);
    }
    .case .top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .case h3{
      margin:0;
      font-size:14px;
      letter-spacing:.1px;
      line-height:1.3;
    }
    .chip{
      border:1px solid rgba(31,157,115,.24);
      background: rgba(31,157,115,.10);
      color:#0f2a1f;
      font-size:12px;
      font-weight:850;
      border-radius:999px;
      padding:7px 10px;
      white-space:nowrap;
    }
    .case p{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.75;
      margin-top:auto;
    }
    .case .meta{
      display:flex; gap:10px; flex-wrap:wrap; color:var(--muted2); font-size:12px; font-weight:650;
    }
    .meta .m{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:14px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.72);
    }
    .m i{
      width:10px; height:10px; border-radius:4px;
      background: linear-gradient(135deg, rgba(31,157,115,1), rgba(14,165,164,1));
      display:inline-block;
    }

    .cards-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .service-item{
      padding:16px 14px;
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:170px;
    }
    .service-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      border-color: rgba(31,157,115,.22);
    }
    .service-item .head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .service-item h3{
      margin:0;
      font-size:15px;
      letter-spacing:.1px;
      line-height:1.3;
    }
    .service-item p{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.8;
    }
    .service-item .bullets{
      margin-top:12px;
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .check{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.6;
    }
    .check .mark{
      width:18px; height:18px;
      border-radius:7px;
      background: rgba(31,157,115,.12);
      border:1px solid rgba(31,157,115,.25);
      position:relative;
      flex-shrink:0;
      margin-top:1px;
    }
    .check .mark:after{
      content:"";
      position:absolute;
      left:5px; top:4px;
      width:7px; height:4px;
      border-left:2px solid rgba(31,157,115,1);
      border-bottom:2px solid rgba(31,157,115,1);
      transform: rotate(-45deg);
    }

    .network{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .timeline{
      display:flex;
      flex-direction:column;
      gap:10px;
      padding-top:4px;
    }
    .t-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.78);
    }
    .t-item .pin{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(31,157,115,.10);
      border:1px solid rgba(31,157,115,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950; color:#0f2a1f;
      flex-shrink:0;
    }
    .t-item strong{
      display:block; font-size:13.5px; letter-spacing:.1px; margin-bottom:4px;
    }
    .t-item span{
      display:block; color:var(--muted); font-size:12.8px; line-height:1.7;
    }

    .faq{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    details.faq-item{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(16,24,40,.08);
      border-radius: var(--radius);
      box-shadow: 0 10px 24px rgba(16,24,40,.04);
      padding:10px 12px;
      overflow:hidden;
    }
    details.faq-item summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      padding:8px 6px;
      user-select:none;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .q{
      font-weight:850;
      font-size:13.5px;
      letter-spacing:.1px;
      line-height:1.5;
    }
    .chev{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
      flex-shrink:0;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      margin-top:2px;
    }
    details[open] .chev{
      transform: rotate(180deg);
      border-color: rgba(31,157,115,.26);
      background: rgba(31,157,115,.08);
    }
    .a{
      color:var(--muted);
      font-size:13px;
      line-height:1.75;
      padding:0 6px 12px;
      margin-top:-2px;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .review{
      padding:16px 14px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(16,24,40,.08);
      box-shadow: 0 10px 24px rgba(16,24,40,.05);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:176px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .review:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      border-color: rgba(31,157,115,.22);
    }
    .review .who{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:38px; height:38px; border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: linear-gradient(135deg, rgba(31,157,115,.14), rgba(14,165,164,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#0f2a1f;
      flex-shrink:0;
    }
    .review h3{
      margin:0;
      font-size:13.5px;
      letter-spacing:.1px;
      line-height:1.3;
    }
    .review .role{
      color:var(--muted2);
      font-size:12.2px;
      margin-top:4px;
      line-height:1.4;
      font-weight:700;
    }
    .review .text{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.8;
      margin-top:auto;
    }

    .posts{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:12px;
    }
    .post{
      padding:14px 14px;
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 24px rgba(16,24,40,.04);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:168px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .post:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,24,40,.10);
      border-color: rgba(31,157,115,.22);
    }
    .post .title{
      margin:0;
      font-size:14px;
      font-weight:900;
      letter-spacing:.1px;
      line-height:1.4;
    }
    .post .meta{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted2);
      font-size:12.2px;
      font-weight:700;
      flex-wrap:wrap;
    }
    .post p{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.75;
      margin-top:auto;
    }
    .post a.read{
      margin-top:12px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:#0f2a1f;
      font-weight:850;
      font-size:13px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(31,157,115,.22);
      background: rgba(31,157,115,.10);
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
      user-select:none;
      width:fit-content;
    }
    .post a.read:hover{transform: translateY(-1px); background: rgba(31,157,115,.14); border-color: rgba(31,157,115,.35)}

    .form-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    form{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .field-row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      font-size:12.5px;
      color:#0f2a1f;
      font-weight:850;
      letter-spacing:.1px;
      display:block;
      margin-bottom:8px;
    }
    input, select, textarea{
      width:100%;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.9);
      border-radius:14px;
      padding:12px 12px;
      color:var(--text);
      font-size:14px;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, transform .05s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(31,157,115,.35);
      box-shadow: 0 0 0 4px rgba(31,157,115,.14);
    }
    .form-side{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .hint{
      color:var(--muted);
      font-size:13px;
      line-height:1.75;
      margin:0;
    }
    .benefits{
      display:flex; flex-direction:column; gap:10px; margin-top:4px;
    }
    .benefit{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.78);
    }
    .benefit .b-ic{
      width:34px; height:34px;
      border-radius:14px;
      background: rgba(14,165,164,.10);
      border:1px solid rgba(14,165,164,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:#0f2a1f;
      flex-shrink:0;
    }
    .benefit strong{display:block; font-size:13.5px; margin-bottom:4px}
    .benefit span{display:block; color:var(--muted); font-size:12.8px; line-height:1.7}

    /* Tag cloud */
    .cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding-top:4px;
    }
    .cloud .cloud-tag{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      color:var(--muted);
      font-size:12.5px;
      font-weight:750;
      cursor:pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
      user-select:none;
    }
    .cloud .cloud-tag:hover{
      transform: translateY(-1px);
      border-color: rgba(31,157,115,.25);
      background: rgba(31,157,115,.10);
      color:#0f2a1f;
    }

    /* Footer */
    footer{
      margin-top:14px;
      background: linear-gradient(180deg, rgba(31,157,115,.08), rgba(255,255,255,.0));
      border-top:1px solid rgba(16,24,40,.08);
      padding:22px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .footer-left{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .footer-brand{
      display:flex; align-items:center; gap:12px;
    }
    .footer-brand img{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(31,157,115,.22);
      background:#fff;
      padding:6px;
      box-shadow: 0 12px 26px rgba(31,157,115,.16);
    }
    .footer-brand strong{font-size:14px; letter-spacing:.2px}
    .footer-brand span{display:block; color:var(--muted); font-size:12.8px; margin-top:4px; line-height:1.6}
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:4px;
    }
    .footer-links a{
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      color:var(--muted);
      font-size:12.5px;
      font-weight:750;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }
    .footer-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(31,157,115,.25);
      background:#fff;
      color:#0f2a1f;
    }

    .footer-right{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .contact-row{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .qr{
      width:96px; border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:10px;
      box-shadow: 0 12px 26px rgba(16,24,40,.06);
      flex-shrink:0;
    }
    .contact-text{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .contact-text p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .copyright{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(16,24,40,.08);
      color:var(--muted2);
      font-size:12.2px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .copy-links{
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center;
    }
    .copy-links a{
      color:var(--muted2);
      font-weight:750;
      border-bottom:1px dashed rgba(16,24,40,.22);
      padding-bottom:2px;
    }
    .copy-links a:hover{color:#0f2a1f}

    /* Floating chat */
    .float-chat{
      position:fixed;
      right:16px;
      bottom:18px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:52px; height:52px;
      border-radius:18px;
      border:1px solid rgba(31,157,115,.25);
      background: linear-gradient(135deg, rgba(31,157,115,1), rgba(14,165,164,1));
      color:#fff;
      box-shadow: 0 20px 45px rgba(31,157,115,.30);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .2s ease, filter .2s ease;
      user-select:none;
    }
    .float-btn:hover{transform: translateY(-2px); filter:saturate(1.06)}
    .float-panel{
      width:252px;
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.88);
      box-shadow: 0 22px 55px rgba(16,24,40,.14);
      overflow:hidden;
      transform-origin: right bottom;
      animation: pop .22s ease both;
    }
    @keyframes pop{
      from{opacity:0; transform: scale(.98) translateY(6px)}
      to{opacity:1; transform: scale(1) translateY(0)}
    }
    .float-panel .head{
      padding:12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(16,24,40,.08);
      background: linear-gradient(180deg, rgba(31,157,115,.08), rgba(255,255,255,.0));
    }
    .float-panel .head strong{font-size:13.5px; letter-spacing:.1px}
    .closex{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      user-select:none;
      transition: transform .2s ease;
      flex-shrink:0;
    }
    .closex:hover{transform: translateY(-1px)}
    .float-panel .body{
      padding:12px 12px 14px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .float-panel .qr{
      width:86px; padding:8px; border-radius:18px;
    }
    .float-panel .body p{
      margin:0;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.7;
    }
    .float-panel .actions{
      padding:0 12px 14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .mini-link{
      flex:1;
      text-align:center;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      color:var(--text);
      font-weight:850;
      font-size:12.8px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      user-select:none;
    }
    .mini-link:hover{
      transform: translateY(-1px);
      border-color: rgba(31,157,115,.22);
      background:#fff;
    }
    .mini-link.primary{
      border-color: rgba(31,157,115,.28);
      background: rgba(31,157,115,.12);
      color:#0f2a1f;
    }

    /* Scroll reveal */
    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.in{
      opacity:1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{opacity:1; transform:none}
      .dot{animation:none}
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-left{min-height:auto}
      .hero-right{min-height:auto}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .compare-grid{grid-template-columns: 1fr}
      .cases{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .posts{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .field-row{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .float-chat{right:12px; bottom:14px}
      .nav-cta{display:none}
      nav .nav-links{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:none}
      header.open .mobile-panel{display:block}
    }