:root{
      --bg0:#fff7f3;
      --bg1:#fffdfb;
      --card:#ffffff;
      --text:#171717;
      --muted:#5b5b5b;
      --muted2:#7a7a7a;
      --line:rgba(20,20,20,.10);
      --line2:rgba(20,20,20,.14);
      --shadow:0 18px 40px rgba(18,18,18,.08);
      --shadow2:0 10px 26px rgba(18,18,18,.10);
      --orange:#ff4d2f;
      --orange2:#ff6a3d;
      --deep:#1b1b1f;
      --ink:#111827;
      --accent:#ff3d2a;
      --accent2:#ff8a3a;
      --good:#0f766e;
      --radius:18px;
      --radius2:26px;
      --container:1120px;
      --padX:20px;
      --focus:rgba(255,77,47,.28);
      --grad:linear-gradient(135deg, rgba(255,77,47,.16), rgba(255,138,58,.10) 45%, rgba(255,77,47,.06));
      --grad2:radial-gradient(800px 240px at 18% 0%, rgba(255,77,47,.24), transparent 60%),
              radial-gradient(720px 260px at 88% 18%, rgba(255,138,58,.20), transparent 55%),
              linear-gradient(#fff7f3, #ffffff 70%);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, "Noto Sans", sans-serif;
      color:var(--text);
      background:var(--grad2);
    }
    a{color:inherit; text-decoration:none}
    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:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto;
      background:#fff; padding:10px 12px; border-radius:12px; border:1px solid var(--line2);
      z-index:1000;
    }

    header{
      position:sticky; top:0; z-index:50;
      background:rgba(255,253,251,.78);
      backdrop-filter:saturate(170%) blur(14px);
      border-bottom:1px solid rgba(20,20,20,.06);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width:190px;
    }
    .brand img{
      width:40px; height:40px; border-radius:12px;
      box-shadow:0 10px 22px rgba(255,77,47,.16);
      border:1px solid rgba(255,77,47,.18);
      background:#fff;
    }
    .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(--muted2);
      margin-top:4px;
    }
    nav.desktop-nav{
      display:flex; gap:18px; align-items:center;
      flex-wrap:nowrap;
      overflow:hidden;
    }
    .nav-link{
      font-size:13px; color:rgba(17,17,17,.78);
      padding:8px 8px; border-radius:12px;
      transition:background .2s ease, transform .2s ease, color .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(255,77,47,.10);
      color:rgba(17,17,17,.92);
      transform:translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
      flex-wrap:nowrap;
      justify-content:flex-end;
      min-width:220px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,77,47,.22);
      background:rgba(255,77,47,.08);
      color:rgba(17,17,17,.92);
      font-size:13px;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
      white-space:nowrap;
    }
    .pill:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 30px rgba(255,77,47,.14);
      background:rgba(255,77,47,.12);
    }
    .btn{
      border:1px solid rgba(20,20,20,.10);
      background:#fff;
      color:rgba(17,17,17,.92);
      border-radius:14px;
      padding:10px 14px;
      font-size:13px;
      display:inline-flex; align-items:center; gap:10px;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      user-select:none;
    }
    .btn:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(18,18,18,.08); border-color:rgba(20,20,20,.18)}
    .btn-primary{
      border-color:rgba(255,77,47,.35);
      background:linear-gradient(135deg, rgba(255,77,47,.98), rgba(255,138,58,.92));
      color:#fff;
      box-shadow:0 16px 36px rgba(255,77,47,.20);
    }
    .btn-primary:hover{
      box-shadow:0 20px 44px rgba(255,77,47,.24);
      border-color:rgba(255,77,47,.45);
      background:linear-gradient(135deg, rgba(255,77,47,1), rgba(255,138,58,.98));
    }

    .mobile-actions{display:none}
    .hamburger{
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background:#fff;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .hamburger:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(18,18,18,.08)}
    .hamburger svg{opacity:.85}
    .mobile-drawer{
      display:none;
      padding-bottom:14px;
    }
    .mobile-drawer .panel{
      margin-top:12px;
      background:#fff;
      border:1px solid rgba(20,20,20,.10);
      border-radius:18px;
      box-shadow:0 20px 50px rgba(18,18,18,.08);
      overflow:hidden;
    }
    .mobile-drawer .panel a{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 14px;
      border-bottom:1px solid rgba(20,20,20,.06);
      color:rgba(17,17,17,.92);
      font-size:13px;
    }
    .mobile-drawer .panel a:last-child{border-bottom:none}
    .mobile-drawer .panel a span{color:var(--muted2); font-size:12px}

    main{padding-bottom:24px}
    .hero{
      padding:34px 0 18px;
      position:relative;
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(20,20,20,.08);
      border-radius:var(--radius2);
      box-shadow:0 26px 70px rgba(18,18,18,.08);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .hero-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(700px 260px at 20% 0%, rgba(255,77,47,.22), transparent 62%),
        radial-gradient(520px 220px at 86% 30%, rgba(255,138,58,.18), transparent 55%),
        linear-gradient(135deg, rgba(255,77,47,.10), rgba(255,255,255,.0) 55%);
      pointer-events:none;
      opacity:.95;
    }
    .hero-inner{position:relative}
    .badge-row{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,77,47,.22);
      background:rgba(255,77,47,.08);
      font-size:13px;
      color:rgba(17,17,17,.92);
      white-space:nowrap;
    }
    .badge .dot{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, var(--orange), var(--accent2));
      box-shadow:0 10px 24px rgba(255,77,47,.32);
    }
    .hero h1{
      margin:0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.1;
      color:var(--deep);
    }
    .hero p{
      margin:12px 0 18px;
      color:rgba(17,17,17,.74);
      line-height:1.7;
      font-size:14.5px;
      max-width:64ch;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-bottom:14px;
    }
    .hero-meta{
      display:flex; gap:14px; flex-wrap:wrap; margin-top:10px;
      padding-top:14px;
      border-top:1px dashed rgba(20,20,20,.12);
    }
    .meta-item{
      display:flex; align-items:flex-start; gap:10px;
      min-width:190px;
    }
    .icon{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(255,77,47,.20);
      background:rgba(255,77,47,.10);
      color:rgba(17,17,17,.92);
      flex:0 0 auto;
    }
    .meta-item strong{
      font-size:13.5px;
      display:block;
      margin-top:2px;
    }
    .meta-item span{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.4;
      margin-top:4px;
      display:block;
    }

    .side-stack{
      display:flex; flex-direction:column; gap:14px;
    }
    .side-card{
      background:rgba(255,255,255,.80);
      border:1px solid rgba(20,20,20,.08);
      border-radius:var(--radius2);
      padding:16px;
      box-shadow:0 18px 46px rgba(18,18,18,.07);
      position:relative;
      overflow:hidden;
    }
    .side-card::after{
      content:"";
      position:absolute; inset:auto -60px -80px -60px;
      height:160px;
      background:radial-gradient(closest-side, rgba(255,77,47,.22), transparent 70%);
      pointer-events:none;
    }
    .side-card h2{
      margin:0;
      font-size:14px;
      letter-spacing:.2px;
      color:rgba(17,17,17,.90);
      display:flex; align-items:center; gap:10px;
      position:relative;
    }
    .side-card h2 .spark{
      width:28px; height:28px; border-radius:12px;
      background:rgba(255,77,47,.10);
      border:1px solid rgba(255,77,47,.20);
      display:flex; align-items:center; justify-content:center;
    }
    .kpi{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      margin-top:12px;
      position:relative;
    }
    .kpi .item{
      border:1px solid rgba(20,20,20,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78));
      border-radius:16px;
      padding:12px;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .kpi .item:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(18,18,18,.08);
      border-color:rgba(255,77,47,.24);
    }
    .kpi .num{
      font-size:20px;
      font-weight:780;
      letter-spacing:-.4px;
      color:var(--deep);
    }
    .kpi .label{
      margin-top:6px;
      font-size:12.5px;
      color:var(--muted2);
      line-height:1.35;
    }
    .side-actions{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
      position:relative;
    }
    .btn-ghost{
      background:rgba(255,255,255,.78);
      border-color:rgba(20,20,20,.12);
    }
    .btn-ghost:hover{border-color:rgba(255,77,47,.20)}
    .quick-form{
      margin-top:12px;
      position:relative;
      border-top:1px solid rgba(20,20,20,.08);
      padding-top:12px;
    }
    .quick-row{
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
    }
    .select{
      flex: 1 1 170px;
      display:flex; align-items:center; gap:10px;
      border:1px solid rgba(20,20,20,.12);
      background:#fff;
      border-radius:14px;
      padding:10px 12px;
    }
    .select svg{opacity:.7}
    .select select{
      border:none; outline:none; background:transparent; width:100%;
      font-size:13.5px; color:rgba(17,17,17,.92);
      appearance:none;
    }

    section.block{
      padding:26px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:14px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.35px;
      color:var(--deep);
    }
    .section-head p{
      margin:0;
      color:rgba(17,17,17,.70);
      max-width:72ch;
      font-size:14px;
      line-height:1.7;
    }
    .tagline{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-top:10px;
    }
    .chip{
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.75);
      color:rgba(17,17,17,.84);
      padding:8px 10px;
      border-radius:999px;
      font-size:12.5px;
      display:inline-flex; gap:8px; align-items:center;
      box-shadow:0 10px 26px rgba(18,18,18,.04);
    }
    .chip b{
      font-weight:780;
      color:rgba(17,17,17,.92);
    }

    .cards-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .cards-2{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .card{
      background:rgba(255,255,255,.84);
      border:1px solid rgba(20,20,20,.08);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 18px 44px rgba(18,18,18,.05);
      position:relative;
      overflow:hidden;
    }
    .card::before{
      content:"";
      position:absolute; inset:-1px auto auto -1px;
      width:120px; height:120px;
      background:radial-gradient(closest-side, rgba(255,77,47,.18), transparent 70%);
      pointer-events:none;
      opacity:.9;
    }
    .card > *{position:relative}
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:10px 0 0;
      color:rgba(17,17,17,.70);
      line-height:1.7;
      font-size:13.8px;
    }
    .card .list{
      margin:12px 0 0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .card .list li{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(17,17,17,.84);
      font-size:13.4px;
      line-height:1.45;
    }
    .check{
      width:18px; height:18px; border-radius:7px;
      background:rgba(255,77,47,.10);
      border:1px solid rgba(255,77,47,.22);
      display:inline-flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .check svg{width:12px; height:12px; color:rgba(255,77,47,.95)}
    .card .smallrow{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      padding-top:12px;
      border-top:1px solid rgba(20,20,20,.08);
      color:var(--muted2);
      font-size:12.5px;
    }

    .flow{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .step{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(20,20,20,.08);
      border-radius:var(--radius);
      padding:16px;
      position:relative;
      overflow:hidden;
      box-shadow:0 18px 44px rgba(18,18,18,.05);
    }
    .step::after{
      content:"";
      position:absolute; right:-60px; top:-60px;
      width:140px; height:140px;
      background:radial-gradient(closest-side, rgba(255,138,58,.20), transparent 70%);
      pointer-events:none;
      opacity:.85;
    }
    .step .top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      position:relative;
    }
    .step .num{
      font-size:12.5px;
      color:rgba(17,17,17,.86);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      white-space:nowrap;
    }
    .step h3{
      margin:12px 0 0;
      font-size:16px;
      letter-spacing:-.2px;
      position:relative;
    }
    .step p{
      margin:8px 0 0;
      color:rgba(17,17,17,.70);
      line-height:1.7;
      font-size:13.6px;
      position:relative;
    }

    .compare{
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.82);
      box-shadow:0 22px 58px rgba(18,18,18,.06);
      overflow:hidden;
    }
    .compare-head{
      padding:16px;
      background:linear-gradient(135deg, rgba(255,77,47,.14), rgba(255,255,255,.0) 55%);
      border-bottom:1px solid rgba(20,20,20,.08);
      display:flex; justify-content:space-between; align-items:flex-start; gap:14px; flex-wrap:wrap;
    }
    .rating{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      color:rgba(255,77,47,.98);
      filter: drop-shadow(0 8px 16px rgba(255,77,47,.18));
    }
    .rating .score{
      font-size:26px; font-weight:820; letter-spacing:-.6px; color:var(--deep);
    }
    .rating .outof{
      color:var(--muted2); font-size:13px; margin-top:6px;
      line-height:1.2;
    }
    .compare h3{
      margin:0;
      font-size:16px;
      color:rgba(17,17,17,.92);
    }
    .compare-sub{
      color:rgba(17,17,17,.70);
      margin-top:8px;
      font-size:13.5px;
      line-height:1.7;
      max-width:64ch;
    }
    .table-wrap{
      overflow:auto;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:860px;
      background:#fff;
    }
    th, td{
      padding:14px 12px;
      border-bottom:1px solid rgba(20,20,20,.08);
      border-right:1px solid rgba(20,20,20,.06);
      vertical-align:top;
      font-size:13.5px;
      color:rgba(17,17,17,.86);
    }
    th:last-child, td:last-child{border-right:none}
    th{
      position:sticky; top:0;
      background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.84));
      z-index:1;
      color:rgba(17,17,17,.94);
      text-align:left;
    }
    .td-muted{color:rgba(17,17,17,.66)}
    .badge-good{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      background:rgba(15,118,110,.10);
      border:1px solid rgba(15,118,110,.22);
      color:rgba(9,90,82,.95);
      font-weight:700;
      white-space:nowrap;
    }
    .badge-warn{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      background:rgba(255,77,47,.10);
      border:1px solid rgba(255,77,47,.22);
      color:rgba(170,36,24,.95);
      font-weight:700;
      white-space:nowrap;
    }

    .cases-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .case-card{
      display:grid;
      grid-template-columns: 150px 1fr;
      gap:14px;
      align-items:start;
      padding:16px;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(20,20,20,.08);
      border-radius:var(--radius);
      box-shadow:0 18px 44px rgba(18,18,18,.05);
      overflow:hidden;
    }
    .case-media{
      width:150px;
      border-radius:16px;
      border:1px solid rgba(20,20,20,.08);
      overflow:hidden;
      background:linear-gradient(135deg, rgba(255,77,47,.10), rgba(255,138,58,.06));
      position:relative;
    }
    .case-media .mini-glow{
      position:absolute; inset:-20px;
      background:radial-gradient(closest-side, rgba(255,77,47,.22), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .case-media img{
      position:relative;
      width:100%;
      height:auto;
    }
    .case-card h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .case-card p{margin:8px 0 0; color:rgba(17,17,17,.70); line-height:1.7; font-size:13.6px}
    .case-tags{
      margin-top:12px;
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .case-tags .t{
      font-size:12.5px; color:rgba(17,17,17,.82);
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.72);
      padding:7px 10px; border-radius:999px;
    }

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .article{
      padding:16px;
      border-radius:var(--radius);
      background:rgba(255,255,255,.86);
      border:1px solid rgba(20,20,20,.08);
      box-shadow:0 18px 44px rgba(18,18,18,.05);
      transition:transform .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column;
      min-height:150px;
    }
    .article:hover{transform:translateY(-2px); box-shadow:0 22px 56px rgba(18,18,18,.08)}
    .article .meta{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      color:var(--muted2);
      font-size:12.5px;
    }
    .article h3{
      margin:12px 0 0;
      font-size:15.8px;
      letter-spacing:-.2px;
      line-height:1.4;
    }
    .article p{
      margin:8px 0 0;
      color:rgba(17,17,17,.70);
      font-size:13.4px;
      line-height:1.7;
    }
    .article a.readmore{
      margin-top:auto;
      display:inline-flex; align-items:center; gap:10px;
      color:rgba(255,77,47,.98);
      font-weight:720;
      font-size:13.5px;
      padding-top:12px;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    details.faq-item{
      border-radius:16px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 14px 34px rgba(18,18,18,.04);
      overflow:hidden;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    details.faq-item[open]{
      border-color:rgba(255,77,47,.22);
      box-shadow:0 22px 56px rgba(18,18,18,.07);
      transform:translateY(-1px);
    }
    details.faq-item summary{
      cursor:pointer;
      list-style:none;
      padding:14px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      user-select:none;
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    .q{
      font-weight:760;
      color:rgba(17,17,17,.92);
      font-size:14px;
      letter-spacing:-.1px;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.76);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition:transform .2s ease, border-color .2s ease;
    }
    details[open] .chev{transform:rotate(180deg); border-color:rgba(255,77,47,.22)}
    .a{
      padding:0 14px 14px;
      color:rgba(17,17,17,.72);
      font-size:13.6px;
      line-height:1.75;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .review{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(20,20,20,.08);
      border-radius:var(--radius);
      padding:16px;
      box-shadow:0 18px 44px rgba(18,18,18,.05);
      display:flex; flex-direction:column; gap:10px;
      min-height:220px;
      position:relative;
      overflow:hidden;
    }
    .review::before{
      content:"";
      position:absolute; left:-60px; top:-60px;
      width:140px; height:140px;
      background:radial-gradient(closest-side, rgba(255,77,47,.18), transparent 70%);
      pointer-events:none;
      opacity:.9;
    }
    .review > *{position:relative}
    .review .who{
      display:flex; gap:12px; align-items:center;
    }
    .avatar{
      width:42px; height:42px; border-radius:16px;
      background:linear-gradient(135deg, rgba(255,77,47,.20), rgba(255,138,58,.12));
      border:1px solid rgba(255,77,47,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:840;
      color:rgba(17,17,17,.92);
    }
    .who .name{
      display:flex; flex-direction:column; line-height:1.2;
    }
    .who .name strong{font-size:14px}
    .who .name span{font-size:12.5px; color:var(--muted2); margin-top:4px}
    .review .quote{
      color:rgba(17,17,17,.76);
      line-height:1.75;
      font-size:13.6px;
      margin-top:2px;
    }
    .review .deal{
      margin-top:auto;
      border-top:1px solid rgba(20,20,20,.08);
      padding-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
      color:var(--muted2);
      font-size:12.5px;
    }
    .net{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .badge-mini{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.74);
      color:rgba(17,17,17,.86);
      font-size:12.3px;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .time-item{
      display:grid;
      grid-template-columns: 110px 1fr;
      gap:14px;
      align-items:start;
      padding:16px;
      border-radius:var(--radius);
      background:rgba(255,255,255,.86);
      border:1px solid rgba(20,20,20,.08);
      box-shadow:0 18px 44px rgba(18,18,18,.05);
    }
    .time-item .when{
      color:rgba(17,17,17,.88);
      font-weight:820;
      letter-spacing:-.2px;
      font-size:13px;
      display:flex; align-items:center; gap:10px;
    }
    .time-item .when i{
      width:34px; height:34px; border-radius:14px;
      display:inline-flex; align-items:center; justify-content:center;
      background:rgba(255,77,47,.10);
      border:1px solid rgba(255,77,47,.20);
    }
    .time-item h3{margin:0; font-size:16px; letter-spacing:-.2px}
    .time-item p{margin:8px 0 0; color:rgba(17,17,17,.70); line-height:1.7; font-size:13.6px}

    form.form-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,20,20,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 26px 70px rgba(18,18,18,.08);
      overflow:hidden;
    }
    .form-top{
      padding:16px;
      background:linear-gradient(135deg, rgba(255,77,47,.14), rgba(255,255,255,.0) 58%);
      border-bottom:1px solid rgba(20,20,20,.08);
    }
    .form-top h2{margin:0; font-size:18px; letter-spacing:-.25px}
    .form-top p{margin:8px 0 0; color:rgba(17,17,17,.70); line-height:1.7; font-size:13.8px}
    .form-body{padding:16px}
    .grid-2{
      display:grid; grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:12.8px; color:rgba(17,17,17,.82); font-weight:720;
    }
    .input, select.input, textarea.input{
      border:1px solid rgba(20,20,20,.12);
      background:#fff;
      border-radius:14px;
      padding:12px 12px;
      font-size:13.8px;
      outline:none;
      transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
      color:rgba(17,17,17,.92);
      width:100%;
    }
    textarea.input{min-height:104px; resize:vertical}
    .input:focus{
      border-color:rgba(255,77,47,.35);
      box-shadow:0 0 0 4px var(--focus);
    }
    .submit-row{
      display:flex; gap:12px; align-items:center; flex-wrap:wrap;
      margin-top:14px;
      padding-top:14px;
      border-top:1px dashed rgba(20,20,20,.12);
    }
    .hint{
      color:var(--muted2);
      font-size:12.6px;
      line-height:1.5;
      flex: 1 1 240px;
      min-width:240px;
    }
    .toast{
      position:fixed; left:50%; top:18px; transform:translateX(-50%);
      background:rgba(17,17,17,.92);
      color:#fff;
      padding:12px 14px;
      border-radius:14px;
      box-shadow:0 22px 56px rgba(0,0,0,.18);
      font-size:13.2px;
      z-index:1000;
      opacity:0; pointer-events:none;
      transition:opacity .2s ease, transform .2s ease;
    }
    .toast.show{
      opacity:1; pointer-events:auto;
      transform:translateX(-50%) translateY(0);
    }

    footer{
      padding:20px 0 26px;
      background:linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.72) 30%, rgba(255,255,255,.86));
      border-top:1px solid rgba(20,20,20,.08);
      margin-top:10px;
    }
    .foot-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(20,20,20,.10);
      border-radius:var(--radius2);
      padding:16px;
      box-shadow:0 18px 44px rgba(18,18,18,.05);
    }
    .foot-card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .foot-card p{margin:10px 0 0; color:rgba(17,17,17,.70); line-height:1.7; font-size:13.6px}
    .foot-links{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .foot-links a{
      font-size:13px;
      color:rgba(255,77,47,.98);
      border:1px solid rgba(255,77,47,.22);
      background:rgba(255,77,47,.08);
      padding:9px 11px;
      border-radius:999px;
      transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .foot-links a:hover{
      transform:translateY(-1px);
      box-shadow:0 18px 42px rgba(255,77,47,.14);
      background:rgba(255,77,47,.12);
    }
    .copyright{
      margin-top:12px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      color:rgba(17,17,17,.64);
      font-size:12.6px;
    }

    .float-cs{
      position:fixed;
      right:14px;
      bottom:16px;
      z-index:60;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.12);
      background:rgba(255,255,255,.86);
      box-shadow:0 20px 50px rgba(18,18,18,.16);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .float-btn:hover{
      transform:translateY(-2px);
      border-color:rgba(255,77,47,.28);
      box-shadow:0 26px 70px rgba(18,18,18,.18);
    }
    .qr-pop{
      width:260px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.12);
      background:rgba(255,255,255,.92);
      box-shadow:0 26px 70px rgba(18,18,18,.16);
      overflow:hidden;
      display:none;
    }
    .qr-pop .top{
      padding:12px 14px;
      border-bottom:1px solid rgba(20,20,20,.08);
      background:linear-gradient(135deg, rgba(255,77,47,.12), rgba(255,255,255,.0) 56%);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .qr-pop .top strong{font-size:13.5px}
    .qr-pop .close{
      border:none; background:transparent; cursor:pointer; width:34px; height:34px;
      border-radius:12px; display:flex; align-items:center; justify-content:center;
      transition:background .15s ease;
    }
    .qr-pop .close:hover{background:rgba(20,20,20,.06)}
    .qr-pop .body{padding:12px 14px}
    .qr-pop .body p{margin:0 0 10px; color:rgba(17,17,17,.70); font-size:12.8px; line-height:1.6}
    .qr-img{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.10);
      background:#fff;
      padding:6px;
    }

    .reveal{opacity:0; transform:translateY(10px); transition:opacity .6s ease, transform .6s ease}
    .reveal.show{opacity:1; transform:translateY(0)}
    .anchor-pad{scroll-margin-top:92px}

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      .nav-cta{min-width:auto}
      nav.desktop-nav{display:none}
      .mobile-actions{display:flex; gap:10px; align-items:center}
      .mobile-drawer{display:block}
      .cards-3{grid-template-columns: 1fr}
      .cards-2{grid-template-columns: 1fr}
      .flow{grid-template-columns: 1fr 1fr}
      .reviews{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .cases-grid{grid-template-columns: 1fr}
      .case-card{grid-template-columns: 120px 1fr}
      .time-item{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .foot-grid{grid-template-columns:1fr}
      table{min-width:760px}
      .qr-pop{width:240px}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .btn, .pill, .card, .article, .kpi .item, .float-btn{transition:none}
    }