:root{
      --bg0:#fff7f1;
      --bg1:#ffffff;
      --text:#1f2937;
      --muted:#5b6676;
      --sub:#6b7280;
      --card:#ffffff;
      --line:rgba(31,41,55,.10);
      --line2:rgba(255,90,40,.22);
      --shadow:0 14px 40px rgba(17,24,39,.08);
      --shadow2:0 10px 24px rgba(17,24,39,.08);
      --orange:#ff5a28;
      --orange2:#ff7a45;
      --orange3:#ff9a6a;
      --deep:#111827;
      --blue:#245bff;
      --good:#0ea5e9;
      --radius:16px;
      --radius2:22px;
      --container:1120px;
      --gap:18px;
      --focus:0 0 0 4px rgba(255,90,40,.18);
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans SC", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1100px 520px at 18% -10%, rgba(255,90,40,.18), transparent 52%),
        radial-gradient(900px 420px at 88% 6%, rgba(255,154,106,.18), transparent 50%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 38%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,247,241,.68);
      border-bottom:1px solid rgba(31,41,55,.08);
    }
    .topbar-inner{
      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 img{
      width:38px;
      height:38px;
      object-fit:contain;
    }
    .brand .brand-meta{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand .brand-name{
      font-weight:800;
      letter-spacing:.2px;
      font-size:14px;
      color:var(--deep);
    }
    .brand .brand-sub{
      font-size:12px;
      color:var(--muted);
      margin-top:3px;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a{
      font-size:13px;
      color:rgba(31,41,55,.82);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      border-color: rgba(255,90,40,.28);
      background: rgba(255,90,40,.08);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:8px;
    }
    .btn{
      appearance:none;
      border:1px solid transparent;
      padding:10px 14px;
      border-radius:999px;
      cursor:pointer;
      font-weight:700;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      display:inline-flex;
      align-items:center;
      gap:10px;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn-primary{
      background: linear-gradient(135deg, var(--orange), var(--orange2));
      color:#fff;
      box-shadow: 0 14px 30px rgba(255,90,40,.24);
    }
    .btn-primary:hover{transform: translateY(-1px); box-shadow: 0 18px 36px rgba(255,90,40,.28)}
    .btn-ghost{
      background: rgba(255,90,40,.07);
      border-color: rgba(255,90,40,.20);
      color: rgba(17,24,39,.96);
    }
    .btn-ghost:hover{transform: translateY(-1px); border-color: rgba(255,90,40,.32); background: rgba(255,90,40,.10)}
    .btn .dot{
      width:10px; height:10px; border-radius:50%;
      background: rgba(255,255,255,.95);
      box-shadow: 0 0 0 5px rgba(255,255,255,.18);
    }

    .burger{
      display:none;
      width:42px; height:42px;
      border-radius:12px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.6);
      cursor:pointer;
      align-items:center;
      justify-content:center;
    }
    .burger:focus{outline:none; box-shadow:var(--focus)}
    .burger .lines{
      width:18px; height:12px; position:relative;
    }
    .burger .lines span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px;
      background: rgba(17,24,39,.82);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger .lines span:nth-child(1){top:0}
    .burger .lines span:nth-child(2){top:5px}
    .burger .lines span:nth-child(3){top:10px}
    .burger[aria-expanded="true"] .lines span:nth-child(1){top:5px; transform: rotate(45deg)}
    .burger[aria-expanded="true"] .lines span:nth-child(2){opacity:0}
    .burger[aria-expanded="true"] .lines span:nth-child(3){top:5px; transform: rotate(-45deg)}

    .mobile-drawer{
      display:none;
      padding-bottom:14px;
    }
    .mobile-drawer .panel{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(31,41,55,.10);
      border-radius:16px;
      padding:12px;
      box-shadow: var(--shadow2);
    }
    .mobile-drawer a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 12px;
      border-radius:12px;
      border:1px solid transparent;
      color: rgba(31,41,55,.9);
      font-weight:650;
      font-size:14px;
    }
    .mobile-drawer a:focus{outline:none; box-shadow:var(--focus)}
    .mobile-drawer a:hover{background: rgba(255,90,40,.08); border-color: rgba(255,90,40,.18)}
    .mobile-drawer .row{
      display:flex;
      flex-direction:column;
      gap:8px;
    }

    header.hero{
      padding:38px 0 18px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:26px;
      align-items:start;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(255,90,40,.22);
      background: rgba(255,90,40,.08);
      color: rgba(17,24,39,.92);
      font-weight:750;
      font-size:13px;
      margin-bottom:14px;
      transform: translateZ(0);
      animation: riseIn .55s ease both;
    }
    @keyframes riseIn{
      from{opacity:0; transform: translateY(8px)}
      to{opacity:1; transform: translateY(0)}
    }
    .badge .chip{
      width:10px; height:10px;
      border-radius:50%;
      background: linear-gradient(135deg, var(--orange), var(--orange2));
      box-shadow:0 0 0 5px rgba(255,90,40,.16);
    }
    h1{
      margin:0;
      font-size:40px;
      letter-spacing:-.8px;
      line-height:1.08;
      color:var(--deep);
      font-weight:900;
      animation: riseIn .65s ease both;
    }
    .hero-lead{
      margin:14px 0 18px;
      color: rgba(31,41,55,.82);
      font-size:15px;
      line-height:1.8;
      max-width:56ch;
      animation: riseIn .75s ease both;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-top:10px;
      animation: riseIn .85s ease both;
    }
    .hero-actions .mini{
      display:flex;
      align-items:center;
      gap:10px;
      color: rgba(31,41,55,.78);
      font-size:13px;
      font-weight:650;
    }
    .hero-actions .mini .sep{
      width:1px; height:18px; background: rgba(31,41,55,.14);
    }

    .hero-visual{
      border-radius: var(--radius2);
      background:
        radial-gradient(500px 240px at 30% 10%, rgba(255,90,40,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65));
      border:1px solid rgba(31,41,55,.10);
      box-shadow: var(--shadow2);
      padding:16px;
      position:relative;
      overflow:hidden;
      min-height:320px;
      animation: riseIn .7s ease both;
    }
    .hero-visual::after{
      content:"";
      position:absolute;
      inset:-120px -120px auto auto;
      width:240px; height:240px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,90,40,.45), rgba(255,90,40,.0) 60%);
      transform: rotate(20deg);
      opacity:.65;
      pointer-events:none;
    }
    .sparkline{
      display:flex;
      gap:10px;
      align-items:flex-end;
      height:96px;
      margin-top:6px;
      padding:10px 10px 0;
    }
    .bar{
      width:10px;
      border-radius:8px;
      background: linear-gradient(180deg, rgba(255,90,40,.95), rgba(255,122,69,.50));
      box-shadow: 0 10px 22px rgba(255,90,40,.18);
      transform-origin: bottom;
      animation: scaleBar .9s ease both;
    }
    @keyframes scaleBar{
      from{transform: scaleY(.45); opacity:.5}
      to{transform: scaleY(1); opacity:1}
    }
    .hero-visual .kpi-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .kpi{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(31,41,55,.10);
      border-radius:16px;
      padding:12px 12px 11px;
      position:relative;
      overflow:hidden;
    }
    .kpi::before{
      content:"";
      position:absolute;
      inset:auto -20px -20px auto;
      width:64px; height:64px;
      border-radius:18px;
      background: rgba(255,90,40,.10);
      transform: rotate(15deg);
    }
    .kpi .num{
      font-weight:950;
      font-size:18px;
      letter-spacing:-.3px;
      color: var(--deep);
    }
    .kpi .label{
      margin-top:4px;
      color: rgba(31,41,55,.70);
      font-size:12.5px;
      line-height:1.4;
      font-weight:650;
    }
    .hero-visual .note{
      margin-top:12px;
      padding:12px;
      border-radius:16px;
      border:1px dashed rgba(255,90,40,.28);
      background: rgba(255,90,40,.06);
      color: rgba(17,24,39,.84);
      font-weight:680;
      line-height:1.6;
      font-size:13px;
    }
    .hero-visual .note span{
      color: rgba(255,90,40,.98);
      font-weight:900;
    }

    main{padding-bottom:30px}
    section{
      padding:44px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
    }
    .section-title{
      margin:0;
      font-size:26px;
      letter-spacing:-.4px;
      line-height:1.2;
      font-weight:950;
      color:var(--deep);
    }
    .section-desc{
      margin:0;
      color: rgba(31,41,55,.74);
      line-height:1.8;
      font-size:14px;
      max-width:68ch;
    }
    .pillrow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .pill{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.65);
      color: rgba(31,41,55,.82);
      font-weight:750;
      font-size:12.5px;
      white-space:nowrap;
    }
    .pill.orange{
      border-color: rgba(255,90,40,.25);
      background: rgba(255,90,40,.07);
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:16px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:16px;
    }
    .card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(31,41,55,.10);
      border-radius: var(--radius);
      box-shadow: 0 10px 22px rgba(17,24,39,.05);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
      border-color: rgba(255,90,40,.22);
    }
    .card .card-title{
      font-weight:900;
      color:var(--deep);
      font-size:16px;
      letter-spacing:-.2px;
      display:flex;
      align-items:center;
      gap:10px;
      margin:0;
    }
    .icon{
      width:34px; height:34px;
      border-radius:12px;
      background: linear-gradient(135deg, rgba(255,90,40,.16), rgba(255,122,69,.10));
      border:1px solid rgba(255,90,40,.20);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .card p{
      margin:10px 0 0;
      color: rgba(31,41,55,.74);
      line-height:1.8;
      font-size:13.5px;
    }

    .timeline{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
      margin-top:14px;
    }
    .step{
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.72);
      position:relative;
      overflow:hidden;
    }
    .step::after{
      content:"";
      position:absolute;
      inset:auto -40px -40px auto;
      width:120px; height:120px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,90,40,.20), transparent 60%);
      opacity:.75;
      pointer-events:none;
    }
    .step .num{
      font-weight:950;
      font-size:24px;
      color: rgba(255,90,40,.95);
      line-height:1;
    }
    .step .t{
      margin-top:8px;
      font-weight:900;
      color:var(--deep);
      letter-spacing:-.2px;
      font-size:15px;
    }
    .step .d{
      margin-top:8px;
      color: rgba(31,41,55,.72);
      line-height:1.7;
      font-size:13.5px;
    }

    .compare-wrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.72);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:860px;
    }
    th,td{
      padding:14px 14px;
      border-bottom:1px solid rgba(31,41,55,.08);
      vertical-align:top;
    }
    th{
      font-size:13px;
      color: rgba(31,41,55,.78);
      font-weight:900;
      background: rgba(255,90,40,.08);
    }
    td{
      color: rgba(31,41,55,.80);
      font-size:13.5px;
      line-height:1.7;
    }
    tr:last-child td{border-bottom:none}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background: rgba(14,165,233,.08);
      border:1px solid rgba(14,165,233,.22);
      color: rgba(13,88,130,.95);
      font-weight:900;
      font-size:12.5px;
      margin-top:6px;
      white-space:nowrap;
    }
    .tag.orange{
      background: rgba(255,90,40,.08);
      border-color: rgba(255,90,40,.22);
      color: rgba(166,55,20,.98);
    }

    .score-card{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .score-left{
      padding:16px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.66));
      position:relative;
      overflow:hidden;
    }
    .score-left::before{
      content:"";
      position:absolute;
      inset:-120px auto auto -120px;
      width:260px; height:260px;
      background: radial-gradient(circle at 30% 30%, rgba(255,90,40,.25), transparent 60%);
      pointer-events:none;
    }
    .stars{
      display:flex;
      align-items:center;
      gap:6px;
      margin-top:8px;
      color: rgba(255,90,40,.98);
      font-weight:900;
    }
    .star{
      width:18px; height:18px;
      display:inline-block;
    }
    .score-num{
      font-weight:1000;
      font-size:44px;
      letter-spacing:-1px;
      color: var(--deep);
      line-height:1;
      margin-top:10px;
    }
    .score-meta{
      margin-top:8px;
      color: rgba(31,41,55,.72);
      line-height:1.7;
      font-size:13.5px;
      position:relative;
      z-index:1;
    }
    .score-right .subcards{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .mini-card{
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.70);
    }
    .mini-card .tt{
      font-weight:950;
      color:var(--deep);
      letter-spacing:-.2px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:14.5px;
    }
    .mini-card .bd{
      margin-top:8px;
      color: rgba(31,41,55,.72);
      line-height:1.7;
      font-size:13.5px;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top:14px;
    }
    details.faq-item{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(31,41,55,.10);
      border-radius:16px;
      padding:12px 14px;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    details.faq-item[open]{
      border-color: rgba(255,90,40,.26);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
      transform: translateY(-2px);
    }
    summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:6px 2px;
    }
    summary::-webkit-details-marker{display:none}
    .q{
      font-weight:900;
      color:var(--deep);
      letter-spacing:-.2px;
      font-size:14.5px;
      line-height:1.5;
    }
    .chev{
      width:34px; height:34px;
      border-radius:12px;
      background: rgba(255,90,40,.08);
      border:1px solid rgba(255,90,40,.20);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease;
    }
    details[open] .chev{transform: rotate(180deg)}
    .a{
      margin-top:10px;
      color: rgba(31,41,55,.74);
      line-height:1.9;
      font-size:13.5px;
      padding:0 2px 6px;
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:16px;
    }
    .review{
      padding:16px;
      border-radius:18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(31,41,55,.10);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .review:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
      border-color: rgba(255,90,40,.22);
    }
    .review .top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .avatar{
      width:42px; height:42px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(255,90,40,.22), rgba(36,91,255,.10));
      border:1px solid rgba(255,90,40,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      color: rgba(17,24,39,.90);
    }
    .review .who{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .review .name{
      font-weight:950;
      color:var(--deep);
      font-size:14.5px;
      line-height:1.2;
    }
    .review .role{
      margin-top:4px;
      color: rgba(31,41,55,.68);
      font-size:12.5px;
      font-weight:700;
      line-height:1.2;
    }
    .review .stars2{
      color: rgba(255,90,40,.98);
      font-weight:900;
      font-size:13px;
      white-space:nowrap;
    }
    .review .txt{
      margin-top:12px;
      color: rgba(31,41,55,.74);
      line-height:1.85;
      font-size:13.5px;
    }

    .cards-list{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:16px;
    }
    .blog-card{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.76);
      display:flex;
      flex-direction:column;
      min-height:188px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .blog-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
      border-color: rgba(255,90,40,.22);
    }
    .blog-card .meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color: rgba(31,41,55,.66);
      font-weight:750;
      font-size:12.5px;
    }
    .blog-card h3{
      margin:10px 0 8px;
      font-size:15.5px;
      letter-spacing:-.2px;
      color: var(--deep);
      font-weight:950;
      line-height:1.35;
    }
    .blog-card p{
      margin:0;
      color: rgba(31,41,55,.72);
      line-height:1.85;
      font-size:13.5px;
      flex:1 1 auto;
    }
    .blog-card .linkrow{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .link-arrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color: rgba(255,90,40,.98);
      font-weight:950;
      font-size:13px;
      white-space:nowrap;
    }
    .small-muted{
      color: rgba(31,41,55,.60);
      font-size:12.5px;
      font-weight:700;
      white-space:nowrap;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .list{
      margin:10px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.72);
    }
    .li .b{
      width:34px; height:34px;
      border-radius:12px;
      background: rgba(255,90,40,.10);
      border:1px solid rgba(255,90,40,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      color: rgba(255,90,40,.98);
      font-weight:1000;
    }
    .li .ct .tt{
      font-weight:950;
      color:var(--deep);
      font-size:14.5px;
      line-height:1.3;
    }
    .li .ct .dd{
      margin-top:6px;
      color: rgba(31,41,55,.72);
      line-height:1.8;
      font-size:13.5px;
    }

    .form-card{
      padding:18px;
      border-radius:20px;
      border:1px solid rgba(31,41,55,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.68));
      box-shadow: 0 14px 40px rgba(17,24,39,.06);
    }
    .form-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:14px;
    }
    .form-top h3{
      margin:0;
      font-size:18px;
      font-weight:1000;
      color:var(--deep);
      letter-spacing:-.3px;
      line-height:1.25;
    }
    .form-top p{
      margin:8px 0 0;
      color: rgba(31,41,55,.72);
      line-height:1.8;
      font-size:13.5px;
      max-width:52ch;
    }
    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .field label{
      font-weight:900;
      font-size:13px;
      color: rgba(31,41,55,.86);
    }
    .input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(31,41,55,.12);
      background: rgba(255,255,255,.86);
      color: rgba(17,24,39,.94);
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    .input:focus, select:focus, textarea:focus{
      box-shadow: var(--focus);
      border-color: rgba(255,90,40,.34);
    }
    textarea{min-height:98px; resize:vertical}
    .span-2{grid-column: span 2}
    .form-actions{
      grid-column: span 2;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:2px;
    }
    .agree{
      color: rgba(31,41,55,.62);
      font-size:12.5px;
      line-height:1.6;
      font-weight:700;
    }
    .agree a{color: rgba(255,90,40,.98); font-weight:950}
    .btn-submit{
      border:none;
      background: linear-gradient(135deg, var(--orange), var(--orange2));
      color:#fff;
      padding:12px 16px;
      border-radius:14px;
      font-weight:1000;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
      box-shadow: 0 16px 32px rgba(255,90,40,.22);
      display:inline-flex;
      align-items:center;
      gap:10px;
    }
    .btn-submit:hover{transform: translateY(-1px); filter:saturate(1.05)}
    .btn-submit:focus{outline:none; box-shadow:var(--focus)}
    .btn-submit .spinner{
      width:14px; height:14px;
      border-radius:50%;
      border:2px solid rgba(255,255,255,.35);
      border-top-color:#fff;
      animation: spin .8s linear infinite;
      display:none;
    }
    .btn-submit.loading .spinner{display:inline-block}
    @keyframes spin{to{transform:rotate(360deg)}}
    .form-status{
      grid-column: span 2;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(14,165,233,.22);
      background: rgba(14,165,233,.08);
      color: rgba(13,88,130,.98);
      font-weight:850;
      font-size:13px;
      display:none;
    }

    .tagcloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }
    .titem{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.70);
      font-weight:850;
      font-size:12.5px;
      color: rgba(31,41,55,.82);
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
      cursor:pointer;
      user-select:none;
    }
    .titem:hover{
      transform: translateY(-2px);
      border-color: rgba(255,90,40,.22);
      background: rgba(255,90,40,.07);
    }

    .imgstrip{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .imgbox{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.70);
      padding:10px;
    }
    .imgbox img{
      width:100%;
      height:auto;
      display:block;
      border-radius:14px;
      object-fit:contain;
    }

    .anchor-grid{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .anchor-card{
      padding:14px;
      border-radius:18px;
      background: rgba(255,255,255,.76);
      border:1px solid rgba(31,41,55,.10);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      cursor:pointer;
    }
    .anchor-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(17,24,39,.10);
      border-color: rgba(255,90,40,.22);
    }
    .anchor-card .h{
      font-weight:1000;
      color:var(--deep);
      letter-spacing:-.2px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:15px;
    }
    .anchor-card .b{
      margin-top:10px;
      color: rgba(31,41,55,.72);
      line-height:1.75;
      font-size:13.5px;
      min-height:46px;
    }

    .footer{
      padding:26px 0 34px;
      border-top:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.55);
    }
    .foot-grid{
      display:grid;
      grid-template-columns: 1.25fr .9fr .85fr;
      gap:16px;
      align-items:start;
    }
    .foot-brand{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .foot-brand img{
      width:42px; height:42px; object-fit:contain;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.8);
    }
    .foot-brand .t{
      font-weight:1000;
      color:var(--deep);
      letter-spacing:-.3px;
      font-size:16px;
      line-height:1.35;
    }
    .foot-brand .d{
      margin-top:8px;
      color: rgba(31,41,55,.70);
      line-height:1.85;
      font-size:13.5px;
    }
    .foot-links h3, .foot-quick h3{
      margin:0 0 10px;
      font-size:13.5px;
      font-weight:1000;
      color: rgba(17,24,39,.92);
      letter-spacing:-.2px;
    }
    .foot-links a{
      display:block;
      padding:8px 0;
      color: rgba(31,41,55,.72);
      font-weight:750;
      font-size:13.5px;
    }
    .foot-links a:hover{color: rgba(255,90,40,.98)}
    .foot-bottom{
      margin-top:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding-top:14px;
      border-top:1px solid rgba(31,41,55,.08);
      color: rgba(31,41,55,.65);
      font-weight:750;
      font-size:12.5px;
    }
    .foot-bottom .right{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }
    .kbd{
      padding:7px 10px;
      border-radius:12px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.7);
      color: rgba(31,41,55,.72);
      font-weight:900;
      cursor:pointer;
      user-select:none;
    }

    .float-contact{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.80);
      backdrop-filter: blur(10px);
      box-shadow: 0 14px 40px rgba(17,24,39,.12);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
      user-select:none;
    }
    .float-btn:hover{
      transform: translateY(-3px);
      border-color: rgba(255,90,40,.22);
      box-shadow: 0 22px 60px rgba(17,24,39,.14);
    }
    .float-pop{
      display:none;
      width:260px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.90);
      box-shadow: 0 22px 70px rgba(17,24,39,.16);
      backdrop-filter: blur(10px);
    }
    .float-pop .head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .float-pop .head .tt{
      font-weight:1000;
      color:var(--deep);
      letter-spacing:-.2px;
      font-size:14px;
    }
    .float-pop .x{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.65);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:1000;
      color: rgba(31,41,55,.70);
    }
    .float-pop .x:hover{color: rgba(255,90,40,.98); border-color: rgba(255,90,40,.20)}
    .float-pop .body{
      display:flex;
      gap:12px;
      align-items:center;
    }
    .float-pop img{
      width:74px; height:74px;
      border-radius:18px;
      object-fit:cover;
      border:1px solid rgba(31,41,55,.10);
      background: #fff;
    }
    .float-pop .meta{
      flex:1 1 auto;
    }
    .float-pop .meta .s{
      font-weight:950;
      color: var(--deep);
      font-size:13.5px;
      line-height:1.2;
    }
    .float-pop .meta .m{
      margin-top:6px;
      color: rgba(31,41,55,.70);
      line-height:1.6;
      font-size:12.5px;
      font-weight:750;
    }

    .toTop{
      position:fixed;
      right:14px;
      bottom:72px;
      z-index:60;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(31,41,55,.10);
      background: rgba(255,255,255,.80);
      backdrop-filter: blur(10px);
      box-shadow: 0 14px 40px rgba(17,24,39,.12);
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      pointer-events:none;
      transform: translateY(10px);
      transition: opacity .2s ease, transform .2s ease;
    }
    .toTop.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; gap:16px}
      h1{font-size:34px}
      .grid-3{grid-template-columns: 1fr}
      .grid-2{grid-template-columns: 1fr}
      .timeline{grid-template-columns: 1fr 1fr}
      .cards-list{grid-template-columns: 1fr}
      .review-grid{grid-template-columns: 1fr}
      .two-col{grid-template-columns: 1fr}
      .anchor-grid{grid-template-columns: 1fr}
      .score-card{grid-template-columns: 1fr}
      table{min-width:760px}
      .foot-grid{grid-template-columns: 1fr; gap:14px}
      .pillrow{justify-content:flex-start}
    }
    @media (max-width: 820px){
      .nav, .nav-cta{display:none}
      .burger{display:flex}
      .mobile-drawer{display:block}
      .mobile-drawer[aria-hidden="true"]{display:none}
      .mobile-drawer[aria-hidden="false"]{display:block}
      header.hero{padding:28px 0 10px}
      h1{font-size:30px}
      section{padding:36px 0}
      .timeline{grid-template-columns: 1fr}
      .review-grid{gap:14px}
      .form-actions{flex-direction:column; align-items:flex-start}
    }