:root{
      --bg0:#fff7f0;
      --bg1:#ffffff;
      --ink:#111827;
      --mut:#4b5563;
      --mut2:#6b7280;
      --line:rgba(17,24,39,.10);
      --card:rgba(255,255,255,.78);
      --card2:rgba(255,255,255,.92);
      --shadow:0 14px 40px rgba(17,24,39,.10);
      --shadow2:0 10px 25px rgba(17,24,39,.10);
      --accent:#6d28d9;
      --accent2:#0ea5e9;
      --accent3:#f97316;
      --good:#16a34a;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:24px;
      --container:1120px;
      --padX:20px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, sans-serif;
      color:var(--ink);
      background:
        radial-gradient(900px 380px at 14% 8%, rgba(109,40,217,.18), transparent 62%),
        radial-gradient(800px 360px at 88% 12%, rgba(14,165,233,.16), transparent 58%),
        radial-gradient(900px 420px at 50% 0%, rgba(249,115,22,.12), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 48%);
    }
    a{color:inherit}
    img{max-width:100%; height:auto; display:block}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }
    .skip{
      position:absolute; left:-9999px; top:10px;
      background:#fff; padding:10px 12px; border:1px solid var(--line); border-radius:12px;
      z-index:9999;
    }
    .skip:focus{left:var(--padX)}
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(14px);
      background:rgba(255,255,255,.62);
      border-bottom:1px solid rgba(17,24,39,.07);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width:220px;
    }
    .brand .logo{
      width:44px; height:44px;
      border-radius:14px;
      background:linear-gradient(135deg, rgba(109,40,217,.18), rgba(14,165,233,.16));
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(17,24,39,.08);
      box-shadow:0 10px 25px rgba(109,40,217,.10);
      overflow:hidden;
    }
    .brand img{width:34px; height:34px; object-fit:contain}
    .brand .name{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .name strong{font-size:14px}
    .brand .name span{font-size:12px; color:var(--mut2); margin-top:4px}
    .menu{
      display:flex; align-items:center; gap:16px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .menu a{
      text-decoration:none;
      font-size:13px;
      color:rgba(17,24,39,.78);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition:transform .15s ease, background .2s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .menu a:hover{
      transform:translateY(-1px);
      background:rgba(255,255,255,.7);
      border-color:rgba(17,24,39,.10);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
      justify-content:flex-end;
      flex-wrap:wrap;
    }
    .btn{
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.84);
      color:rgba(17,24,39,.92);
      padding:10px 14px;
      border-radius:14px;
      font-weight:700;
      font-size:13px;
      text-decoration:none;
      display:inline-flex; align-items:center; gap:10px;
      transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      box-shadow:0 10px 25px rgba(17,24,39,.05);
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 34px rgba(17,24,39,.10);
      border-color:rgba(17,24,39,.20);
    }
    .btn.primary{
      border-color:rgba(109,40,217,.25);
      background:linear-gradient(135deg, rgba(109,40,217,.95), rgba(14,165,233,.90));
      color:#fff;
      box-shadow:0 18px 45px rgba(109,40,217,.22);
    }
    .btn.primary:hover{box-shadow:0 22px 60px rgba(109,40,217,.28)}
    .btn .dot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(255,255,255,.95);
      box-shadow:0 0 0 4px rgba(255,255,255,.18);
    }
    .hamburger{
      display:none;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.8);
      border-radius:14px;
      padding:10px 12px;
      cursor:pointer;
    }
    .hamburger svg{display:block}
    .mobile-panel{
      display:none;
      padding-bottom:12px;
    }
    .mobile-panel .mobile-links{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      padding-top:10px;
    }
    .mobile-panel a{
      text-decoration:none;
      padding:10px 12px;
      border:1px solid rgba(17,24,39,.10);
      border-radius:14px;
      font-size:13px;
      background:rgba(255,255,255,.7);
    }
    .hero{
      padding:34px 0 18px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border:1px solid rgba(17,24,39,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      border-radius:var(--radius2);
      box-shadow:var(--shadow);
      padding:22px;
      overflow:hidden;
      position:relative;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 220px at 14% 10%, rgba(109,40,217,.22), transparent 60%),
        radial-gradient(380px 200px at 86% 12%, rgba(14,165,233,.18), transparent 58%),
        radial-gradient(420px 240px at 48% 0%, rgba(249,115,22,.14), transparent 55%);
      pointer-events:none;
      filter:saturate(110%);
    }
    .hero-inner{
      position:relative;
      display:flex; flex-direction:column; gap:14px;
      min-height:320px;
    }
    .badge-row{
      display:flex; align-items:center; flex-wrap:wrap; gap:10px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.74);
      font-weight:700;
      font-size:12px;
      color:rgba(17,24,39,.86);
    }
    .badge .pill{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, rgba(109,40,217,1), rgba(14,165,233,1));
      box-shadow:0 0 0 4px rgba(109,40,217,.15);
    }
    h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.5px;
      line-height:1.15;
    }
    .lead{
      margin:0;
      color:rgba(17,24,39,.78);
      font-size:14px;
      line-height:1.75;
      max-width:62ch;
    }
    .hero-actions{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top:6px;
    }
    .ghost{
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.64);
      color:rgba(17,24,39,.92);
      padding:10px 14px;
      border-radius:14px;
      text-decoration:none;
      font-weight:700;
      font-size:13px;
      display:inline-flex; align-items:center; gap:10px;
      transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
      box-shadow:0 10px 25px rgba(17,24,39,.05);
    }
    .ghost:hover{transform:translateY(-1px); box-shadow:0 14px 34px rgba(17,24,39,.10)}
    .stat-row{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:auto;
    }
    .stat{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      padding:12px 12px;
      position:relative;
      overflow:hidden;
      transition:transform .2s ease, border-color .2s ease;
    }
    .stat:hover{transform:translateY(-2px); border-color:rgba(17,24,39,.18)}
    .stat .k{
      font-size:22px;
      font-weight:900;
      letter-spacing:-.4px;
    }
    .stat .v{
      margin-top:6px;
      font-size:12px;
      color:rgba(17,24,39,.70);
      line-height:1.4;
    }
    .side-stack{
      display:flex; flex-direction:column; gap:14px;
    }
    .side-card{
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      border-radius:var(--radius2);
      box-shadow:0 12px 30px rgba(17,24,39,.08);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .side-card:after{
      content:"";
      position:absolute; right:-80px; top:-110px;
      width:220px; height:220px;
      background:radial-gradient(circle at 30% 30%, rgba(109,40,217,.35), transparent 60%);
      pointer-events:none;
    }
    .side-title{
      display:flex; align-items:center; gap:12px;
      margin-bottom:10px;
      position:relative;
    }
    .icon{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(17,24,39,.10);
      background:linear-gradient(135deg, rgba(109,40,217,.12), rgba(14,165,233,.10));
    }
    .side-title strong{font-size:15px}
    .side-list{
      display:grid; gap:10px;
      position:relative;
    }
    .side-item{
      display:flex; align-items:flex-start; gap:10px;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.06);
      background:rgba(255,255,255,.58);
      transition:transform .18s ease, border-color .2s ease;
    }
    .side-item:hover{transform:translateY(-2px); border-color:rgba(17,24,39,.18)}
    .check{
      width:18px; height:18px; border-radius:7px;
      background:linear-gradient(135deg, rgba(22,163,74,.18), rgba(14,165,233,.16));
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      margin-top:2px;
      flex:0 0 auto;
    }
    .side-item .t{
      font-weight:800; font-size:13px;
      line-height:1.35;
    }
    .side-item .d{
      margin-top:4px;
      font-size:12px;
      color:rgba(17,24,39,.70);
      line-height:1.5;
    }

    .section{
      padding:34px 0;
    }
    .sec-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:16px;
    }
    .sec-title{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .sec-desc{
      margin:6px 0 0;
      color:rgba(17,24,39,.72);
      font-size:13px;
      line-height:1.7;
      max-width:64ch;
    }
    .chip-row{
      display:flex; flex-wrap:wrap; gap:10px;
      justify-content:flex-end;
    }
    .chip{
      font-size:12px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      padding:8px 10px;
      border-radius:999px;
      color:rgba(17,24,39,.76);
      font-weight:700;
      white-space:nowrap;
    }
    .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{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.70);
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      padding:16px;
      transition:transform .18s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-3px);
      box-shadow:0 18px 45px rgba(17,24,39,.10);
      border-color:rgba(17,24,39,.18);
    }
    .card .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.66);
      font-size:12px;
      font-weight:800;
      color:rgba(17,24,39,.82);
    }
    .card h3{
      margin:12px 0 8px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:rgba(17,24,39,.72);
      font-size:13px;
      line-height:1.7;
    }

    .steps{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:12px;
    }
    .step{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 10px 25px rgba(17,24,39,.06);
      position:relative;
      overflow:hidden;
    }
    .step:before{
      content:"";
      position:absolute; left:-70px; top:-90px;
      width:170px; height:170px;
      background:radial-gradient(circle at 40% 40%, rgba(14,165,233,.18), transparent 62%);
      pointer-events:none;
    }
    .step .num{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.72);
      position:relative;
    }
    .step h3{margin:12px 0 8px; font-size:15px; position:relative}
    .step p{margin:0; color:rgba(17,24,39,.72); font-size:13px; line-height:1.7; position:relative}

    .compare-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 14px 38px rgba(17,24,39,.07);
      overflow:hidden;
    }
    .compare-top{
      padding:16px 16px 0;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .score-pill{
      border-radius:999px;
      border:1px solid rgba(17,24,39,.12);
      background:linear-gradient(135deg, rgba(16,185,129,.12), rgba(14,165,233,.10));
      padding:10px 12px;
      display:flex; align-items:center; gap:10px;
      font-weight:900;
    }
    .stars{letter-spacing:2px; color:#f59e0b; font-size:14px}
    table{
      width:100%;
      border-collapse:collapse;
      margin-top:10px;
      overflow-x:auto;
    }
    .compare-table{
      width:100%;
      display:block;
      overflow-x:auto;
    }
    thead th{
      text-align:left;
      font-size:13px;
      color:rgba(17,24,39,.78);
      background:rgba(255,255,255,.62);
      border-top:1px solid rgba(17,24,39,.06);
      border-bottom:1px solid rgba(17,24,39,.08);
      padding:12px 14px;
      white-space:nowrap;
    }
    tbody td{
      padding:12px 14px;
      border-bottom:1px solid rgba(17,24,39,.06);
      font-size:13px;
      color:rgba(17,24,39,.76);
      vertical-align:top;
      white-space:nowrap;
    }
    tbody tr:hover td{background:rgba(109,40,217,.05)}
    .best{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:900;
      color:rgba(17,24,39,.92);
    }
    .best .b{
      width:18px; height:18px; border-radius:8px;
      background:linear-gradient(135deg, rgba(109,40,217,.18), rgba(14,165,233,.14));
      border:1px solid rgba(17,24,39,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      font-size:12px;
    }

    .two-col{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      align-items:start;
    }

    .timeline{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 14px 34px rgba(17,24,39,.07);
      padding:16px;
    }
    .timeline .trow{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 10px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.06);
      background:rgba(255,255,255,.58);
      margin-bottom:10px;
    }
    .timeline .trow:last-child{margin-bottom:0}
    .tmark{
      width:38px; height:38px; border-radius:16px;
      border:1px solid rgba(17,24,39,.12);
      background:linear-gradient(135deg, rgba(109,40,217,.12), rgba(14,165,233,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
    }
    .ttext strong{font-size:14px}
    .ttext p{margin:6px 0 0; color:rgba(17,24,39,.72); font-size:13px; line-height:1.65}

    .clients-grid{
      display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px;
    }
    .quote{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      position:relative; overflow:hidden;
    }
    .quote:before{
      content:"";
      position:absolute; inset:auto -60px -80px auto;
      width:170px; height:170px;
      background:radial-gradient(circle at 30% 30%, rgba(249,115,22,.22), transparent 60%);
      pointer-events:none;
    }
    .quote .who{
      display:flex; align-items:center; gap:10px;
      position:relative;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      border:1px solid rgba(17,24,39,.12);
      background:linear-gradient(135deg, rgba(109,40,217,.12), rgba(14,165,233,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      color:rgba(17,24,39,.88);
    }
    .who strong{font-size:14px}
    .who span{display:block; margin-top:4px; color:rgba(17,24,39,.66); font-size:12px}
    .quote p{
      margin:12px 0 0;
      color:rgba(17,24,39,.74);
      font-size:13px;
      line-height:1.75;
      position:relative;
    }

    .article-list{
      display:grid; gap:12px;
    }
    .article{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 10px 26px rgba(17,24,39,.06);
      transition:transform .18s ease, border-color .2s ease;
    }
    .article:hover{transform:translateY(-2px); border-color:rgba(17,24,39,.18)}
    .a-badge{
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(17,24,39,.12);
      background:linear-gradient(135deg, rgba(14,165,233,.12), rgba(109,40,217,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      flex:0 0 auto;
    }
    .article .meta{flex:1}
    .article h3{
      margin:0;
      font-size:14px;
      letter-spacing:-.2px;
      line-height:1.45;
    }
    .article .mline{
      margin-top:8px;
      display:flex; gap:10px; flex-wrap:wrap;
      color:rgba(17,24,39,.62);
      font-size:12px;
    }
    .article a{
      text-decoration:none;
      font-weight:900;
      color:rgba(109,40,217,.95);
      white-space:nowrap;
      padding-top:4px;
    }

    .form-card{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.75);
      box-shadow:0 14px 38px rgba(17,24,39,.08);
      padding:16px;
    }
    form{display:grid; gap:12px; margin-top:10px}
    .fields{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    label{display:grid; gap:8px}
    .field-title{
      font-size:12px;
      color:rgba(17,24,39,.72);
      font-weight:800;
      letter-spacing:.2px;
    }
    input, select, textarea{
      width:100%;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.86);
      border-radius:16px;
      padding:11px 12px;
      outline:none;
      font-size:13px;
      color:var(--ink);
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    textarea{min-height:112px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(109,40,217,.35);
      box-shadow:0 0 0 4px rgba(109,40,217,.12);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:2px;
    }
    .small-note{font-size:12px; color:rgba(17,24,39,.66); line-height:1.6}
    .submit{
      border:none;
      cursor:pointer;
      padding:12px 16px;
      border-radius:16px;
      font-weight:1000;
      background:linear-gradient(135deg, rgba(109,40,217,.95), rgba(14,165,233,.90));
      color:#fff;
      box-shadow:0 18px 50px rgba(109,40,217,.22);
      transition:transform .15s ease, box-shadow .2s ease;
      display:inline-flex; align-items:center; gap:10px;
    }
    .submit:hover{transform:translateY(-1px); box-shadow:0 22px 60px rgba(109,40,217,.28)}
    .submit:active{transform:translateY(0px)}
    .toast{
      position:fixed; left:50%; bottom:22px; transform:translateX(-50%);
      background:rgba(17,24,39,.92); color:#fff;
      padding:12px 14px; border-radius:16px;
      box-shadow:0 20px 60px rgba(17,24,39,.24);
      border:1px solid rgba(255,255,255,.12);
      font-size:13px;
      opacity:0; pointer-events:none;
      transition:opacity .2s ease, transform .2s ease;
      z-index:9999;
      max-width:calc(100vw - 28px);
    }
    .toast.show{opacity:1; transform:translateX(-50%) translateY(-4px)}
    .accordion{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.72);
      box-shadow:0 14px 38px rgba(17,24,39,.07);
      overflow:hidden;
    }
    .acc-item{
      border-top:1px solid rgba(17,24,39,.06);
    }
    .acc-item:first-child{border-top:none}
    .acc-btn{
      width:100%;
      text-align:left;
      padding:14px 16px;
      background:transparent;
      border:none;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:950;
      color:rgba(17,24,39,.90);
      font-size:14px;
    }
    .acc-btn span{
      display:flex; align-items:center; gap:10px;
    }
    .acc-btn i{
      width:22px; height:22px; border-radius:9px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      font-style:normal;
      color:rgba(109,40,217,.95);
      flex:0 0 auto;
    }
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition:max-height .25s ease;
    }
    .acc-panel .acc-body{
      padding:0 16px 14px;
      color:rgba(17,24,39,.72);
      line-height:1.75;
      font-size:13px;
    }
    .acc-item.open .acc-panel{max-height:240px}
    .acc-item.open .chev{transform:rotate(180deg)}
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      transition:transform .2s ease;
      flex:0 0 auto;
    }

    .tagcloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .tlink{
      text-decoration:none;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.65);
      padding:8px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      color:rgba(17,24,39,.76);
      transition:transform .15s ease, border-color .2s ease;
      white-space:nowrap;
    }
    .tlink:hover{transform:translateY(-2px); border-color:rgba(17,24,39,.18)}

    .footer{
      margin-top:18px;
      padding:22px 0 28px;
      border-top:1px solid rgba(17,24,39,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.55));
    }
    .foot-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      border-radius:var(--radius2);
      border:1px solid rgba(17,24,39,.08);
      background:rgba(255,255,255,.75);
      padding:16px;
      box-shadow:0 10px 26px rgba(17,24,39,.06);
    }
    .foot-card h3{margin:0 0 10px; font-size:14px}
    .foot-links{
      display:flex; flex-direction:column; gap:10px;
      margin-top:8px;
    }
    .foot-links a{
      text-decoration:none;
      color:rgba(17,24,39,.76);
      font-size:13px;
      font-weight:800;
      padding:8px 10px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.06);
      background:rgba(255,255,255,.65);
      transition:transform .15s ease, border-color .2s ease;
      display:inline-flex; align-items:center; justify-content:space-between;
    }
    .foot-links a:hover{transform:translateY(-2px); border-color:rgba(17,24,39,.18)}
    .foot-small{
      color:rgba(17,24,39,.66);
      font-size:12px;
      line-height:1.7;
      margin:10px 0 0;
    }
    .copyright{
      margin-top:14px;
      display:flex; align-items:center; justify-content:space-between;
      gap:12px; flex-wrap:wrap;
      color:rgba(17,24,39,.62);
      font-size:12px;
    }

    .float-cta{
      position:fixed;
      right:16px; bottom:16px;
      z-index:200;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      text-decoration:none;
      display:flex; align-items:center; gap:12px;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(17,24,39,.12);
      border-radius:18px;
      padding:12px 14px;
      box-shadow:0 20px 60px rgba(17,24,39,.14);
      transition:transform .15s ease, box-shadow .2s ease;
      max-width:calc(100vw - 32px);
    }
    .float-btn:hover{transform:translateY(-2px); box-shadow:0 26px 70px rgba(17,24,39,.18)}
    .float-btn strong{font-size:13px}
    .float-btn span{display:block; font-size:12px; color:rgba(17,24,39,.62); margin-top:3px}
    .qr-pop{
      display:none;
      width:210px;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.92);
      box-shadow:0 30px 90px rgba(17,24,39,.22);
      overflow:hidden;
    }
    .qr-pop header{
      padding:12px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      background:linear-gradient(135deg, rgba(109,40,217,.10), rgba(14,165,233,.08));
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .qr-pop header strong{font-size:13px}
    .qr-pop .close{
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.8);
      border-radius:14px;
      padding:8px 10px;
      cursor:pointer;
      font-weight:900;
      color:rgba(17,24,39,.8);
    }
    .qr-pop .body{
      padding:14px;
    }
    .qr-pop img{
      width:100%;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.08);
      background:#fff;
    }
    .to-top{
      border:none;
      cursor:pointer;
      width:44px; height:44px;
      border-radius:18px;
      background:linear-gradient(135deg, rgba(109,40,217,.95), rgba(14,165,233,.90));
      color:#fff;
      box-shadow:0 22px 60px rgba(109,40,217,.22);
      display:flex; align-items:center; justify-content:center;
      transition:transform .15s ease, box-shadow .2s ease, opacity .2s ease;
      opacity:.0;
      pointer-events:none;
    }
    .to-top.show{opacity:1; pointer-events:auto}
    .to-top:hover{transform:translateY(-2px); box-shadow:0 26px 70px rgba(109,40,217,.28)}

    .reveal{opacity:0; transform:translateY(12px); transition:opacity .6s ease, transform .6s ease}
    .reveal.in{opacity:1; transform:translateY(0)}
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; gap:14px}
      .hero-inner{min-height:auto}
      h1{font-size:30px}
      .stat-row{grid-template-columns:repeat(3, minmax(0,1fr))}
      .grid-3{grid-template-columns:1fr; }
      .grid-2{grid-template-columns:1fr}
      .steps{grid-template-columns:repeat(2, minmax(0,1fr))}
      .clients-grid{grid-template-columns:1fr}
      .two-col{grid-template-columns:1fr}
      .sec-head{align-items:flex-start; flex-direction:column}
      .chip-row{justify-content:flex-start}
      .foot-grid{grid-template-columns:1fr}
      .menu{display:none}
      .hamburger{display:inline-flex; align-items:center; justify-content:center; gap:8px}
      .mobile-panel{display:block}
      .fields{grid-template-columns:1fr}
      .float-cta{right:12px; bottom:12px}
      .to-top{display:none}
    }