:root{
      --bg0:#f6fbf7;
      --bg1:#f2fbf3;
      --card:#ffffff;
      --text:#1f2a24;
      --muted:#54635a;
      --muted2:#6d7b72;
      --line:rgba(21,46,34,.12);
      --shadow:0 18px 50px rgba(16,45,31,.10);
      --shadow2:0 10px 28px rgba(16,45,31,.10);
      --brand:#1b8a5a;
      --brand2:#2bbf7c;
      --mint:#bff7dd;
      --mint2:#d8fbe8;
      --ink:#0f2a1e;
      --btn:#0f7f54;
      --btn2:#0aa86a;
      --danger:#b42318;
      --radius:16px;
      --radius2:20px;
      --container:1100px;
      --g0:10px;
      --g1:14px;
      --g2:18px;
      --g3:24px;
      --g4:30px;
      --g5:42px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 12% 0%, rgba(43,191,124,.16), transparent 55%),
        radial-gradient(1000px 650px at 88% 10%, rgba(27,138,90,.14), transparent 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 45%, #ffffff 100%);
    }
    a{color:inherit}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:14px; top:14px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
      box-shadow:var(--shadow2);
    }

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:rgba(246,251,247,.72);
      border-bottom:1px solid rgba(21,46,34,.08);
    }
    .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:210px;
    }
    .brand .logo{
      width:34px; height:34px; border-radius:10px;
      background:linear-gradient(135deg, rgba(43,191,124,.20), rgba(27,138,90,.10));
      border:1px solid rgba(21,46,34,.10);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
    }
    .brand .logo img{
      width:100%; height:100%; object-fit:cover; display:block;
    }
    .brand .name{
      display:flex; flex-direction:column; line-height:1.05;
    }
    .brand .name strong{
      font-size:14px; letter-spacing:.2px;
    }
    .brand .name span{
      font-size:12px; color:var(--muted);
      margin-top:4px;
    }
    nav .nav-links{
      display:flex; align-items:center; gap:16px; flex-wrap:wrap; justify-content:flex-end;
    }
    .nav-links a{
      text-decoration:none; font-size:13px; color:var(--muted);
      padding:8px 10px; border-radius:12px;
      border:1px solid transparent;
      transition:transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:rgba(43,191,124,.08);
      border-color:rgba(27,138,90,.16);
      color:var(--text);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      appearance:none; border:none; cursor:pointer;
      border-radius:14px;
      padding:10px 14px;
      font-weight:650;
      letter-spacing:.2px;
      text-decoration:none;
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
      user-select:none;
      line-height:1.1;
      font-size:13px;
    }
    .btn-primary{
      background:linear-gradient(135deg, var(--btn), var(--btn2));
      color:#fff;
      box-shadow:0 10px 26px rgba(10,168,106,.25);
      border:1px solid rgba(255,255,255,.16);
    }
    .btn-primary:hover{ transform:translateY(-1px); box-shadow:0 16px 34px rgba(10,168,106,.28); }
    .btn-ghost{
      background:rgba(255,255,255,.60);
      border:1px solid rgba(21,46,34,.14);
      color:var(--text);
    }
    .btn-ghost:hover{ transform:translateY(-1px); border-color:rgba(27,138,90,.26); background:rgba(255,255,255,.82); }
    .btn-icon{
      width:34px; height:34px; padding:0; border-radius:12px;
    }
    .hamburger{
      display:none;
    }
    .mobile-menu{
      display:none;
    }

    .hero{
      padding:34px 0 10px;
      position:relative;
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:22px;
      align-items:start;
    }
    .hero-copy{
      padding:18px 0;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border:1px solid rgba(27,138,90,.18);
      background:rgba(255,255,255,.65);
      border-radius:999px;
      color:var(--muted);
      font-size:12px;
      box-shadow:0 10px 26px rgba(16,45,31,.06);
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background:radial-gradient(circle at 30% 30%, #7bffd0, var(--brand2));
      box-shadow:0 0 0 6px rgba(43,191,124,.12);
    }
    h1{
      margin:14px 0 10px;
      font-size:40px;
      letter-spacing:-.6px;
      line-height:1.12;
    }
    .subhead{
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width:58ch;
      margin:0;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:18px;
      align-items:center;
    }
    .hero-note{
      margin-top:14px;
      display:flex; gap:12px; flex-wrap:wrap;
      color:var(--muted2);
      font-size:12px;
      align-items:center;
    }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      background:rgba(255,255,255,.62);
      border:1px solid rgba(21,46,34,.10);
      border-radius:14px;
    }
    .pill svg{flex:0 0 auto}
    .hero-card{
      background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.64));
      border:1px solid rgba(21,46,34,.12);
      border-radius:var(--radius2);
      box-shadow:var(--shadow2);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px -2px auto -2px;
      height:86px;
      background:radial-gradient(closest-side at 20% 20%, rgba(43,191,124,.25), transparent 60%),
                 radial-gradient(closest-side at 80% 10%, rgba(27,138,90,.18), transparent 60%);
      pointer-events:none;
    }
    .hero-card-inner{
      position:relative;
    }
    .data-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      margin-top:8px;
    }
    .data-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(21,46,34,.10);
      border-radius:14px;
      padding:12px;
      transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    }
    .data-card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(16,45,31,.12);
      border-color:rgba(27,138,90,.20);
    }
    .data-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      font-size:12px; color:var(--muted);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(27,138,90,.16);
      background:rgba(191,247,221,.45);
      white-space:nowrap;
    }
    .metric{
      font-weight:820; font-size:22px; letter-spacing:-.6px; margin-top:10px;
    }
    .metric small{
      font-size:12px; color:var(--muted2); font-weight:650;
      margin-left:6px;
      letter-spacing:0;
    }
    .data-desc{
      margin-top:6px; font-size:12px; color:var(--muted);
      line-height:1.5;
    }

    .hero-surface{
      margin-top:14px;
      padding-top:12px;
      border-top:1px dashed rgba(21,46,34,.18);
      display:grid;
      gap:10px;
    }
    .mini-row{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-size:12px; line-height:1.55;
    }
    .mini-row strong{ color:var(--text); font-weight:750; }
    .icon{
      width:30px; height:30px; border-radius:12px;
      border:1px solid rgba(21,46,34,.12);
      background:linear-gradient(180deg, rgba(191,247,221,.58), rgba(255,255,255,.55));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }

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

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(21,46,34,.12);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 12px 30px rgba(16,45,31,.06);
      transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    }
    .card:hover{
      transform:translateY(-2px);
      box-shadow:0 22px 50px rgba(16,45,31,.10);
      border-color:rgba(27,138,90,.20);
    }
    .card .card-head{
      display:flex; align-items:center; gap:12px;
      margin-bottom:10px;
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }
    .tag-row{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .tag{
      font-size:12px;
      color:var(--muted);
      border:1px solid rgba(21,46,34,.12);
      background:rgba(255,255,255,.60);
      padding:8px 10px;
      border-radius:999px;
      white-space:nowrap;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .step{
      position:relative;
      overflow:hidden;
    }
    .step:after{
      content:"";
      position:absolute; inset:auto -40px -40px auto;
      width:120px; height:120px;
      background:radial-gradient(circle at 40% 40%, rgba(43,191,124,.18), transparent 62%);
      transform:rotate(15deg);
      pointer-events:none;
    }
    .step .num{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(27,138,90,.18);
      background:rgba(191,247,221,.42);
      display:flex; align-items:center; justify-content:center;
      font-weight:850;
      letter-spacing:-.5px;
      color:var(--ink);
      margin-bottom:10px;
    }
    .step h3{ margin-bottom:8px; font-size:15px }
    .step p{ font-size:13px }

    .compare-wrap{
      background:rgba(255,255,255,.65);
      border:1px solid rgba(21,46,34,.12);
      border-radius:var(--radius2);
      padding:14px;
      box-shadow:0 16px 44px rgba(16,45,31,.08);
    }
    .compare-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:6px 6px 12px;
      border-bottom:1px dashed rgba(21,46,34,.18);
      margin:0 2px 12px;
    }
    .rating{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .star{
      width:42px; height:42px;
      border-radius:16px;
      background:linear-gradient(135deg, rgba(43,191,124,.26), rgba(255,255,255,.60));
      border:1px solid rgba(27,138,90,.18);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 14px 30px rgba(16,45,31,.10);
      flex:0 0 auto;
    }
    .rating strong{ font-size:18px; letter-spacing:-.3px }
    .rating span{ color:var(--muted); font-size:13px; display:block; margin-top:4px; line-height:1.5 }
    .compare-note{
      color:var(--muted);
      font-size:12px;
      line-height:1.7;
      max-width:58ch;
      padding-top:4px;
    }

    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:14px;
      border:1px solid rgba(21,46,34,.12);
      background:#fff;
    }
    .compare-table th, .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(21,46,34,.10);
      vertical-align:top;
      font-size:13px;
      line-height:1.6;
    }
    .compare-table th{
      background:linear-gradient(180deg, rgba(191,247,221,.55), rgba(255,255,255,.92));
      color:var(--ink);
      font-weight:800;
      text-align:left;
      border-bottom:1px solid rgba(21,46,34,.14);
      white-space:nowrap;
    }
    .compare-table tr:last-child td{ border-bottom:none; }
    .cell-strong{ font-weight:820; color:#0f2a1e; }
    .check{
      display:inline-flex; align-items:center; gap:8px;
      color:var(--muted);
      font-weight:650;
    }
    .check svg{ flex:0 0 auto; }
    .muted-plain{ color:var(--muted); }

    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .timeline-card{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(21,46,34,.12);
      background:rgba(255,255,255,.68);
      box-shadow:0 12px 30px rgba(16,45,31,.06);
    }
    .timeline-card h3{ margin:0 0 8px; font-size:16px }
    .timeline-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 0;
      border-top:1px dashed rgba(21,46,34,.16);
    }
    .timeline-item:first-of-type{ border-top:none; padding-top:0 }
    .time-dot{
      width:12px; height:12px; margin-top:6px;
      border-radius:50%;
      background:radial-gradient(circle at 30% 30%, #7bffd0, var(--brand2));
      box-shadow:0 0 0 6px rgba(43,191,124,.12);
      flex:0 0 auto;
    }
    .timeline-item strong{ display:block; font-size:13px }
    .timeline-item span{ display:block; color:var(--muted); font-size:12px; margin-top:4px; line-height:1.6 }

    .faq-grid{
      display:grid; grid-template-columns: 1fr;
      gap:10px;
    }
    details.faq{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(21,46,34,.12);
      border-radius:16px;
      padding:0;
      overflow:hidden;
      box-shadow:0 10px 22px rgba(16,45,31,.06);
      transition:transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    }
    details.faq[open]{
      border-color:rgba(27,138,90,.22);
      box-shadow:0 18px 40px rgba(16,45,31,.10);
      transform:translateY(-1px);
    }
    details.faq summary{
      list-style:none;
      cursor:pointer;
      padding:14px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      font-weight:780;
      font-size:14px;
      color:var(--ink);
    }
    details.faq summary::-webkit-details-marker{ display:none }
    .faq-arrow{
      width:34px; height:34px; border-radius:12px;
      border:1px solid rgba(21,46,34,.12);
      background:rgba(191,247,221,.38);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition:transform .25s var(--ease);
    }
    details.faq[open] .faq-arrow{ transform:rotate(180deg); }
    .faq-body{
      padding:0 14px 14px;
      color:var(--muted);
      font-size:13px;
      line-height:1.85;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .review{
      background:rgba(255,255,255,.70);
      border:1px solid rgba(21,46,34,.12);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 12px 30px rgba(16,45,31,.06);
    }
    .review-top{
      display:flex; align-items:center; gap:12px; margin-bottom:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(21,46,34,.12);
      background:linear-gradient(135deg, rgba(43,191,124,.22), rgba(255,255,255,.65));
      display:flex; align-items:center; justify-content:center;
      font-weight:900; color:var(--ink);
    }
    .review-top strong{ font-size:14px }
    .review-top span{ display:block; color:var(--muted); font-size:12px; margin-top:4px }
    .review p{ margin:0; color:var(--muted); font-size:13px; line-height:1.85 }

    .logos-row{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:12px;
    }
    .logo-chip{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(21,46,34,.12);
      background:rgba(255,255,255,.62);
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }

    .case-grid{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px;
    }
    .case{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(21,46,34,.12);
      background:rgba(255,255,255,.72);
      box-shadow:0 12px 30px rgba(16,45,31,.06);
      display:flex; flex-direction:column; gap:10px;
      overflow:hidden;
      position:relative;
    }
    .case:before{
      content:"";
      position:absolute; inset:-40px -40px auto auto;
      width:150px; height:150px;
      background:radial-gradient(circle at 45% 45%, rgba(43,191,124,.18), transparent 58%);
      pointer-events:none;
      transform:rotate(18deg);
    }
    .case-head{
      position:relative;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .case h3{ margin:0; font-size:15px }
    .case p{ margin:0; color:var(--muted); font-size:13px; line-height:1.8; position:relative; }
    .case .meta{
      position:relative;
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .meta .chip{
      font-size:12px; color:var(--muted);
      background:rgba(191,247,221,.32);
      border:1px solid rgba(27,138,90,.16);
      padding:8px 10px; border-radius:999px;
      white-space:nowrap;
    }
    .case .case-link{
      position:relative;
      margin-top:auto;
      display:inline-flex; align-items:center; gap:10px;
      text-decoration:none;
      color:var(--text);
      font-weight:750;
      font-size:13px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(21,46,34,.12);
      background:rgba(255,255,255,.62);
      transition:transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
      width:fit-content;
    }
    .case .case-link:hover{
      transform:translateY(-1px);
      border-color:rgba(27,138,90,.22);
      background:rgba(255,255,255,.82);
    }

    .article-grid{
      display:grid; grid-template-columns: 1.2fr .8fr; gap:14px;
      align-items:start;
    }
    .article-list{
      display:grid; gap:10px;
    }
    .article-item{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(21,46,34,.12);
      background:rgba(255,255,255,.70);
      box-shadow:0 10px 22px rgba(16,45,31,.06);
      transition:transform .25s var(--ease), border-color .25s var(--ease);
    }
    .article-item:hover{ transform:translateY(-2px); border-color:rgba(27,138,90,.20); }
    .article-item strong{ font-size:14px; line-height:1.5 }
    .article-item span{ display:block; margin-top:6px; color:var(--muted); font-size:12px; line-height:1.6 }
    .article-item a{
      text-decoration:none;
      font-weight:800; font-size:12px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(21,46,34,.12);
      background:rgba(191,247,221,.26);
      white-space:nowrap;
      transition:transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
      margin-top:2px;
    }
    .article-item a:hover{ transform:translateY(-1px); border-color:rgba(27,138,90,.22); background:rgba(191,247,221,.40); }

    .form-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(21,46,34,.12);
      border-radius:var(--radius2);
      padding:16px;
      box-shadow:0 16px 44px rgba(16,45,31,.08);
    }
    form .row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:block;
      font-size:12px;
      color:var(--muted);
      margin:2px 0 8px;
      font-weight:650;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(21,46,34,.14);
      background:rgba(255,255,255,.85);
      padding:12px 12px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition:border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
    }
    textarea{ min-height:110px; resize:vertical; }
    input:focus, select:focus, textarea:focus{
      border-color:rgba(27,138,90,.32);
      box-shadow:0 0 0 4px rgba(43,191,124,.14);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top:12px; flex-wrap:wrap;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12px;
      line-height:1.6;
      max-width:52ch;
    }
    .toast{
      position:fixed;
      left:50%; transform:translateX(-50%);
      bottom:18px;
      background:#0f2a1e;
      color:#fff;
      padding:12px 14px;
      border-radius:14px;
      box-shadow:0 18px 50px rgba(0,0,0,.25);
      font-size:13px;
      z-index:200;
      opacity:0; pointer-events:none;
      transition:opacity .2s var(--ease), transform .2s var(--ease);
    }
    .toast.show{
      opacity:1; pointer-events:auto;
      transform:translateX(-50%) translateY(-2px);
    }

    footer{
      margin-top:18px;
      background:linear-gradient(180deg, rgba(15,42,30,.98), rgba(12,34,24,.98));
      color:#e7f3ec;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .footer-wrap{
      padding:26px 0 18px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .footer-brand{
      display:flex; gap:14px; align-items:flex-start;
    }
    .footer-brand .logo{
      width:44px; height:44px; border-radius:16px;
      border:1px solid rgba(255,255,255,.14);
      background:linear-gradient(135deg, rgba(43,191,124,.35), rgba(255,255,255,.08));
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .footer-brand .logo img{ width:100%; height:100%; object-fit:cover }
    .footer-brand strong{ font-size:15px }
    .footer-brand p{ margin:8px 0 0; color:rgba(231,243,236,.86); font-size:13px; line-height:1.8 }
    .footer-links{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
    }
    .footer-links h3{
      margin:0 0 10px;
      font-size:13px; color:#ffffff;
      letter-spacing:.2px;
    }
    .footer-links a{
      display:block;
      text-decoration:none;
      color:rgba(231,243,236,.88);
      font-size:13px;
      padding:8px 0;
      border-bottom:1px dashed rgba(255,255,255,.10);
      transition:color .18s var(--ease), transform .18s var(--ease);
      white-space:nowrap;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(2px);
    }
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.10);
      margin-top:14px;
      padding-top:14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .copy{
      color:rgba(231,243,236,.78);
      font-size:12px;
      line-height:1.6;
    }
    .friendships{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .friendships a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:rgba(231,243,236,.88);
      font-size:12px;
      transition:transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
      white-space:nowrap;
    }
    .friendships a:hover{
      transform:translateY(-1px);
      border-color:rgba(43,191,124,.35);
      background:rgba(43,191,124,.14);
      color:#fff;
    }

    .backtop{
      position:fixed;
      right:14px; bottom:14px;
      width:44px; height:44px;
      border-radius:16px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(21,46,34,.14);
      box-shadow:0 18px 50px rgba(16,45,31,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      z-index:150;
      opacity:0; pointer-events:none;
      transform:translateY(10px);
      transition:opacity .22s var(--ease), transform .22s var(--ease);
    }
    .backtop.show{
      opacity:1; pointer-events:auto;
      transform:translateY(0);
    }

    .float-cs{
      position:fixed;
      right:14px; bottom:68px;
      z-index:160;
      display:flex; flex-direction:column; gap:10px; align-items:flex-end;
      pointer-events:none;
    }
    .float-cs .bubble{
      pointer-events:auto;
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      background:rgba(255,255,255,.82);
      border:1px solid rgba(21,46,34,.14);
      box-shadow:0 18px 50px rgba(16,45,31,.12);
      cursor:pointer;
      transition:transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
      max-width:240px;
    }
    .float-cs .bubble:hover{
      transform:translateY(-2px);
      border-color:rgba(27,138,90,.22);
      background:rgba(255,255,255,.95);
    }
    .float-cs .bubble .txt{
      display:flex; flex-direction:column; gap:2px;
      line-height:1.1;
      min-width:0;
    }
    .float-cs .bubble strong{ font-size:13px }
    .float-cs .bubble span{ color:var(--muted); font-size:12px }
    .float-cs img{
      width:46px; height:46px; border-radius:18px;
      border:1px solid rgba(21,46,34,.12);
      background:rgba(191,247,221,.25);
      object-fit:cover;
      display:block;
    }

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

    .anchor-space{ scroll-margin-top:92px; }

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      h1{ font-size:34px; }
      .steps{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .grid-3{ grid-template-columns: 1fr; }
      .grid-2{ grid-template-columns: 1fr; }
      .reviews{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .article-grid{ grid-template-columns: 1fr; }
      .timeline{ grid-template-columns: 1fr; }
      .footer-grid{ grid-template-columns: 1fr; }
      .footer-links{ grid-template-columns: 1fr; }
      nav .nav-links{ display:none; }
      .hamburger{ display:inline-flex; }
      .mobile-menu{
        display:block;
        overflow:hidden;
        max-height:0;
        transition:max-height .35s var(--ease);
      }
      .mobile-menu.open{ max-height:420px; }
      .mobile-menu-inner{
        padding:10px 0 16px;
        border-top:1px solid rgba(21,46,34,.08);
      }
      .mobile-menu a{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:12px 8px;
        text-decoration:none;
        border-radius:14px;
        color:var(--muted);
        border:1px solid transparent;
        transition:background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
        font-size:13px;
      }
      .mobile-menu a:hover{
        background:rgba(43,191,124,.08);
        border-color:rgba(27,138,90,.16);
        color:var(--text);
      }
      .mobile-cta{
        margin-top:12px;
        display:flex; gap:10px; flex-wrap:wrap;
      }
      form .row{ grid-template-columns: 1fr; }
      .float-cs{ right:12px; bottom:66px; }
      .friendships{ justify-content:flex-start; }
      .float-cs .bubble{ display:none; }
    }