:root{
      --bg0:#fff7ed;
      --bg1:#ffffff;
      --ink:#1f2937;
      --muted:#5b6472;
      --muted2:#7b8697;
      --card:#ffffff;
      --line:rgba(17,24,39,.10);
      --shadow:0 12px 30px rgba(15,23,42,.10);
      --shadow2:0 6px 18px rgba(15,23,42,.10);
      --primary:#ff3d6e;
      --primary2:#ff7a00;
      --primary3:#6a5cff;
      --chipBg:rgba(255,122,0,.10);
      --chipLine:rgba(255,122,0,.25);
      --good:#16a34a;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:14px;
      --container:1120px;
      --padX:20px;
      --focus: 0 0 0 3px rgba(255,61,110,.18), 0 0 0 1px rgba(255,61,110,.35);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Apple Color Emoji","Segoe UI Emoji";
      color:var(--ink);
      background:
        radial-gradient(1200px 700px at 20% -10%, rgba(255,61,110,.16), transparent 55%),
        radial-gradient(900px 600px at 90% 0%, rgba(255,122,0,.16), transparent 55%),
        radial-gradient(700px 500px at 70% 20%, rgba(106,92,255,.12), transparent 50%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 40%, #fff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
      background:#111827; color:#fff; padding:10px 12px; border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{left:16px; top:16px; width:auto; height:auto; outline:none; box-shadow:var(--focus)}
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(160%) blur(10px);
      background:rgba(255,255,255,.62);
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .brand img{
      width:44px; height:44px; border-radius:14px;
      box-shadow:0 10px 24px rgba(255,61,110,.18);
      background:#fff;
      object-fit:contain;
    }
    .brand .meta{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .name{
      font-weight:850; letter-spacing:.2px;
      font-size:15px;
    }
    .brand .tag{
      font-size:12px; color:var(--muted2);
    }

    .menu{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .nav a.navlink{
      padding:9px 10px;
      border-radius:12px;
      font-size:13px;
      color:rgba(31,41,55,.86);
      border:1px solid transparent;
      transition:transform .15s ease, background-color .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav a.navlink:hover{
      background:rgba(255,61,110,.08);
      border-color:rgba(255,61,110,.18);
      transform:translateY(-1px);
    }
    .nav .ctaRow{
      display:flex; align-items:center; gap:10px; margin-left:6px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px; border-radius:14px;
      font-weight:780; font-size:13px;
      border:1px solid rgba(17,24,39,.12);
      background:#fff;
      box-shadow:0 10px 22px rgba(15,23,42,.06);
      transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:focus{outline:none; box-shadow:var(--focus)}
    .btn:hover{transform:translateY(-1px); box-shadow:0 14px 30px rgba(15,23,42,.12); border-color:rgba(255,61,110,.25)}
    .btnPrimary{
      border-color:rgba(255,61,110,.35);
      background:linear-gradient(135deg, rgba(255,61,110,.96), rgba(255,122,0,.92));
      color:#fff;
      box-shadow:0 18px 36px rgba(255,61,110,.22);
    }
    .btnPrimary:hover{box-shadow:0 20px 44px rgba(255,61,110,.28)}
    .btnGhost{
      background:rgba(255,255,255,.7);
    }
    .iconDot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(255,255,255,.85);
      box-shadow:0 0 0 6px rgba(255,255,255,.14);
    }
    .burger{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:#fff;
      box-shadow:0 10px 24px rgba(15,23,42,.07);
      cursor:pointer;
      align-items:center; justify-content:center;
    }
    .burger:focus{outline:none; box-shadow:var(--focus)}
    .burger svg{display:block}
    .mobilePanel{
      display:none;
      padding:12px 0 16px;
    }
    .mobilePanel .grid{
      display:grid; grid-template-columns:1fr 1fr; gap:10px;
    }
    .mobilePanel a.navlink{
      padding:11px 12px;
      border-radius:14px;
      font-size:13px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.78);
    }

    .hero{
      padding:34px 0 10px;
    }
    .heroGrid{
      display:grid; gap:18px;
      grid-template-columns: 1.08fr .92fr;
      align-items:stretch;
    }
    .heroCard{
      position:relative;
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(900px 320px at 30% 0%, rgba(255,61,110,.20), transparent 55%),
        radial-gradient(900px 320px at 90% 30%, rgba(255,122,0,.18), transparent 56%),
        radial-gradient(700px 300px at 55% 100%, rgba(106,92,255,.16), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.92));
      box-shadow: var(--shadow);
      overflow:hidden;
      padding:26px 22px;
      min-height:320px;
    }
    .heroBadgeRow{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.75);
      font-weight:760; font-size:12px;
      color:rgba(31,41,55,.92);
    }
    .badge .spark{
      width:18px; height:18px; border-radius:8px;
      background:linear-gradient(135deg, rgba(255,61,110,.95), rgba(255,122,0,.92));
      box-shadow:0 12px 20px rgba(255,61,110,.22);
      display:inline-flex; align-items:center; justify-content:center;
      color:#fff; font-size:12px;
      font-weight:900;
    }
    .hero h1{
      margin:0;
      font-size:34px;
      line-height:1.15;
      letter-spacing:-.6px;
    }
    .hero p{
      margin:12px 0 0;
      color:rgba(31,41,55,.72);
      font-size:15px;
      line-height:1.7;
      max-width:60ch;
    }
    .heroActions{
      margin-top:18px;
      display:flex; gap:12px; flex-wrap:wrap;
      align-items:center;
    }
    .heroMiniStats{
      margin-top:18px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .miniStat{
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
      padding:12px 12px;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .miniStat:hover{transform:translateY(-2px); box-shadow:0 14px 30px rgba(15,23,42,.10)}
    .miniStat .k{font-weight:920; font-size:14px}
    .miniStat .v{color:rgba(31,41,55,.68); font-size:12px; margin-top:3px; line-height:1.4}
    .heroSide{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.94));
      box-shadow: var(--shadow2);
      padding:18px 16px;
      display:flex; flex-direction:column; gap:14px;
    }
    .sideTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .sideTitle{
      font-weight:900; font-size:16px; letter-spacing:-.2px;
    }
    .sideSub{
      margin-top:6px; color:rgba(31,41,55,.70); font-size:13px; line-height:1.6;
    }
    .sidePillRow{
      display:flex; gap:8px; flex-wrap:wrap;
      margin-top:8px;
    }
    .pill{
      font-size:12px; font-weight:780;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,61,110,.22);
      background:rgba(255,61,110,.08);
      color:rgba(31,41,55,.88);
      transition:transform .16s ease, background-color .16s ease;
    }
    .pill:hover{transform:translateY(-1px); background:rgba(255,61,110,.11)}
    .sideCard{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.78);
      padding:14px 14px;
      position:relative;
      overflow:hidden;
    }
    .sideCard:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(300px 140px at 10% 0%, rgba(255,61,110,.18), transparent 55%),
        radial-gradient(260px 140px at 90% 30%, rgba(255,122,0,.18), transparent 55%),
        radial-gradient(260px 150px at 40% 110%, rgba(106,92,255,.14), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .sideCard > *{position:relative}
    .sideCard .row{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .statusChip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.82);
      font-weight:850; font-size:12px;
      color:rgba(31,41,55,.88);
    }
    .statusChip .dot{
      width:10px; height:10px; border-radius:50%;
      background:linear-gradient(135deg, rgba(22,163,74,.95), rgba(34,197,94,.85));
      box-shadow:0 0 0 6px rgba(34,197,94,.14);
    }
    .sideCard .list{
      margin:0; padding:0;
      list-style:none;
      display:grid; gap:8px;
    }
    .sideCard .list li{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(31,41,55,.76);
      font-size:13px;
      line-height:1.5;
    }
    .check{
      width:18px; height:18px; border-radius:8px;
      background:rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.22);
      display:inline-flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .check svg{width:12px; height:12px; color:rgba(22,163,74,.95)}
    .section{
      padding:26px 0;
    }
    .sectionHeader{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .kicker{
      font-weight:900; letter-spacing:.8px; text-transform:uppercase;
      font-size:12px; color:rgba(31,41,55,.62);
    }
    .h2{
      margin:6px 0 0;
      font-size:24px; letter-spacing:-.4px; line-height:1.25;
      font-weight:920;
    }
    .lead{
      margin:0;
      color:rgba(31,41,55,.70);
      max-width:66ch;
      line-height:1.7;
      font-size:14px;
    }

    .grid3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .grid2{
      display:grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:14px;
    }
    .card{
      border-radius:var(--radius);
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 10px 22px rgba(15,23,42,.06);
      padding:16px 16px;
      overflow:hidden;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 36px rgba(15,23,42,.12);
      border-color:rgba(255,61,110,.18);
    }
    .cardTitle{
      font-weight:920; font-size:15px; letter-spacing:-.2px;
      display:flex; align-items:center; gap:10px;
      margin:0;
    }
    .cardText{
      margin:10px 0 0;
      color:rgba(31,41,55,.70);
      line-height:1.7;
      font-size:13px;
    }
    .cardIcon{
      width:38px; height:38px; border-radius:14px;
      background:linear-gradient(135deg, rgba(255,61,110,.16), rgba(255,122,0,.12));
      border:1px solid rgba(255,61,110,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .cardIcon svg{width:18px; height:18px; color:rgba(255,61,110,.95)}
    .cardList{
      margin:12px 0 0;
      padding:0; list-style:none;
      display:grid; gap:8px;
    }
    .cardList li{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(31,41,55,.74);
      font-size:13px; line-height:1.5;
    }
    .bullet{
      width:10px; height:10px; border-radius:4px;
      background:linear-gradient(135deg, rgba(255,61,110,.95), rgba(255,122,0,.92));
      margin-top:6px;
      flex:0 0 auto;
    }

    .process{
      display:grid; gap:14px;
      grid-template-columns: 1.1fr .9fr;
      align-items:start;
    }
    .steps{
      display:grid; gap:12px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .step{
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.86);
      padding:14px 14px;
      display:flex; gap:12px; align-items:flex-start;
      min-height:104px;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .step:hover{transform:translateY(-2px); box-shadow:0 14px 30px rgba(15,23,42,.10)}
    .stepNum{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(135deg, rgba(255,61,110,.18), rgba(255,122,0,.14));
      border:1px solid rgba(255,61,110,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
    }
    .step h3{
      margin:0;
      font-size:14px; letter-spacing:-.2px; font-weight:920;
    }
    .step p{
      margin:6px 0 0;
      color:rgba(31,41,55,.70);
      font-size:13px; line-height:1.6;
    }
    .compareWrap{
      display:grid; gap:14px;
      grid-template-columns: 1fr;
    }
    .compareTable{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(17,24,39,.10);
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 12px 26px rgba(15,23,42,.06);
    }
    .compareTable thead th{
      background:linear-gradient(135deg, rgba(255,61,110,.12), rgba(255,122,0,.10));
      border-bottom:1px solid rgba(17,24,39,.10);
      padding:12px 12px;
      text-align:left;
      font-size:13px;
      color:rgba(31,41,55,.88);
      white-space:nowrap;
    }
    .compareTable th, .compareTable td{
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      font-size:13px;
      color:rgba(31,41,55,.78);
    }
    .compareTable tbody tr:last-child td{border-bottom:none}
    .scoreRow{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .star{
      display:flex; gap:3px; align-items:center;
    }
    .star svg{width:16px; height:16px; color:rgba(245,158,11,.95)}
    .scoreBig{
      font-weight:980; font-size:22px; letter-spacing:-.4px; color:rgba(17,24,39,.95);
    }
    .rankTag{
      padding:8px 10px; border-radius:999px;
      background:rgba(22,163,74,.10);
      border:1px solid rgba(22,163,74,.20);
      font-weight:900; font-size:12px;
      color:rgba(17,24,39,.86);
      display:inline-flex; align-items:center; gap:8px;
      white-space:nowrap;
    }
    .rankTag .badgeDot{
      width:10px; height:10px; border-radius:50%;
      background:rgba(22,163,74,.95);
      box-shadow:0 0 0 6px rgba(22,163,74,.16);
    }
    .vsBadge{
      padding:6px 10px; border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.85);
      color:rgba(31,41,55,.76);
      font-weight:850; font-size:12px;
      white-space:nowrap;
    }

    .timeline{
      display:grid; grid-template-columns: 1fr;
      gap:12px;
    }
    .timelineItem{
      display:flex; gap:14px; align-items:flex-start;
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.86);
      box-shadow:0 10px 20px rgba(15,23,42,.05);
    }
    .timelineItem .mark{
      width:38px; height:38px; border-radius:16px;
      background:linear-gradient(135deg, rgba(106,92,255,.14), rgba(255,61,110,.10));
      border:1px solid rgba(106,92,255,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .timelineItem .mark svg{width:18px; height:18px; color:rgba(106,92,255,.95)}
    .timelineItem h3{margin:0; font-size:14px; font-weight:920}
    .timelineItem p{margin:6px 0 0; color:rgba(31,41,55,.70); font-size:13px; line-height:1.65}

    .reviewGrid{
      display:grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .review{
      border-radius:20px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.90);
      padding:16px 16px;
      box-shadow:0 12px 24px rgba(15,23,42,.06);
      transition:transform .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:200px;
    }
    .review:hover{transform:translateY(-2px); box-shadow:0 18px 40px rgba(15,23,42,.12)}
    .reviewHead{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background:linear-gradient(135deg, rgba(255,61,110,.18), rgba(255,122,0,.14));
      border:1px solid rgba(255,61,110,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color:rgba(31,41,55,.88);
      flex:0 0 auto;
    }
    .reviewRole{
      display:flex; flex-direction:column; line-height:1.15;
      margin-left:10px;
    }
    .reviewName{font-weight:930; font-size:13px}
    .reviewType{font-size:12px; color:rgba(31,41,55,.68); margin-top:3px}
    .reviewStars{
      display:flex; gap:3px; align-items:center;
    }
    .reviewStars svg{width:14px; height:14px; color:rgba(245,158,11,.95)}
    .reviewQuote{
      margin:0;
      color:rgba(31,41,55,.72);
      font-size:13px; line-height:1.7;
    }
    .tagRow{
      display:flex; gap:8px; flex-wrap:wrap; margin-top:auto;
    }
    .tag{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.85);
      font-size:12px; font-weight:850; color:rgba(31,41,55,.74);
    }

    .cardsWrap{
      display:grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .caseCard{
      padding:16px 16px;
      border-radius:20px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.90);
      box-shadow:0 12px 24px rgba(15,23,42,.06);
      transition:transform .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:220px;
    }
    .caseCard:hover{transform:translateY(-2px); box-shadow:0 18px 40px rgba(15,23,42,.12)}
    .caseTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .caseType{
      display:flex; flex-direction:column; gap:6px;
    }
    .caseType .t{
      font-weight:930; font-size:14px;
    }
    .caseType .s{
      color:rgba(31,41,55,.70);
      font-size:12px; line-height:1.5;
    }
    .caseThumb{
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:
        radial-gradient(24px 24px at 30% 35%, rgba(255,61,110,.24), transparent 60%),
        radial-gradient(24px 24px at 70% 70%, rgba(255,122,0,.22), transparent 60%),
        radial-gradient(24px 24px at 55% 15%, rgba(106,92,255,.18), transparent 60%),
        rgba(255,255,255,.86);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .caseThumb svg{width:20px; height:20px; color:rgba(31,41,55,.80)}
    .caseBullets{
      margin:0; padding:0; list-style:none;
      display:grid; gap:8px;
    }
    .caseBullets li{
      display:flex; gap:10px; align-items:flex-start;
      font-size:13px; color:rgba(31,41,55,.72);
      line-height:1.55;
    }
    .caseBullets .dot{
      width:10px; height:10px; border-radius:4px;
      background:linear-gradient(135deg, rgba(106,92,255,.92), rgba(255,61,110,.86));
      margin-top:6px;
      flex:0 0 auto;
    }

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

    .formCard{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.90);
      box-shadow:0 14px 30px rgba(15,23,42,.08);
      padding:18px 16px;
    }
    .formCard h3{margin:0; font-size:16px; font-weight:950; letter-spacing:-.2px}
    .formCard p{margin:8px 0 0; color:rgba(31,41,55,.70); font-size:13px; line-height:1.7}
    form{margin-top:14px}
    .fields{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field label{
      font-size:12px; font-weight:900; color:rgba(31,41,55,.78);
    }
    .input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.14);
      background:rgba(255,255,255,.92);
      font-size:13px;
      color:var(--ink);
      outline:none;
      transition:box-shadow .15s ease, border-color .15s ease;
    }
    .input:focus, select:focus, textarea:focus{
      box-shadow:var(--focus);
      border-color:rgba(255,61,110,.35);
    }
    textarea{min-height:100px; resize:vertical}
    .formActions{
      margin-top:12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }
    .hint{
      color:rgba(31,41,55,.62);
      font-size:12px;
      line-height:1.6;
      max-width:44ch;
    }
    .submitBtn{
      border:none;
      cursor:pointer;
      padding:12px 16px;
      border-radius:16px;
      font-weight:950;
      font-size:13px;
      color:#fff;
      background:linear-gradient(135deg, rgba(255,61,110,.96), rgba(255,122,0,.92));
      box-shadow:0 18px 36px rgba(255,61,110,.22);
      transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
      display:inline-flex; align-items:center; gap:10px;
    }
    .submitBtn:hover{transform:translateY(-1px); box-shadow:0 22px 44px rgba(255,61,110,.28)}
    .submitBtn:focus{outline:none; box-shadow:var(--focus)}
    .submitBtn[disabled]{filter:saturate(.6); opacity:.8; cursor:not-allowed}
    .toast{
      position:fixed; left:50%; transform:translateX(-50%);
      bottom:22px;
      background:rgba(17,24,39,.92);
      color:#fff;
      padding:12px 14px;
      border-radius:14px;
      box-shadow:0 18px 40px rgba(0,0,0,.26);
      font-size:13px;
      z-index:999;
      opacity:0; pointer-events:none;
      transition:opacity .2s ease, transform .2s ease;
    }
    .toast.show{opacity:1; transform:translateX(-50%) translateY(-6px)}
    .toast a{color:#fff; text-decoration:underline}

    .faq{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.88);
      box-shadow:0 12px 26px rgba(15,23,42,.06);
      overflow:hidden;
    }
    details.faqItem{
      border-top:1px solid rgba(17,24,39,.08);
      padding:0;
    }
    details.faqItem:first-child{border-top:none}
    details.faqItem summary{
      list-style:none;
      cursor:pointer;
      padding:14px 16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      font-weight:920;
      color:rgba(31,41,55,.90);
      font-size:14px;
    }
    details.faqItem summary::-webkit-details-marker{display:none}
    .faqLeft{
      display:flex; gap:12px; align-items:flex-start;
    }
    .qMark{
      width:28px; height:28px; border-radius:12px;
      border:1px solid rgba(255,61,110,.20);
      background:rgba(255,61,110,.08);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .qMark svg{width:14px; height:14px; color:rgba(255,61,110,.95)}
    .faqAnswer{
      padding:0 16px 16px 56px;
      color:rgba(31,41,55,.72);
      font-size:13px;
      line-height:1.75;
    }
    .faqAnswer a{color:rgba(255,61,110,.95); text-decoration:underline}
    .chev{
      width:36px; height:36px; border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.86);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition:transform .18s ease;
    }
    details[open] .chev{transform:rotate(180deg)}
    .chev svg{width:16px; height:16px; color:rgba(31,41,55,.75)}

    .articleList{
      display:grid; gap:12px;
    }
    .article{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      padding:14px 14px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.88);
      box-shadow:0 10px 20px rgba(15,23,42,.05);
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .article:hover{transform:translateY(-2px); box-shadow:0 16px 34px rgba(15,23,42,.10)}
    .article .left{
      display:flex; flex-direction:column; gap:6px;
    }
    .article .title{
      font-weight:940; font-size:14px; letter-spacing:-.2px;
      margin:0;
    }
    .article .meta{
      font-size:12px; color:rgba(31,41,55,.65);
      display:flex; gap:12px; flex-wrap:wrap;
    }
    .article .desc{
      margin:0;
      font-size:13px; color:rgba(31,41,55,.72);
      line-height:1.65;
      max-width:68ch;
    }
    .article .right{
      flex:0 0 auto;
      display:flex; flex-direction:column; align-items:flex-end; gap:10px;
    }
    .article .pillLink{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(255,61,110,.20);
      background:rgba(255,61,110,.08);
      font-weight:900; font-size:12px;
      color:rgba(31,41,55,.85);
      white-space:nowrap;
    }
    .article .arrow{
      width:36px; height:36px; border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.86);
      display:flex; align-items:center; justify-content:center;
    }
    .article .arrow svg{width:16px; height:16px; color:rgba(31,41,55,.78)}

    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .cloudItem{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.88);
      font-weight:900;
      font-size:12px;
      color:rgba(31,41,55,.74);
      transition:transform .16s ease, border-color .16s ease, background-color .16s ease;
      cursor:pointer;
    }
    .cloudItem:hover{
      transform:translateY(-1px);
      border-color:rgba(255,61,110,.22);
      background:rgba(255,61,110,.07);
    }

    .networkGrid{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .networkCard{
      padding:16px 16px;
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.88);
      box-shadow:0 12px 26px rgba(15,23,42,.06);
    }
    .networkCard h3{margin:0; font-size:15px; font-weight:950}
    .networkCard p{margin:8px 0 0; color:rgba(31,41,55,.70); font-size:13px; line-height:1.7}
    .networkList{
      margin:12px 0 0; padding:0; list-style:none;
      display:grid; gap:10px;
    }
    .networkList li{
      display:flex; gap:12px; align-items:flex-start;
      color:rgba(31,41,55,.74);
      font-size:13px; line-height:1.6;
    }
    .netIcon{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(106,92,255,.18);
      background:rgba(106,92,255,.10);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .netIcon svg{width:16px; height:16px; color:rgba(106,92,255,.95)}
    .mediaRow{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .imgCard{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.88);
      box-shadow:0 12px 26px rgba(15,23,42,.06);
      padding:14px 14px;
    }
    .imgWrap{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.86);
      position:relative;
    }
    .imgWrap:after{
      content:"";
      position:absolute; inset:0;
      background:linear-gradient(180deg, rgba(255,255,255,0), rgba(0,0,0,.04));
      pointer-events:none;
    }
    .imgWrap img{
      width:100%; height:auto; display:block;
      object-fit:contain;
    }
    .imgCaption{
      margin-top:10px;
      font-weight:920; font-size:13px;
    }
    .imgCaption span{
      display:block; font-weight:760; margin-top:5px; color:rgba(31,41,55,.70); font-size:12px; line-height:1.6;
    }

    footer{
      padding:20px 0 26px;
    }
    .footerCard{
      border-radius:26px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.70);
      box-shadow:0 12px 26px rgba(15,23,42,.06);
      padding:18px 16px;
    }
    .footerTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .footerBrand{
      display:flex; gap:12px; align-items:flex-start;
      min-width:260px;
    }
    .footerBrand img{width:46px; height:46px; border-radius:18px; object-fit:contain; border:1px solid rgba(17,24,39,.10); background:#fff}
    .footerBrand .fmeta{
      display:flex; flex-direction:column;
    }
    .footerBrand .ftitle{font-weight:980; font-size:15px}
    .footerBrand .fsub{margin-top:6px; color:rgba(31,41,55,.70); font-size:13px; line-height:1.6}
    .footerLinks{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end;
      max-width:560px;
    }
    .friend{
      padding:10px 12px; border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background:rgba(255,255,255,.85);
      font-weight:920; font-size:12px;
      color:rgba(31,41,55,.76);
      transition:transform .16s ease, border-color .16s ease, background-color .16s ease;
      white-space:nowrap;
    }
    .friend:hover{transform:translateY(-1px); border-color:rgba(255,61,110,.22); background:rgba(255,61,110,.07)}
    .footerBottom{
      display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
      margin-top:14px;
      border-top:1px dashed rgba(17,24,39,.14);
      padding-top:14px;
      color:rgba(31,41,55,.66);
      font-size:12px;
    }
    .footerBottom .smallRow{
      display:flex; gap:14px; flex-wrap:wrap; align-items:center;
    }
    .mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

    .floatBar{
      position:fixed; right:16px; bottom:16px;
      z-index:60;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .floatBar .item{
      pointer-events:auto;
      display:flex; align-items:center; gap:10px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.12);
      background:rgba(255,255,255,.85);
      box-shadow:0 16px 36px rgba(15,23,42,.14);
      transition:transform .18s ease, opacity .18s ease;
    }
    .floatBar .item:hover{transform:translateY(-2px)}
    .floatBar .item .label{
      font-weight:950; font-size:13px;
      color:rgba(31,41,55,.86);
      white-space:nowrap;
    }
    .floatIcon{
      width:40px; height:40px; border-radius:16px;
      background:linear-gradient(135deg, rgba(255,61,110,.18), rgba(255,122,0,.14));
      border:1px solid rgba(255,61,110,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .floatIcon svg{width:18px; height:18px; color:rgba(255,61,110,.95)}
    .toTop{
      display:none;
    }

    .appear{
      opacity:0;
      transform:translateY(14px);
      transition:opacity .6s ease, transform .6s ease;
    }
    .appear.show{
      opacity:1;
      transform:translateY(0);
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns:1fr; }
      .heroCard{min-height:auto}
      .heroMiniStats{grid-template-columns: repeat(3, minmax(0, 1fr))}
      .grid3{grid-template-columns:1fr; }
      .grid2{grid-template-columns:1fr; }
      .process{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .reviewGrid{grid-template-columns:1fr}
      .cardsWrap{grid-template-columns:1fr}
      .twoCol{grid-template-columns:1fr}
      .networkGrid{grid-template-columns:1fr}
      .mediaRow{grid-template-columns:1fr}
      .fields{grid-template-columns:1fr}
      .menu{display:none}
      .burger{display:flex}
      .mobilePanel.show{display:block}
      .floatBar{right:12px; bottom:12px}
      .floatBar .item{padding:10px 10px}
      .floatBar .item .label{display:none}
    }