:root{
      --bg0:#fff7fb;
      --bg1:#ffffff;
      --ink:#15161a;
      --muted:#4b4f5a;
      --sub:#6b7280;
      --line:rgba(20,20,25,.10);
      --card:rgba(255,255,255,.78);
      --card2:rgba(255,255,255,.92);
      --shadow: 0 18px 50px rgba(18, 10, 30, .10);
      --shadow2: 0 12px 30px rgba(18, 10, 30, .10);
      --hot1:#ff2a6d;
      --hot2:#7c3aed;
      --hot3:#06b6d4;
      --hot4:#f97316;
      --btn:#111827;
      --btn2:#2b2f3a;
      --radius:18px;
      --radius2:14px;
      --container: 1140px;
      --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","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1200px 700px at 12% -10%, rgba(255,42,109,.16), transparent 60%),
        radial-gradient(1000px 600px at 85% 0%, rgba(124,58,237,.14), transparent 55%),
        radial-gradient(900px 520px at 70% 30%, rgba(6,182,212,.10), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 35%, #fff 80%);
      overflow-x:hidden;
    }
    a{ color:inherit; text-decoration:none; }
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--pad);
    }
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(150%) blur(10px);
      background: rgba(255,255,255,.70);
      border-bottom:1px solid rgba(20,20,25,.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:220px;
    }
    .logoWrap{
      width:38px; height:38px; border-radius:12px;
      background:
        radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.8), transparent 60%),
        linear-gradient(135deg, rgba(255,42,109,.95), rgba(124,58,237,.95));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 10px 26px rgba(124,58,237,.20);
      border:1px solid rgba(255,255,255,.55);
      overflow:hidden;
    }
    .logoImg{
      width:30px; height:30px; border-radius:10px;
      display:block;
      object-fit:cover;
      transform: translateY(0);
    }
    .brandText{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brandName{
      font-weight:820; letter-spacing:.2px; font-size:15px;
    }
    .brandTag{
      font-size:12px; color:var(--sub);
    }
    .navLinks{
      display:flex; align-items:center; gap:18px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navLinks a{
      font-size:13px;
      color:rgba(21,22,26,.86);
      padding:10px 10px;
      border-radius:999px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navLinks a:hover{
      background: rgba(124,58,237,.10);
      color: rgba(21,22,26,.98);
      transform: translateY(-1px);
    }
    .navRight{
      display:flex; align-items:center; gap:10px;
    }
    .primaryBtn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 14px;
      border-radius:999px;
      background: linear-gradient(135deg, rgba(255,42,109,1), rgba(124,58,237,1));
      color:#fff;
      border:1px solid rgba(255,255,255,.30);
      box-shadow: 0 18px 40px rgba(124,58,237,.18);
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
      font-weight:740; font-size:13px;
      cursor:pointer;
    }
    .primaryBtn:hover{ transform: translateY(-2px); box-shadow: 0 24px 70px rgba(124,58,237,.22); filter:saturate(110%); }
    .ghostBtn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:11px 14px;
      border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(20,20,25,.10);
      color: rgba(21,22,26,.92);
      transition: transform .2s ease, background .2s ease;
      font-weight:720; font-size:13px;
      cursor:pointer;
    }
    .ghostBtn:hover{ transform: translateY(-2px); background: rgba(255,255,255,.95); }
    .burger{
      display:none;
      width:44px; height:44px; border-radius:12px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      transition: transform .2s ease, background .2s ease;
    }
    .burger:hover{ transform: translateY(-2px); background: rgba(255,255,255,.95); }
    .burgerLines{
      width:18px; height:12px; margin:0 auto; position:relative;
    }
    .burgerLines span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: rgba(21,22,26,.86);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burgerLines span:nth-child(1){ top:0; }
    .burgerLines span:nth-child(2){ top:5px; }
    .burgerLines span:nth-child(3){ top:10px; }
    .mobilePanel{
      display:none;
      padding:10px 0 16px;
    }
    .mobileLinks{
      display:flex; flex-direction:column; gap:8px;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(12, 10, 20, .08);
    }
    .mobileLinks a{
      padding:12px 12px;
      border-radius:14px;
      background: rgba(124,58,237,.06);
      color: rgba(21,22,26,.92);
      border:1px solid rgba(124,58,237,.10);
      transition: transform .2s ease, background .2s ease;
      font-weight:700; font-size:14px;
    }
    .mobileLinks a:hover{ transform: translateY(-2px); background: rgba(124,58,237,.10); }

    .hero{
      padding:38px 0 22px;
      position:relative;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:20px;
      align-items:stretch;
    }
    .heroCard{
      border-radius: calc(var(--radius) + 6px);
      border:1px solid rgba(20,20,25,.10);
      background:
        radial-gradient(900px 420px at 20% -20%, rgba(255,42,109,.18), transparent 52%),
        radial-gradient(800px 420px at 78% 0%, rgba(124,58,237,.18), transparent 56%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.60));
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      padding:28px 26px;
      min-height:360px;
    }
    .heroCard:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        conic-gradient(from 210deg, rgba(255,42,109,.28), rgba(124,58,237,.22), rgba(6,182,212,.20), rgba(249,115,22,.18), rgba(255,42,109,.28));
      filter: blur(18px);
      opacity:.45;
      pointer-events:none;
    }
    .heroInner{ position:relative; z-index:1; display:flex; flex-direction:column; height:100%; }
    .kicker{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,20,25,.10);
      box-shadow: 0 10px 26px rgba(12, 10, 20, .05);
      font-size:13px; font-weight:760;
      color: rgba(21,22,26,.92);
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--hot1), var(--hot2));
      box-shadow: 0 0 0 6px rgba(255,42,109,.14);
    }
    .heroTitle{
      margin:0;
      font-size:40px;
      letter-spacing:-.9px;
      line-height:1.05;
      font-weight:900;
    }
    .heroTitle .grad{
      background: linear-gradient(135deg, rgba(255,42,109,1), rgba(124,58,237,1), rgba(6,182,212,1));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .heroSub{
      margin:14px 0 18px;
      color: rgba(21,22,26,.78);
      font-size:15px;
      line-height:1.7;
      max-width:62ch;
    }
    .heroActions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:auto;
      padding-top:8px;
    }
    .miniLinks{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
    }
    .miniLink{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.62);
      transition: transform .2s ease, background .2s ease;
      font-weight:740;
      font-size:13px;
      color: rgba(21,22,26,.88);
    }
    .miniLink:hover{ transform: translateY(-2px); background: rgba(255,255,255,.92); }
    .iconChip{
      width:32px; height:32px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.18);
    }
    .iconChip svg{ width:18px; height:18px; }
    .sidePanel{
      border-radius: calc(var(--radius) + 6px);
      border:1px solid rgba(20,20,25,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.60));
      box-shadow: var(--shadow2);
      overflow:hidden;
      padding:18px;
      min-height:360px;
      position:relative;
    }
    .sidePanel:after{
      content:"";
      position:absolute; inset:-40px -60px auto auto;
      width:220px; height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(255,42,109,.34), transparent 60%),
                  radial-gradient(circle at 70% 60%, rgba(124,58,237,.28), transparent 62%);
      filter: blur(10px);
      opacity:.8;
      transform: rotate(18deg);
      pointer-events:none;
    }
    .sideInner{ position:relative; z-index:1; height:100%; display:flex; flex-direction:column; gap:12px; }
    .sideTitle{
      font-weight:920; margin:0; font-size:16px;
      letter-spacing:-.2px;
    }
    .sideSubtitle{
      margin:0;
      color: rgba(21,22,26,.70);
      font-size:13px; line-height:1.6;
    }
    .stats{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:10px;
      margin-top:6px;
    }
    .stat{
      border-radius:16px;
      padding:14px 12px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .stat:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(124,58,237,.12);
      background: rgba(255,255,255,.92);
    }
    .statTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .badge{
      font-size:12px; font-weight:860;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(124,58,237,.18);
      background: rgba(124,58,237,.10);
      color: rgba(21,22,26,.92);
      white-space:nowrap;
    }
    .spark{
      width:28px; height:28px; border-radius:12px;
      background: rgba(255,42,109,.10);
      border:1px solid rgba(255,42,109,.16);
      display:flex; align-items:center; justify-content:center;
    }
    .spark svg{ width:16px; height:16px; }
    .statNum{
      font-size:20px; font-weight:940; letter-spacing:-.3px;
      margin:0;
    }
    .statLabel{
      margin:4px 0 0;
      color: rgba(21,22,26,.70);
      font-size:12px; line-height:1.5;
      min-height:18px;
    }
    .quoteCard{
      margin-top:auto;
      border-radius:18px;
      padding:14px 14px;
      border:1px solid rgba(20,20,25,.10);
      background: linear-gradient(135deg, rgba(255,42,109,.10), rgba(124,58,237,.10));
      position:relative;
      overflow:hidden;
    }
    .quoteCard:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(200px 120px at 20% 0%, rgba(255,42,109,.22), transparent 60%),
                  radial-gradient(220px 130px at 90% 40%, rgba(124,58,237,.20), transparent 62%);
      opacity:.8;
      pointer-events:none;
    }
    .quoteInner{ position:relative; z-index:1; display:flex; flex-direction:column; gap:6px; }
    .quoteStrong{ font-weight:920; font-size:13px; }
    .quoteText{ color: rgba(21,22,26,.74); font-size:13px; line-height:1.6; }

    .section{
      padding:34px 0;
    }
    .sectionHeader{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:16px;
    }
    .h2{
      margin:0;
      font-size:24px;
      letter-spacing:-.5px;
      font-weight:930;
    }
    .lead{
      margin:0;
      color: rgba(21,22,26,.72);
      font-size:14px;
      line-height:1.7;
      max-width:64ch;
    }
    .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(20,20,25,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 16px 40px rgba(12, 10, 20, .06);
      padding:16px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 60px rgba(124,58,237,.12);
      background: rgba(255,255,255,.92);
    }
    .cardTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .cardIcon{
      width:44px; height:44px; border-radius:16px;
      background: rgba(124,58,237,.12);
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .cardIcon svg{ width:20px; height:20px; }
    .cardTitle{
      margin:0;
      font-weight:920;
      letter-spacing:-.3px;
      font-size:16px;
    }
    .cardText{
      margin:8px 0 0;
      color: rgba(21,22,26,.74);
      font-size:13.5px;
      line-height:1.7;
    }
    .tagRow{
      display:flex; gap:8px; flex-wrap:wrap; margin-top:12px;
    }
    .tag{
      font-size:12px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      color: rgba(21,22,26,.80);
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap:10px;
    }
    .step{
      padding:14px 12px;
      border-radius:18px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, background .2s ease;
      min-height:150px;
      display:flex; flex-direction:column;
    }
    .step:hover{ transform: translateY(-3px); background: rgba(255,255,255,.92); }
    .stepNum{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-weight:940;
      background: linear-gradient(135deg, rgba(255,42,109,.14), rgba(124,58,237,.14));
      border:1px solid rgba(124,58,237,.18);
      margin-bottom:10px;
    }
    .stepTitle{ font-weight:920; margin:0; letter-spacing:-.2px; font-size:14.5px; }
    .stepText{ margin:8px 0 0; color: rgba(21,22,26,.74); font-size:12.8px; line-height:1.65; }

    .compareWrap{
      border-radius: calc(var(--radius) + 6px);
      border:1px solid rgba(20,20,25,.10);
      background:
        radial-gradient(900px 360px at 15% 0%, rgba(255,42,109,.14), transparent 55%),
        radial-gradient(820px 360px at 90% 35%, rgba(124,58,237,.14), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
    }
    .ratingBar{
      display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-bottom:14px;
      padding:6px 2px 0;
    }
    .stars{
      display:flex; align-items:center; gap:10px;
    }
    .starRow{ display:flex; gap:6px; }
    .star{
      width:18px; height:18px; display:inline-block;
      background: conic-gradient(from 180deg, rgba(255,42,109,1), rgba(124,58,237,1));
      clip-path: polygon(50% 0%, 62% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 38% 35%);
      box-shadow: 0 0 0 6px rgba(255,42,109,.10);
    }
    .ratingText{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .ratingBig{ font-weight:980; font-size:26px; letter-spacing:-.6px; }
    .ratingSmall{ color: rgba(21,22,26,.72); font-size:13px; margin-top:4px; }
    .scorePill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      font-weight:900;
      letter-spacing:-.2px;
      white-space:nowrap;
    }
    .tableWrap{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:780px;
      font-size:13.5px;
    }
    thead th{
      text-align:left;
      padding:14px 14px;
      background: rgba(255,255,255,.92);
      border-bottom:1px solid rgba(20,20,25,.10);
      position:sticky; top:0;
      z-index:1;
      white-space:nowrap;
    }
    tbody td{
      padding:12px 14px;
      border-bottom:1px solid rgba(20,20,25,.08);
      color: rgba(21,22,26,.86);
      vertical-align:top;
    }
    tbody tr:hover td{ background: rgba(124,58,237,.05); }
    .cellStrong{
      font-weight:920;
    }
    .pillRow{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .ok{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(6,182,212,.20);
      background: rgba(6,182,212,.10);
      font-weight:860;
      white-space:nowrap;
      color: rgba(21,22,26,.90);
    }
    .ok:before{
      content:"";
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(135deg, rgba(6,182,212,1), rgba(124,58,237,1));
      box-shadow: 0 0 0 6px rgba(6,182,212,.10);
    }
    .maybe{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(249,115,22,.22);
      background: rgba(249,115,22,.10);
      font-weight:860;
      white-space:nowrap;
      color: rgba(21,22,26,.90);
    }
    .maybe:before{
      content:"";
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(135deg, rgba(249,115,22,1), rgba(255,42,109,1));
      box-shadow: 0 0 0 6px rgba(249,115,22,.10);
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .timelineItem{
      border-radius:18px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      padding:14px 14px;
      display:flex; gap:12px; align-items:flex-start;
      transition: transform .2s ease, background .2s ease;
    }
    .timelineItem:hover{ transform: translateY(-2px); background: rgba(255,255,255,.92); }
    .timeDot{
      width:36px; height:36px; border-radius:16px;
      background: linear-gradient(135deg, rgba(255,42,109,.15), rgba(124,58,237,.15));
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      flex:0 0 auto;
    }
    .timelineBody h3{
      margin:0; font-size:14.5px; font-weight:930; letter-spacing:-.2px;
    }
    .timelineBody p{
      margin:6px 0 0; color: rgba(21,22,26,.72); font-size:13px; line-height:1.65;
    }

    .tabs{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .tabBtn{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      font-weight:860;
      font-size:13px;
      cursor:pointer;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .tabBtn:hover{ transform: translateY(-2px); background: rgba(255,255,255,.92); }
    .tabBtn[aria-selected="true"]{
      border-color: rgba(124,58,237,.30);
      background: rgba(124,58,237,.12);
    }
    .listCard{
      border-radius: var(--radius);
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 16px 40px rgba(12, 10, 20, .06);
      padding:16px;
    }
    .list{
      margin:0; padding:0; list-style:none;
      display:grid; grid-template-columns: 1fr 1fr; gap:10px;
    }
    .li{
      border-radius:16px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      padding:12px 12px;
      transition: transform .2s ease, background .2s ease;
      min-height:58px;
      display:flex; gap:10px; align-items:flex-start;
    }
    .li:hover{ transform: translateY(-2px); background: rgba(255,255,255,.92); }
    .liMark{
      width:26px; height:26px; border-radius:12px;
      background: rgba(255,42,109,.10);
      border:1px solid rgba(255,42,109,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .liMark svg{ width:14px; height:14px; }
    .liBody b{ display:block; font-size:13.5px; font-weight:920; letter-spacing:-.2px; }
    .liBody span{ display:block; margin-top:4px; color: rgba(21,22,26,.70); font-size:12.5px; line-height:1.5; }

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    details.faq{
      border-radius:18px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.72);
      padding:14px 14px;
      box-shadow: 0 14px 32px rgba(12, 10, 20, .05);
      transition: transform .2s ease, background .2s ease;
    }
    details.faq:hover{ transform: translateY(-2px); background: rgba(255,255,255,.92); }
    details.faq summary{
      list-style:none;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      font-weight:930;
      letter-spacing:-.2px;
      font-size:14.5px;
      outline:none;
    }
    details.faq summary::-webkit-details-marker{ display:none; }
    .faqPlus{
      width:30px; height:30px; border-radius:14px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .faqPlus svg{ width:16px; height:16px; transition: transform .2s ease; }
    details[open] .faqPlus svg{ transform: rotate(45deg); }
    .faqAnswer{
      margin-top:10px;
      color: rgba(21,22,26,.74);
      font-size:13.2px; line-height:1.7;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .review{
      border-radius:var(--radius);
      border:1px solid rgba(20,20,25,.10);
      background:
        radial-gradient(500px 220px at 0% 0%, rgba(255,42,109,.12), transparent 55%),
        radial-gradient(420px 220px at 100% 40%, rgba(124,58,237,.12), transparent 55%),
        rgba(255,255,255,.72);
      padding:16px;
      transition: transform .2s ease, background .2s ease;
    }
    .review:hover{ transform: translateY(-3px); background: rgba(255,255,255,.92); }
    .reviewTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:8px;
    }
    .avatar{
      width:42px; height:42px; border-radius:18px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(20,20,25,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      letter-spacing:-.5px;
      color: rgba(21,22,26,.88);
      flex:0 0 auto;
    }
    .reviewRole{
      margin:0;
      font-weight:930;
      font-size:14px;
      letter-spacing:-.2px;
    }
    .reviewMeta{
      margin:6px 0 0;
      color: rgba(21,22,26,.70);
      font-size:12.5px;
      line-height:1.5;
    }
    .reviewText{
      margin:10px 0 0;
      color: rgba(21,22,26,.74);
      font-size:13.3px; line-height:1.7;
    }

    .cardsRow{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .articleList{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .articleItem{
      border-radius:18px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.72);
      padding:14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      transition: transform .2s ease, background .2s ease;
    }
    .articleItem:hover{ transform: translateY(-2px); background: rgba(255,255,255,.92); }
    .articleLeft{
      min-width:0;
    }
    .articleTitle{
      margin:0;
      font-size:14.5px;
      font-weight:930;
      letter-spacing:-.2px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:42ch;
    }
    .articleText{
      margin:6px 0 0;
      color: rgba(21,22,26,.70);
      font-size:13px; line-height:1.6;
    }
    .articleLink{
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.78);
      font-weight:900; font-size:13px;
      flex:0 0 auto;
      transition: transform .2s ease, background .2s ease;
      white-space:nowrap;
    }
    .articleLink:hover{ transform: translateY(-2px); background: rgba(255,255,255,.95); }
    .articleLink svg{ width:16px; height:16px; }

    .formWrap{
      border-radius: calc(var(--radius) + 6px);
      border:1px solid rgba(20,20,25,.10);
      background:
        radial-gradient(900px 360px at 5% 0%, rgba(255,42,109,.14), transparent 52%),
        radial-gradient(860px 360px at 90% 40%, rgba(124,58,237,.14), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.60));
      box-shadow: var(--shadow2);
      padding:18px;
    }
    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
      min-width:0;
    }
    .field label{
      font-weight:860; font-size:13px; color: rgba(21,22,26,.88);
    }
    .field input, .field select, .field textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(20,20,25,.12);
      background: rgba(255,255,255,.82);
      padding:12px 12px;
      font-size:14px;
      color: rgba(21,22,26,.92);
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .field textarea{ min-height:110px; resize:vertical; }
    .field input:focus, .field select:focus, .field textarea:focus{
      border-color: rgba(124,58,237,.40);
      box-shadow: 0 0 0 4px rgba(124,58,237,.12);
      background: rgba(255,255,255,.98);
    }
    .span2{ grid-column: 1 / -1; }
    .formActions{
      display:flex; gap:12px; align-items:center; justify-content:space-between; flex-wrap:wrap;
      margin-top:4px;
      grid-column: 1 / -1;
    }
    .consent{
      color: rgba(21,22,26,.70);
      font-size:12.5px;
      line-height:1.6;
      display:flex; gap:8px; align-items:flex-start;
      max-width:62ch;
    }
    .checkbox{
      width:18px; height:18px; border-radius:6px;
      border:1px solid rgba(20,20,25,.20);
      background: rgba(255,255,255,.85);
      display:inline-flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .checkbox svg{ width:14px; height:14px; display:none; }
    .checkbox.checked svg{ display:block; }
    .submitBtn{
      display:inline-flex; align-items:center; gap:10px; justify-content:center;
      padding:12px 16px;
      border-radius:999px;
      background: linear-gradient(135deg, rgba(255,42,109,1), rgba(124,58,237,1));
      color:#fff;
      border:1px solid rgba(255,255,255,.30);
      font-weight:920;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
      box-shadow: 0 18px 40px rgba(124,58,237,.20);
      white-space:nowrap;
    }
    .submitBtn:hover{ transform: translateY(-2px); box-shadow: 0 26px 70px rgba(124,58,237,.26); filter:saturate(112%); }
    .submitBtn svg{ width:18px; height:18px; }

    .caseGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case{
      border-radius:var(--radius);
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.72);
      padding:16px;
      transition: transform .2s ease, background .2s ease;
      position:relative;
      overflow:hidden;
      min-height:170px;
      display:flex; flex-direction:column;
    }
    .case:hover{ transform: translateY(-3px); background: rgba(255,255,255,.92); }
    .case:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(380px 180px at 0% 0%, rgba(255,42,109,.14), transparent 60%),
        radial-gradient(340px 160px at 100% 50%, rgba(124,58,237,.14), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .caseInner{ position:relative; z-index:1; display:flex; flex-direction:column; height:100%; }
    .caseTop{
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start;
    }
    .caseTitle{
      margin:0;
      font-weight:940;
      letter-spacing:-.3px;
      font-size:15px;
    }
    .caseMeta{
      margin:8px 0 0;
      color: rgba(21,22,26,.70);
      font-size:13px; line-height:1.65;
    }
    .caseBottom{
      margin-top:auto;
      display:flex; gap:8px; flex-wrap:wrap;
      padding-top:12px;
    }

    .footer{
      padding:26px 0 36px;
      border-top:1px solid rgba(20,20,25,.08);
      background: rgba(255,255,255,.65);
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .footCard{
      border-radius:20px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
    }
    .footTitle{
      margin:0; font-weight:950; font-size:14.5px; letter-spacing:-.2px;
    }
    .footText{
      margin:10px 0 0;
      color: rgba(21,22,26,.72);
      font-size:13px; line-height:1.7;
    }
    .footLinks{
      margin:10px 0 0;
      display:flex; flex-direction:column; gap:10px;
    }
    .footLinks a{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      transition: transform .2s ease, background .2s ease;
      font-weight:850; font-size:13px;
    }
    .footLinks a:hover{ transform: translateY(-2px); background: rgba(255,255,255,.95); }
    .footLinks a span{ color: rgba(21,22,26,.70); font-weight:800; font-size:12.5px; }
    .copyright{
      margin-top:14px;
      color: rgba(21,22,26,.62);
      font-size:12.5px;
      text-align:center;
    }
    .friendRow{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:10px;
    }
    .friendRow a{
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      font-weight:860;
      font-size:12.5px;
      transition: transform .2s ease, background .2s ease;
    }
    .friendRow a:hover{ transform: translateY(-2px); background: rgba(255,255,255,.95); }

    .floatChat{
      position:fixed; right:16px; bottom:16px;
      z-index:70;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .floatBtn{
      display:inline-flex; align-items:center; gap:10px; justify-content:center;
      padding:12px 14px;
      border-radius:999px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.85);
      box-shadow: 0 18px 45px rgba(12,10,20,.12);
      cursor:pointer;
      transition: transform .2s ease, background .2s ease;
      font-weight:920;
      font-size:13px;
    }
    .floatBtn:hover{ transform: translateY(-3px); background: rgba(255,255,255,.98); }
    .floatBtn svg{ width:18px; height:18px; }
    .qrPopover{
      width:220px;
      border-radius:20px;
      border:1px solid rgba(20,20,25,.12);
      background: rgba(255,255,255,.95);
      box-shadow: 0 26px 80px rgba(12,10,20,.16);
      overflow:hidden;
      display:none;
    }
    .qrHead{
      padding:12px 12px;
      background: linear-gradient(135deg, rgba(255,42,109,.10), rgba(124,58,237,.10));
      border-bottom:1px solid rgba(20,20,25,.08);
      font-weight:950;
      letter-spacing:-.2px;
      font-size:13.5px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .closeX{
      width:30px; height:30px;
      border-radius:12px;
      border:1px solid rgba(20,20,25,.10);
      background: rgba(255,255,255,.70);
      cursor:pointer;
      transition: transform .2s ease, background .2s ease;
      display:flex; align-items:center; justify-content:center;
    }
    .closeX:hover{ transform: translateY(-2px); background: rgba(255,255,255,.95); }
    .qrBody{ padding:12px; display:flex; flex-direction:column; gap:10px; }
    .qrBody img{
      width:100%; height:auto; border-radius:16px;
      border:1px solid rgba(20,20,25,.10);
      background:#fff;
    }
    .qrTip{
      color: rgba(21,22,26,.72);
      font-size:12.5px; line-height:1.6;
    }

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

    .srOnly{
      position:absolute; width:1px; height:1px;
      padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0);
      border:0;
    }

    @media (max-width: 980px){
      .heroGrid{ grid-template-columns: 1fr; }
      .heroCard, .sidePanel{ min-height:auto; }
      .steps{ grid-template-columns: 1fr; }
      .grid3{ grid-template-columns: 1fr; }
      .grid2{ grid-template-columns: 1fr; }
      .reviews{ grid-template-columns: 1fr; }
      .cardsRow{ grid-template-columns: 1fr; }
      .caseGrid{ grid-template-columns: 1fr; }
      .faqGrid{ grid-template-columns: 1fr; }
      .list{ grid-template-columns: 1fr; }
      .footerGrid{ grid-template-columns: 1fr; }
      form{ grid-template-columns: 1fr; }
      .span2{ grid-column:auto; }
      .navLinks{ display:none; }
      .burger{ display:inline-flex; align-items:center; justify-content:center; }
      .mobilePanel{ display:block; }
      .mobilePanel[data-open="false"]{ display:none; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ transition:none !important; animation:none !important; scroll-behavior:auto !important; }
      .fadeIn{ opacity:1; transform:none; }
    }