:root{
      --bg0:#0b1020;
      --bg1:#0f172a;
      --card:#ffffff;
      --muted:#6b7280;
      --text:#161616;
      --sub:#2b2b2b;
      --line:rgba(16,24,40,.10);
      --soft:rgba(255,255,255,.72);
      --shadow:0 16px 40px rgba(0,0,0,.08);
      --shadow2:0 10px 26px rgba(0,0,0,.10);
      --radius:18px;

      --brand:#ff6a2a;
      --brand2:#ff3b2f;
      --brand3:#ff9a3c;
      --accent:#ff7a1a;
      --accent2:#ff3b2f;
      --deep:#0f172a;
      --ink:#0b1220;

      --focus:rgba(255, 106, 42, .35);
      --navH:72px;

      --container:1120px;
      --pad:20px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Noto Sans SC","Microsoft YaHei", "Source Han Sans SC", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 600px at 15% -5%, rgba(255,106,42,.26), transparent 55%),
        radial-gradient(900px 540px at 90% 10%, rgba(255,59,47,.18), transparent 55%),
        radial-gradient(900px 540px at 40% 85%, rgba(255,154,60,.10), transparent 55%),
        linear-gradient(180deg, #fff7f2 0%, #ffffff 32%, #fafafa 100%);
    }

    a{color:inherit; text-decoration:none}
    .container{
      width:min(var(--container), calc(100% - var(--pad)*2));
      margin:0 auto;
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.72);
      backdrop-filter:saturate(1.2) blur(12px);
      border-bottom:1px solid rgba(16,24,40,.08);
    }
    .topbar-inner{
      height:var(--navH);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }
    .brand .logo{
      width:40px;
      height:40px;
      border-radius:12px;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(255,106,42,.20), rgba(255,59,47,.10));
      border:1px solid rgba(255,106,42,.25);
    }
    .brand .logo img{
      width:100%;
      height:auto;
      display:block;
    }
    .brand .name{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brand .name strong{
      font-size:14px;
      letter-spacing:.2px;
      color:#0b1220;
    }
    .brand .name span{
      font-size:12px;
      color:var(--muted);
    }

    .nav{
      display:flex;
      align-items:center;
      gap:14px;
    }
    .nav a{
      font-size:13px;
      color:rgba(11,18,32,.86);
      padding:10px 10px;
      border-radius:12px;
      transition: background .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background:rgba(255,106,42,.10);
      transform:translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:14px;
      border:1px solid rgba(0,0,0,.08);
      background:#fff;
      color:#0b1220;
      font-weight:650;
      font-size:13.5px;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      box-shadow:0 10px 20px rgba(0,0,0,.05);
      user-select:none;
    }
    .btn:focus{outline:3px solid var(--focus); outline-offset:2px}
    .btn:hover{transform:translateY(-1px); box-shadow:0 14px 26px rgba(0,0,0,.08)}
    .btn.primary{
      border-color:rgba(255,106,42,.35);
      background:linear-gradient(135deg, rgba(255,106,42,.98), rgba(255,59,47,.98));
      color:#fff;
      box-shadow:0 16px 30px rgba(255,59,47,.22);
    }
    .btn.primary:hover{
      box-shadow:0 20px 38px rgba(255,59,47,.28);
    }
    .btn.ghost{
      background:rgba(255,255,255,.65);
      border-color:rgba(16,24,40,.12);
      box-shadow:none;
    }

    .icon-dot{
      width:9px;height:9px;border-radius:999px;
      background:rgba(255,255,255,.9);
      box-shadow:0 0 0 6px rgba(255,255,255,.18);
      flex:0 0 auto;
    }

    .mobile-toggle{
      display:none;
      width:44px;height:44px;border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background:#fff;
      align-items:center;justify-content:center;
      box-shadow:0 10px 20px rgba(0,0,0,.05);
    }
    .mobile-toggle svg{display:block}
    .mobile-panel{
      display:none;
      padding:12px 0 18px 0;
    }
    .mobile-panel .row{
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-panel a{
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.7);
      font-weight:650;
      font-size:13.5px;
    }

    @media (max-width: 980px){
      .nav{display:none}
      .nav-cta{display:none}
      .mobile-toggle{display:flex}
      .mobile-panel{display:block}
      .brand{min-width:auto}
    }

    .hero{
      padding:34px 0 18px 0;
      position:relative;
      overflow:hidden;
    }
    .hero .grid{
      display:grid;
      grid-template-columns: 1.12fr .88fr;
      gap:22px;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .hero{padding:22px 0 8px 0}
      .hero .grid{grid-template-columns:1fr; gap:16px}
    }

    .hero-left{
      border-radius:var(--radius);
      background:
        radial-gradient(900px 400px at 20% 0%, rgba(255,106,42,.20), transparent 60%),
        radial-gradient(700px 420px at 75% 35%, rgba(255,59,47,.14), transparent 56%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.92));
      border:1px solid rgba(255,106,42,.18);
      box-shadow:0 22px 70px rgba(255,59,47,.10);
      padding:26px;
      position:relative;
      min-height:320px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
    }
    .hero-left:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(800px 320px at 15% 20%, rgba(255,106,42,.20), transparent 55%),
        radial-gradient(640px 300px at 85% 10%, rgba(255,59,47,.16), transparent 52%);
      pointer-events:none;
      filter:saturate(1.2);
    }
    .hero-left > *{position:relative; z-index:1}

    .kicker{
      display:flex; align-items:center; gap:10px;
      color:rgba(11,18,32,.86);
      font-weight:720;
      font-size:12.5px;
      letter-spacing:.2px;
    }
    .kicker .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.65);
      border:1px solid rgba(16,24,40,.12);
      box-shadow:0 10px 22px rgba(0,0,0,.05);
    }
    .spark{
      width:10px;height:10px;border-radius:3px;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      transform:rotate(15deg);
      box-shadow:0 0 0 6px rgba(255,106,42,.16);
    }

    h1{
      margin:14px 0 10px 0;
      font-size:34px;
      line-height:1.15;
      letter-spacing:-.5px;
      color:#0b1220;
    }
    @media (max-width: 520px){
      h1{font-size:28px}
      .hero-left{padding:18px}
    }

    .lead{
      margin:0;
      max-width:64ch;
      font-size:14.8px;
      line-height:1.85;
      color:rgba(11,18,32,.78);
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
      align-items:center;
    }
    .trust-row{
      margin-top:16px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      color:rgba(11,18,32,.70);
      font-size:12.8px;
      font-weight:650;
    }
    .trust-row .tag{
      padding:10px 12px;
      border-radius:14px;
      border:1px dashed rgba(255,106,42,.30);
      background:rgba(255,255,255,.62);
    }

    .hero-right{
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
      border:1px solid rgba(16,24,40,.10);
      box-shadow:0 18px 50px rgba(0,0,0,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .hero-right:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(520px 260px at 90% 10%, rgba(255,106,42,.20), transparent 60%),
        radial-gradient(460px 240px at 30% 85%, rgba(255,59,47,.12), transparent 60%);
      pointer-events:none;
    }
    .hero-right > *{position:relative; z-index:1}

    .metric-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    @media (max-width: 980px){
      .metric-grid{grid-template-columns:1fr 1fr}
    }
    .metric{
      padding:14px 14px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.78);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .metric:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 30px rgba(0,0,0,.08);
    }
    .metric .num{
      font-size:20px;
      font-weight:850;
      letter-spacing:-.3px;
      color:#0b1220;
      display:flex; align-items:baseline; gap:8px;
    }
    .metric .num span{
      font-size:12px;
      color:rgba(11,18,32,.62);
      font-weight:750;
      letter-spacing:.2px;
    }
    .metric .label{
      margin-top:6px;
      font-size:12.8px;
      color:rgba(11,18,32,.72);
      line-height:1.4;
      font-weight:650;
    }

    .quote-box{
      padding:14px 14px;
      border-radius:16px;
      border:1px solid rgba(255,106,42,.18);
      background:linear-gradient(135deg, rgba(255,106,42,.10), rgba(255,59,47,.06));
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .quote-box .mark{
      width:38px;height:38px;border-radius:14px;
      background:linear-gradient(135deg, rgba(255,106,42,.95), rgba(255,59,47,.95));
      box-shadow:0 16px 26px rgba(255,59,47,.20);
      display:flex;align-items:center;justify-content:center;
      color:#fff;
      font-weight:900;
      flex:0 0 auto;
    }
    .quote-box p{
      margin:0;
      font-size:13.5px;
      line-height:1.7;
      color:rgba(11,18,32,.78);
      font-weight:650;
    }

    .section{
      padding:34px 0;
    }
    .section.tight{padding:26px 0}
    .section-title{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .section-title h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.3px;
      color:#0b1220;
    }
    .section-title p{
      margin:0;
      color:rgba(11,18,32,.72);
      font-size:13.5px;
      line-height:1.6;
      max-width:64ch;
      font-weight:600;
    }

    .cards-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    @media (max-width: 980px){
      .cards-3{grid-template-columns:1fr}
    }

    .card{
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.85);
      box-shadow:0 10px 26px rgba(0,0,0,.05);
      padding:16px;
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(0,0,0,.08);
      border-color:rgba(255,106,42,.22);
    }
    .card .h{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .card h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
      color:#0b1220;
    }
    .chip{
      font-size:12px;
      font-weight:800;
      color:rgba(255,59,47,.95);
      background:rgba(255,59,47,.10);
      border:1px solid rgba(255,59,47,.18);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .card p{
      margin:0;
      color:rgba(11,18,32,.72);
      font-size:13.4px;
      line-height:1.75;
      font-weight:600;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .two-col{grid-template-columns:1fr}
    }

    .steps{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .step{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 10px 22px rgba(0,0,0,.04);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .step:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 32px rgba(0,0,0,.07);
    }
    .step .idx{
      width:38px;height:38px;border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:#fff;
      background:linear-gradient(135deg, rgba(255,106,42,.98), rgba(255,59,47,.98));
      box-shadow:0 16px 26px rgba(255,59,47,.20);
      flex:0 0 auto;
    }
    .step .t strong{
      display:block;
      font-size:14.8px;
      color:#0b1220;
      margin-top:1px;
    }
    .step .t span{
      display:block;
      margin-top:6px;
      font-size:13.3px;
      color:rgba(11,18,32,.72);
      line-height:1.7;
      font-weight:600;
    }

    .compare-wrap{
      border-radius:var(--radius);
      background:rgba(255,255,255,.86);
      border:1px solid rgba(16,24,40,.10);
      overflow:hidden;
      box-shadow:0 12px 34px rgba(0,0,0,.06);
    }
    .compare-header{
      padding:14px 16px;
      border-bottom:1px solid rgba(16,24,40,.08);
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      background:
        radial-gradient(700px 300px at 0% 0%, rgba(255,106,42,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
    }
    .score{
      display:flex; flex-direction:column; align-items:flex-end; gap:4px;
    }
    .score .star{
      display:flex; gap:6px; align-items:center;
      font-weight:900;
      color:rgba(255,59,47,.95);
    }
    .score .num{
      font-size:20px; font-weight:950; letter-spacing:-.4px;
      color:#0b1220;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13.3px;
    }
    thead th{
      text-align:left;
      padding:12px 14px;
      color:rgba(11,18,32,.86);
      font-weight:900;
      background:rgba(250,250,250,.9);
      border-bottom:1px solid rgba(16,24,40,.08);
      white-space:nowrap;
    }
    tbody td{
      padding:12px 14px;
      border-bottom:1px solid rgba(16,24,40,.08);
      color:rgba(11,18,32,.74);
      font-weight:650;
      vertical-align:top;
    }
    tbody tr:last-child td{border-bottom:none}
    .yes{
      color:rgba(11,18,32,.86);
      font-weight:950;
      display:flex; align-items:center; gap:8px;
    }
    .yes i{
      width:18px;height:18px;border-radius:6px;
      background:rgba(255,106,42,.14);
      border:1px solid rgba(255,106,42,.22);
      display:inline-flex;align-items:center;justify-content:center;
      color:rgba(255,59,47,.95);
      font-style:normal;
      font-weight:950;
      flex:0 0 auto;
    }
    .no{
      color:rgba(11,18,32,.60);
      font-weight:750;
    }

    .rating-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(255,106,42,.22);
      background:linear-gradient(135deg, rgba(255,106,42,.12), rgba(255,59,47,.06));
      box-shadow:0 14px 26px rgba(255,59,47,.10);
      font-weight:900;
      color:#0b1220;
      white-space:nowrap;
    }
    .rating-badge .dot{
      width:12px;height:12px;border-radius:4px;
      background:linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow:0 0 0 7px rgba(255,106,42,.15);
    }

    .list-inline{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .list-inline span{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.75);
      color:rgba(11,18,32,.74);
      font-weight:800;
      font-size:12.6px;
      transition: transform .15s ease, border-color .2s ease;
    }
    .list-inline span:hover{
      transform:translateY(-1px);
      border-color:rgba(255,106,42,.22);
    }

    .gallery{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .gallery{grid-template-columns:1fr}
    }
    .case-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:12px;
    }
    @media (max-width: 520px){
      .case-grid{grid-template-columns:1fr}
    }
    .case-item{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.86);
      overflow:hidden;
      box-shadow:0 10px 26px rgba(0,0,0,.05);
      transition: transform .18s ease, box-shadow .2s ease;
      display:flex; flex-direction:column;
    }
    .case-item:hover{transform:translateY(-2px); box-shadow:0 18px 34px rgba(0,0,0,.08)}
    .case-item .thumb{
      aspect-ratio: 16 / 10;
      background:
        radial-gradient(700px 220px at 20% 0%, rgba(255,106,42,.22), transparent 55%),
        radial-gradient(600px 220px at 85% 35%, rgba(255,59,47,.12), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.58));
      display:flex; align-items:center; justify-content:center;
      position:relative;
      overflow:hidden;
    }
    .case-item .thumb:after{
      content:"";
      position:absolute;
      width:180px; height:180px;
      border-radius:999px;
      background:radial-gradient(circle at 30% 30%, rgba(255,106,42,.24), transparent 65%);
      right:-60px; top:-70px;
      transform:rotate(20deg);
      filter:saturate(1.1);
    }
    .thumb .tmark{
      width:44px;height:44px;border-radius:16px;
      background:linear-gradient(135deg, rgba(255,106,42,.98), rgba(255,59,47,.98));
      display:flex;align-items:center;justify-content:center;
      color:#fff;
      font-weight:950;
      box-shadow:0 18px 26px rgba(255,59,47,.20);
      position:relative;
      z-index:1;
    }
    .case-item .body{
      padding:13px 14px 14px 14px;
      display:flex; flex-direction:column; gap:8px;
    }
    .case-item .body strong{
      font-size:14.6px;
      letter-spacing:-.2px;
      color:#0b1220;
    }
    .case-item .body span{
      font-size:13.1px;
      color:rgba(11,18,32,.70);
      font-weight:650;
      line-height:1.6;
    }

    .article-list{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .article{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 10px 22px rgba(0,0,0,.04);
      transition: transform .18s ease, box-shadow .2s ease;
    }
    .article:hover{transform:translateY(-2px); box-shadow:0 18px 30px rgba(0,0,0,.07)}
    .article .meta{
      display:flex; flex-direction:column; gap:6px;
      min-width:0;
    }
    .article .meta strong{
      font-size:14.3px; color:#0b1220; letter-spacing:-.2px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .article .meta span{
      font-size:13px; color:rgba(11,18,32,.70); font-weight:650;
      line-height:1.6;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .article .date{
      flex:0 0 auto;
      color:rgba(11,18,32,.56);
      font-weight:800;
      font-size:12.6px;
      padding-top:2px;
      white-space:nowrap;
    }

    .tabs{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .tab{
      border-radius:999px;
      padding:10px 12px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.74);
      color:rgba(11,18,32,.74);
      font-weight:900;
      font-size:13px;
      cursor:pointer;
      user-select:none;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
    }
    .tab:hover{transform:translateY(-1px); border-color:rgba(255,106,42,.22)}
    .tab.active{
      background:linear-gradient(135deg, rgba(255,106,42,.18), rgba(255,59,47,.10));
      border-color:rgba(255,106,42,.28);
      color:#0b1220;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .time-item{
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 10px 22px rgba(0,0,0,.04);
      display:flex; gap:12px; align-items:flex-start;
      position:relative;
      overflow:hidden;
    }
    .time-item:before{
      content:"";
      position:absolute; left:-2px; top:-2px; bottom:-2px;
      width:4px;
      background:linear-gradient(180deg, rgba(255,106,42,.95), rgba(255,59,47,.95));
    }
    .time-item .content{padding-left:2px; width:100%}
    .time-item strong{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-size:14.8px; color:#0b1220;
    }
    .time-item .pill2{
      font-size:12.4px; font-weight:950;
      padding:7px 10px; border-radius:999px;
      background:rgba(255,106,42,.12);
      border:1px solid rgba(255,106,42,.22);
      color:rgba(255,59,47,.95);
      white-space:nowrap;
    }
    .time-item p{
      margin:8px 0 0 0;
      font-size:13.3px; color:rgba(11,18,32,.70); font-weight:650; line-height:1.7;
    }

    .form-card{
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
      box-shadow:0 18px 55px rgba(0,0,0,.06);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .form-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(520px 260px at 15% 0%, rgba(255,106,42,.20), transparent 60%),
        radial-gradient(460px 240px at 85% 40%, rgba(255,59,47,.14), transparent 60%);
      pointer-events:none;
    }
    .form-card > *{position:relative; z-index:1}

    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
      margin-top:10px;
    }
    @media (max-width: 720px){
      form{grid-template-columns:1fr}
    }
    .field{
      display:flex; flex-direction:column; gap:7px;
    }
    .field label{
      font-size:12.8px;
      color:rgba(11,18,32,.78);
      font-weight:850;
    }
    .field input, .field select, .field textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.14);
      background:rgba(255,255,255,.85);
      padding:12px 12px;
      font-size:13.5px;
      color:#0b1220;
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, transform .15s ease;
    }
    .field textarea{min-height:110px; resize:vertical}
    .field input:focus, .field select:focus, .field textarea:focus{
      border-color:rgba(255,106,42,.40);
      box-shadow:0 0 0 4px rgba(255,106,42,.20);
    }
    .form-actions{
      grid-column:1 / -1;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      margin-top:4px;
    }
    .hint{
      color:rgba(11,18,32,.64);
      font-size:12.6px;
      font-weight:700;
      line-height:1.6;
      max-width:48ch;
    }

    .faq{
      display:flex; flex-direction:column; gap:10px;
    }
    details{
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 10px 22px rgba(0,0,0,.04);
      padding:0 14px;
      overflow:hidden;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    details[open]{
      border-color:rgba(255,106,42,.22);
      box-shadow:0 18px 32px rgba(0,0,0,.07);
      transform:translateY(-1px);
    }
    summary{
      list-style:none;
      padding:14px 0;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      user-select:none;
      font-weight:950;
      color:#0b1220;
      font-size:14.2px;
    }
    summary::-webkit-details-marker{display:none}
    summary .chev{
      flex:0 0 auto;
      width:28px;height:28px;border-radius:12px;
      border:1px solid rgba(16,24,40,.12);
      background:rgba(255,255,255,.80);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease, border-color .2s ease;
      margin-top:-2px;
    }
    details[open] summary .chev{
      transform:rotate(180deg);
      border-color:rgba(255,106,42,.25);
    }
    .faq p{
      margin:0 0 14px 0;
      color:rgba(11,18,32,.70);
      font-weight:650;
      line-height:1.8;
      font-size:13.4px;
      padding-bottom:2px;
    }

    .comments{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    @media (max-width: 980px){
      .comments{grid-template-columns:1fr}
    }
    .comment{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 10px 26px rgba(0,0,0,.05);
      transition: transform .18s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .comment:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 160px at 10% 0%, rgba(255,106,42,.16), transparent 55%),
        radial-gradient(360px 160px at 90% 25%, rgba(255,59,47,.10), transparent 55%);
      pointer-events:none;
    }
    .comment > *{position:relative; z-index:1}
    .comment:hover{transform:translateY(-2px); box-shadow:0 18px 34px rgba(0,0,0,.08)}
    .comment .who{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:40px;height:40px;border-radius:16px;
      background:linear-gradient(135deg, rgba(255,106,42,.18), rgba(255,59,47,.10));
      border:1px solid rgba(255,106,42,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(255,59,47,.95);
      flex:0 0 auto;
    }
    .who strong{
      font-size:14.3px; color:#0b1220;
      letter-spacing:-.2px;
    }
    .who span{
      display:block;
      color:rgba(11,18,32,.60);
      font-weight:800;
      font-size:12.4px;
      margin-top:4px;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      color:rgba(255,59,47,.95);
      font-weight:950;
      font-size:13px;
      white-space:nowrap;
    }
    .comment p{
      margin:0;
      font-size:13.4px;
      color:rgba(11,18,32,.72);
      line-height:1.8;
      font-weight:650;
    }

    .help-grid{
      display:grid;
      grid-template-columns: 1fr .95fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .help-grid{grid-template-columns:1fr}
    }

    .badge-grid{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .badge{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background:rgba(255,255,255,.82);
      font-weight:900;
      font-size:12.8px;
      color:rgba(11,18,32,.74);
      transition: transform .15s ease, border-color .2s ease;
    }
    .badge:hover{transform:translateY(-1px); border-color:rgba(255,106,42,.22)}

    .footer{
      margin-top:10px;
      background:
        radial-gradient(900px 360px at 20% 0%, rgba(255,106,42,.20), transparent 60%),
        radial-gradient(700px 320px at 90% 10%, rgba(255,59,47,.14), transparent 58%),
        linear-gradient(180deg, #0b1220 0%, #0a1020 100%);
      color:#f3f4f6;
      border-top:1px solid rgba(255,255,255,.10);
      padding:26px 0 18px 0;
    }
    .footer a{color:#f3f4f6}
    .footer .grid{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    @media (max-width: 980px){
      .footer .grid{grid-template-columns:1fr}
    }
    .foot-card{
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      padding:14px;
    }
    .foot-title{
      font-weight:950;
      letter-spacing:-.2px;
      margin:0 0 10px 0;
      font-size:14.6px;
    }
    .foot-links{
      display:flex; flex-direction:column; gap:10px;
      font-weight:700;
      color:rgba(243,244,246,.86);
      font-size:13.3px;
    }
    .foot-links a{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .foot-links a:hover{
      transform:translateY(-1px);
      background:rgba(255,255,255,.08);
      border-color:rgba(255,106,42,.25);
    }
    .foot-links small{
      color:rgba(243,244,246,.72);
      font-weight:850;
      font-size:12px;
      white-space:nowrap;
    }
    .copy{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      color:rgba(243,244,246,.78);
      font-weight:700;
      font-size:12.6px;
    }

    .float-widget{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-badge{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:18px;
      background:rgba(255,255,255,.85);
      border:1px solid rgba(16,24,40,.12);
      box-shadow:0 18px 40px rgba(0,0,0,.12);
      backdrop-filter: blur(10px);
      max-width:260px;
      transform:translateY(8px);
      opacity:0;
      pointer-events:none;
      transition: opacity .25s ease, transform .25s ease;
    }
    .float-badge.show{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }
    .float-badge .t{
      display:flex; flex-direction:column; gap:3px;
      min-width:0;
    }
    .float-badge .t strong{
      color:#0b1220;
      font-weight:950;
      font-size:13px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .float-badge .t span{
      color:rgba(11,18,32,.66);
      font-weight:800;
      font-size:12.2px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .float-badge .go{
      width:40px;height:40px;border-radius:16px;
      background:linear-gradient(135deg, rgba(255,106,42,.98), rgba(255,59,47,.98));
      display:flex;align-items:center;justify-content:center;
      color:#fff;
      font-weight:950;
      box-shadow:0 18px 26px rgba(255,59,47,.22);
      flex:0 0 auto;
    }

    .float-actions{
      display:flex; gap:10px;
    }
    .fab{
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.12);
      background:rgba(255,255,255,.86);
      box-shadow:0 18px 40px rgba(0,0,0,.12);
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
      cursor:pointer;
      user-select:none;
    }
    .fab:hover{
      transform:translateY(-2px);
      box-shadow:0 22px 52px rgba(0,0,0,.16);
      border-color:rgba(255,106,42,.26);
    }
    .fab.primary{
      border-color:rgba(255,106,42,.35);
      background:linear-gradient(135deg, rgba(255,106,42,.98), rgba(255,59,47,.98));
      color:#fff;
    }

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

    .sr-only{
      position:absolute !important;
      width:1px;height:1px;
      padding:0;margin:-1px;
      overflow:hidden;clip:rect(0,0,0,0);
      white-space:nowrap;border:0;
    }