:root{
      --bg0:#fff6fb;
      --bg1:#ffffff;
      --text:#101828;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(16,24,40,.10);
      --card:rgba(255,255,255,.78);
      --card2:rgba(255,255,255,.92);
      --shadow: 0 18px 50px rgba(16,24,40,.10);
      --shadow2: 0 10px 30px rgba(16,24,40,.10);
      --brand:#ff2ea6;
      --brand2:#7c3aed;
      --brand3:#00c2ff;
      --brand4:#ffb020;
      --good:#16a34a;
      --warn:#f97316;
      --radius:18px;
      --radius2:26px;
      --max:1140px;
      --pad:18px;
      --focus: 0 0 0 4px rgba(255,46,166,.22);
    }
    *{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","Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(800px 420px at 12% 6%, rgba(255,46,166,.18), transparent 55%),
        radial-gradient(780px 420px at 88% 10%, rgba(124,58,237,.16), transparent 58%),
        radial-gradient(880px 520px at 50% 0%, rgba(0,194,255,.12), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 38%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--max);
      margin:0 auto;
      padding:0 var(--pad);
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.62);
      border-bottom:1px solid rgba(16,24,40,.08);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .brand img{
      width:44px;
      height:44px;
      object-fit:contain;
      background:rgba(255,255,255,.7);
      border:1px solid rgba(16,24,40,.10);
      border-radius:14px;
      box-shadow: 0 8px 20px rgba(16,24,40,.08);
    }
    .brand-name{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-name strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brand-name span{
      font-size:12px;
      color:var(--muted2);
      margin-top:4px;
    }

    .navlinks{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:nowrap;
      overflow:hidden;
    }
    .navlinks a{
      font-size:13px;
      color:rgba(16,24,40,.78);
      padding:10px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background: rgba(255,46,166,.08);
      border-color: rgba(255,46,166,.18);
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width: 220px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius:12px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.75);
      color:rgba(16,24,40,.92);
      box-shadow: 0 10px 25px rgba(16,24,40,.06);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      font-weight:650;
      font-size:13px;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(16,24,40,.10);
      border-color: rgba(255,46,166,.30);
    }
    .btn:active{transform: translateY(-1px)}
    .btn:focus{outline:none; box-shadow: var(--focus), 0 14px 30px rgba(16,24,40,.10);}
    .btn-primary{
      border-color: rgba(255,46,166,.26);
      background: linear-gradient(135deg, rgba(255,46,166,.96), rgba(124,58,237,.92));
      color:white;
      box-shadow: 0 18px 40px rgba(255,46,166,.22);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 55px rgba(255,46,166,.25);
      border-color: rgba(255,46,166,.36);
    }
    .btn-ghost{
      background: rgba(255,255,255,.65);
    }
    .icon{
      width:18px; height:18px; display:inline-block;
    }

    .mobile-toggle{
      display:none;
      width:44px; height:44px;
      border-radius:12px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      align-items:center; justify-content:center;
      transition: transform .15s ease;
    }
    .mobile-toggle:hover{transform: translateY(-2px)}
    .mobile-toggle svg{width:20px;height:20px}

    .mobile-panel{
      display:none;
      border-top:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.74);
      backdrop-filter: blur(10px);
    }
    .mobile-panel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
      border-bottom:1px solid rgba(16,24,40,.08);
      font-size:14px;
      color:rgba(16,24,40,.86);
    }
    .mobile-panel a:last-child{border-bottom:none}
    .mobile-panel .row{
      display:flex; align-items:center; gap:10px;
    }

    .hero{
      padding:34px 0 22px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-left{
      padding:18px 0 6px;
    }
    .eyebrow{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:14px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(255,46,166,.22);
      background: rgba(255,255,255,.55);
      box-shadow: 0 10px 28px rgba(255,46,166,.10);
      font-size:12px;
      color:rgba(16,24,40,.88);
      font-weight:650;
      letter-spacing:.2px;
    }
    .pill .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,46,166,.12);
    }
    .hero h1{
      margin:0;
      font-size:40px;
      line-height:1.12;
      letter-spacing:-.6px;
    }
    .hero p{
      margin:14px 0 0;
      color:rgba(16,24,40,.74);
      font-size:15px;
      line-height:1.9;
      max-width: 62ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
      align-items:center;
    }
    .hero-meta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:16px;
      align-items:center;
    }
    .meta-item{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.55);
      border-radius:14px;
      box-shadow: 0 10px 25px rgba(16,24,40,.06);
    }
    .meta-item strong{font-size:13px}
    .meta-item span{font-size:12px; color:var(--muted2); margin-top:2px}
    .meta-item .mini{
      width:28px; height:28px; border-radius:10px;
      background: linear-gradient(135deg, rgba(0,194,255,.18), rgba(124,58,237,.16));
      border:1px solid rgba(124,58,237,.18);
      display:flex; align-items:center; justify-content:center;
    }
    .mini svg{width:16px;height:16px; color:rgba(16,24,40,.85)}

    .hero-right{
      border-radius: var(--radius2);
      padding:18px;
      background:
        radial-gradient(700px 260px at 10% 0%, rgba(255,46,166,.18), transparent 55%),
        radial-gradient(500px 220px at 90% 10%, rgba(0,194,255,.16), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.64));
      border:1px solid rgba(16,24,40,.10);
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-right:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        conic-gradient(from 180deg, rgba(255,46,166,.18), rgba(124,58,237,.18), rgba(0,194,255,.16), rgba(255,176,32,.16), rgba(255,46,166,.18));
      filter: blur(18px);
      opacity:.35;
      pointer-events:none;
    }
    .hero-right-inner{position:relative}
    .data-cards{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .data-card{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      padding:14px 14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:92px;
    }
    .data-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(16,24,40,.12);
      border-color: rgba(255,46,166,.22);
    }
    .data-card .k{
      font-size:12px;
      color:var(--muted2);
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:650;
    }
    .badge{
      width:26px; height:26px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,46,166,.18), rgba(124,58,237,.14));
      border:1px solid rgba(255,46,166,.18);
    }
    .data-card .v{
      margin-top:10px;
      font-size:20px;
      font-weight:850;
      letter-spacing:-.2px;
    }
    .data-card .s{
      margin-top:6px;
      font-size:12px;
      color:rgba(16,24,40,.65);
      line-height:1.5;
    }

    .quick-panel{
      margin-top:14px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:14px;
    }
    .quick-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
    }
    .quick-title strong{font-size:14px}
    .small-note{
      font-size:12px; color:rgba(16,24,40,.62);
      padding:6px 10px;
      border:1px dashed rgba(16,24,40,.18);
      border-radius:999px;
      background: rgba(255,255,255,.5);
      white-space:nowrap;
    }
    .toggle-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .chip{
      flex: 1 1 auto;
      min-width: 160px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:10px 12px;
      cursor:pointer;
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .chip:hover{
      transform: translateY(-2px);
      border-color: rgba(255,46,166,.24);
      box-shadow: 0 16px 35px rgba(16,24,40,.10);
    }
    .chip[aria-pressed="true"]{
      background: linear-gradient(135deg, rgba(255,46,166,.16), rgba(124,58,237,.14));
      border-color: rgba(255,46,166,.36);
    }
    .chip .label{
      display:flex; flex-direction:column;
    }
    .chip .label strong{font-size:13px}
    .chip .label span{font-size:12px; color:rgba(16,24,40,.64); margin-top:2px}
    .chip .right{
      width:28px; height:28px; border-radius:12px;
      background: rgba(16,24,40,.05);
      border:1px solid rgba(16,24,40,.10);
      display:flex; align-items:center; justify-content:center;
    }
    .chip .right svg{width:16px;height:16px}

    .section{
      padding:40px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
      flex-wrap:wrap;
    }
    .section-title{
      display:flex;
      flex-direction:column;
      gap:10px;
      max-width: 70ch;
    }
    .section-title h2{
      margin:0;
      font-size:26px;
      letter-spacing:-.4px;
    }
    .section-title p{
      margin:0;
      color:rgba(16,24,40,.70);
      line-height:1.8;
      font-size:14px;
    }
    .section .tagline{
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
    }
    .tag{
      font-size:12px;
      color:rgba(16,24,40,.72);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      border-radius:999px;
      padding:9px 12px;
    }
    .tag b{color:rgba(16,24,40,.92)}

    .grid-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .grid-4{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
      align-items:stretch;
    }

    .card{
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 60px rgba(16,24,40,.10);
      border-color: rgba(255,46,166,.22);
    }
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:10px 0 0;
      color:rgba(16,24,40,.68);
      font-size:13.5px;
      line-height:1.85;
    }
    .card .top{
      display:flex; align-items:flex-start; gap:12px;
    }
    .card .svgbox{
      width:42px; height:42px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(255,46,166,.18), rgba(0,194,255,.12));
      border:1px solid rgba(255,46,166,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .card .svgbox svg{width:22px;height:22px}
    .card .list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      color:rgba(16,24,40,.76);
      font-size:13.2px;
      line-height:1.6;
    }
    .check{
      width:18px; height:18px; border-radius:8px;
      background: rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.24);
      display:flex; align-items:center; justify-content:center;
      margin-top:2px;
      flex:0 0 auto;
    }
    .check svg{width:12px;height:12px; color:rgba(22,163,74,.95)}

    .process{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:16px;
      align-items:start;
    }
    .steps{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .step{
      padding:14px 14px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      display:flex;
      gap:12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step:hover{
      transform: translateY(-3px);
      box-shadow: 0 20px 52px rgba(16,24,40,.10);
      border-color: rgba(255,46,166,.22);
    }
    .num{
      width:38px; height:38px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(255,46,166,.22), rgba(124,58,237,.14));
      border:1px solid rgba(255,46,166,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:rgba(16,24,40,.92);
      flex:0 0 auto;
    }
    .step strong{font-size:14px}
    .step p{margin:6px 0 0; font-size:13.2px; color:rgba(16,24,40,.68); line-height:1.7}

    .side-quote{
      border-radius: var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(600px 280px at 20% 10%, rgba(255,46,166,.16), transparent 58%),
        radial-gradient(520px 260px at 90% 25%, rgba(0,194,255,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
      padding:16px;
      box-shadow: var(--shadow2);
      position:sticky;
      top:88px;
    }
    .side-quote .q{
      font-size:13.5px;
      color:rgba(16,24,40,.72);
      line-height:1.9;
      margin:0;
    }
    .side-quote .sig{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }
    .sig .who{
      display:flex; flex-direction:column;
      gap:4px;
    }
    .sig .who strong{font-size:14px}
    .sig .who span{font-size:12px; color:rgba(16,24,40,.60)}
    .spark{
      width:40px; height:40px; border-radius:18px;
      border:1px solid rgba(255,46,166,.22);
      background: rgba(255,46,166,.10);
      display:flex; align-items:center; justify-content:center;
    }
    .spark svg{width:20px;height:20px}

    .compare-wrap{
      border-radius: var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 55px rgba(16,24,40,.08);
      overflow:hidden;
    }
    .compare-head{
      padding:16px;
      border-bottom:1px solid rgba(16,24,40,.08);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      background:
        radial-gradient(560px 220px at 10% 0%, rgba(255,46,166,.16), transparent 60%),
        radial-gradient(520px 220px at 100% 10%, rgba(124,58,237,.14), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
    }
    .compare-head .left{
      display:flex; flex-direction:column; gap:10px;
      max-width: 72ch;
    }
    .compare-head h3{margin:0; font-size:16px}
    .compare-head p{margin:0; color:rgba(16,24,40,.68); line-height:1.8; font-size:13.5px}

    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      font-size:13.5px;
      min-width: 860px;
    }
    .table-scroll{
      overflow:auto;
    }
    th, td{
      border-bottom:1px solid rgba(16,24,40,.08);
      padding:14px 12px;
      vertical-align:top;
    }
    th{
      text-align:left;
      background: rgba(255,255,255,.75);
      position:sticky;
      top:0;
      z-index:2;
      border-bottom:1px solid rgba(16,24,40,.10);
      font-size:12.5px;
      color:rgba(16,24,40,.66);
      letter-spacing:.2px;
    }
    tr:last-child td{border-bottom:none}
    .td-strong{font-weight:800}
    .muted{color:rgba(16,24,40,.66)}
    .mark{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.72);
      margin-top:6px;
      white-space:nowrap;
    }
    .mark .m{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,46,166,.12);
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .timeline-item{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .timeline-item:before{
      content:"";
      position:absolute;
      inset:-60px -120px auto auto;
      width:220px; height:220px;
      background: radial-gradient(circle at 30% 30%, rgba(255,46,166,.18), transparent 60%);
      transform: rotate(12deg);
      pointer-events:none;
    }
    .timeline-item .t-head{
      display:flex; align-items:center; gap:12px;
      position:relative;
    }
    .timeline-item .t-ico{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(135deg, rgba(0,194,255,.14), rgba(124,58,237,.14));
      border:1px solid rgba(0,194,255,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .timeline-item .t-ico svg{width:20px;height:20px}
    .timeline-item strong{font-size:14px}
    .timeline-item p{
      margin:10px 0 0;
      color:rgba(16,24,40,.68);
      font-size:13.5px;
      line-height:1.85;
      position:relative;
    }

    .pricing{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:16px;
      align-items:start;
    }
    .price-card{
      border-radius: var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(560px 220px at 20% 0%, rgba(255,46,166,.16), transparent 60%),
        radial-gradient(520px 220px at 100% 20%, rgba(0,194,255,.14), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.64));
      padding:16px;
      box-shadow: var(--shadow2);
    }
    .price-card h3{margin:0; font-size:16px}
    .price-card p{margin:10px 0 0; color:rgba(16,24,40,.68); font-size:13.5px; line-height:1.85}
    .price-grid{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .price-item{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:12px;
      min-height:92px;
    }
    .price-item .k{
      font-size:12px; color:rgba(16,24,40,.62); font-weight:700; display:flex; align-items:center; gap:10px;
    }
    .price-item .v{
      margin-top:10px;
      font-size:18px;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .price-item .s{
      margin-top:6px;
      font-size:12.5px;
      color:rgba(16,24,40,.66);
      line-height:1.5;
    }
    .refine-card{
      border-radius: var(--radius2);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:16px;
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
    }
    .refine-card h3{margin:0; font-size:16px}
    .refine-card p{margin:10px 0 0; color:rgba(16,24,40,.68); font-size:13.5px; line-height:1.85}
    .refine-list{
      list-style:none; padding:0; margin:12px 0 0;
      display:flex; flex-direction:column; gap:10px;
    }

    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .faq-item{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      overflow:hidden;
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
    }
    .faq-q{
      padding:14px 14px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      cursor:pointer;
      user-select:none;
      transition: background .2s ease;
    }
    .faq-item[aria-expanded="true"] .faq-q{background: rgba(255,46,166,.06)}
    .faq-q strong{
      font-size:14px;
      line-height:1.5;
      letter-spacing:-.2px;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease;
      margin-top:1px;
    }
    .faq-item[aria-expanded="true"] .chev{
      transform: rotate(180deg);
      border-color: rgba(255,46,166,.25);
    }
    .faq-a{
      padding:0 14px 14px;
      color:rgba(16,24,40,.70);
      font-size:13.5px;
      line-height:1.9;
      display:none;
    }
    .faq-item[aria-expanded="true"] .faq-a{display:block}

    .comments{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .comment{
      border-radius: var(--radius);
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:16px;
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      display:flex; flex-direction:column;
      gap:10px;
    }
    .comment .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .who{
      display:flex; align-items:center; gap:10px;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(135deg, rgba(255,46,166,.18), rgba(0,194,255,.14));
      border:1px solid rgba(255,46,166,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:rgba(16,24,40,.9);
    }
    .who .name{
      display:flex; flex-direction:column; gap:3px;
    }
    .who .name strong{font-size:14px}
    .who .name span{font-size:12px; color:rgba(16,24,40,.62)}
    .stars{
      display:flex; gap:3px; align-items:center;
      color:rgba(255,176,32,.95);
      font-weight:900;
      font-size:13px;
    }
    .comment p{
      margin:0;
      color:rgba(16,24,40,.68);
      font-size:13.5px;
      line-height:1.85;
    }
    .comment .bottom{
      margin-top:auto;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .mini-pill{
      font-size:12px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:7px 10px;
      border-radius:999px;
      color:rgba(16,24,40,.70);
    }

    .cards-row{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    .case-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .case{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:14px;
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .case:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 60px rgba(16,24,40,.10);
      border-color: rgba(255,46,166,.22);
    }
    .case .thumb{
      border-radius:16px;
      overflow:hidden;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(16,24,40,.03);
    }
    .case img{
      width:100%;
      height:auto;
      display:block;
      object-fit:cover;
      aspect-ratio: 16/10;
    }
    .case h3{margin:12px 0 0; font-size:14.5px}
    .case p{margin:8px 0 0; color:rgba(16,24,40,.68); font-size:13.2px; line-height:1.8}
    .case .meta{
      margin-top:10px;
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .post-list{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .post{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:14px;
      display:flex;
      flex-direction:column;
      gap:8px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      box-shadow: 0 14px 35px rgba(16,24,40,.06);
    }
    .post:hover{
      transform: translateY(-3px);
      box-shadow: 0 22px 60px rgba(16,24,40,.10);
      border-color: rgba(255,46,166,.22);
    }
    .post .row{
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }
    .post strong{font-size:14.5px}
    .post .time{
      font-size:12px; color:rgba(16,24,40,.58);
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
    }
    .post p{
      margin:0;
      color:rgba(16,24,40,.68);
      font-size:13.2px;
      line-height:1.8;
    }
    .post a.link{
      color:rgba(255,46,166,.95);
      font-weight:800;
      font-size:13px;
    }
    .post a.link:hover{text-decoration:underline}

    form{
      margin-top:10px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:flex; flex-direction:column; gap:8px;
      font-size:12px;
      color:rgba(16,24,40,.68);
      font-weight:700;
    }
    input, select, textarea{
      border-radius:14px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.84);
      padding:12px 12px;
      font-size:14px;
      color:rgba(16,24,40,.92);
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
      width:100%;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,46,166,.35);
      box-shadow: var(--focus);
    }
    .span-2{grid-column: 1 / -1}
    .form-actions{
      grid-column: 1 / -1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:2px;
    }
    .hint{
      font-size:12px;
      color:rgba(16,24,40,.62);
      line-height:1.6;
      max-width: 60ch;
    }
    .submit-row{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .toast{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:18px;
      background: rgba(16,24,40,.92);
      color:white;
      padding:12px 14px;
      border-radius:14px;
      box-shadow: 0 18px 60px rgba(0,0,0,.24);
      z-index:100;
      opacity:0;
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
      max-width: calc(100vw - 30px);
      font-size:13px;
      line-height:1.5;
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(-6px);
    }

    footer{
      padding:26px 0 34px;
      border-top:1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.60);
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap:16px;
      align-items:start;
    }
    .foot-title{
      font-weight:900;
      letter-spacing:-.2px;
      display:flex; align-items:center; gap:10px;
    }
    .foot-title .logo-dot{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,46,166,.12);
    }
    .foot p{
      margin:12px 0 0;
      color:rgba(16,24,40,.68);
      font-size:13.2px;
      line-height:1.85;
    }
    .foot-links{
      margin-top:10px;
      display:flex; flex-direction:column; gap:10px;
    }
    .foot-links a{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:rgba(16,24,40,.78);
      font-size:13.2px;
    }
    .foot-links a:hover{color:rgba(255,46,166,.95); text-decoration:underline}
    .small-legal{
      margin-top:16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(16,24,40,.62);
      font-size:12.5px;
      border-top:1px solid rgba(16,24,40,.08);
      padding-top:14px;
    }

    .return-top{
      position:fixed;
      right:16px;
      bottom:88px;
      z-index:80;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 50px rgba(16,24,40,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, opacity .2s ease;
      opacity:0;
      pointer-events:none;
    }
    .return-top.show{
      opacity:1;
      pointer-events:auto;
    }
    .return-top:hover{transform: translateY(-3px)}
    .return-top svg{width:18px;height:18px}

    .float-contact{
      position:fixed;
      right:16px;
      bottom:24px;
      z-index:90;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 50px rgba(16,24,40,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease;
    }
    .float-btn:hover{transform: translateY(-3px)}
    .float-btn svg{width:20px;height:20px}
    .qrcode-pop{
      width:240px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 26px 90px rgba(16,24,40,.18);
      overflow:hidden;
      transform-origin: bottom right;
      animation: popIn .18s ease both;
      display:none;
    }
    .qrcode-pop.show{display:block}
    @keyframes popIn{
      from{opacity:0; transform: translateY(8px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .qrcode-top{
      padding:12px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
    }
    .qrcode-top strong{font-size:13px}
    .qrcode-top button{
      border:none;
      background:transparent;
      cursor:pointer;
      padding:6px 8px;
      border-radius:10px;
      color:rgba(16,24,40,.62);
    }
    .qrcode-top button:hover{background: rgba(16,24,40,.06); color:rgba(16,24,40,.85)}
    .qrcode-body{
      padding:12px;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:center;
      color:rgba(16,24,40,.70);
      font-size:12.5px;
      line-height:1.6;
    }
    .qrcode-body img{
      width:170px;
      height:auto;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: #fff;
    }

    .fade-in{
      opacity:0;
      transform: translateY(14px);
      transition: opacity .55s ease, transform .55s ease;
      will-change: opacity, transform;
    }
    .fade-in.show{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .side-quote{position:relative; top:auto}
      .grid-3{grid-template-columns: 1fr 1fr}
      .grid-4{grid-template-columns: 1fr 1fr}
      .process{grid-template-columns: 1fr}
      .pricing{grid-template-columns: 1fr}
      .timeline{grid-template-columns: 1fr}
      .cards-row{grid-template-columns: 1fr}
      table{min-width: 760px}
      .comments{grid-template-columns: 1fr 1fr}
      .faq{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .navlinks{display:none}
      .nav-cta{min-width:auto}
      .mobile-toggle{display:flex}
      .mobile-panel.show{display:block}
    }
    @media (max-width: 560px){
      .hero h1{font-size:30px}
      .data-cards{grid-template-columns: 1fr}
      .comments{grid-template-columns: 1fr}
      form{grid-template-columns: 1fr}
      .span-2{grid-column:auto}
      .return-top{bottom:100px}
      .float-contact{right:12px}
    }