:root{
      --bg0:#fff7fb;
      --bg1:#fff;
      --card:#ffffff;
      --text:#1f2330;
      --muted:#5a647a;
      --line:rgba(20, 20, 30, .10);
      --shadow: 0 14px 40px rgba(23, 18, 32, .08);
      --shadow2: 0 8px 22px rgba(23, 18, 32, .10);
      --brand:#e63a72;
      --brand2:#ff5b8f;
      --brand3:#ff2d6e;
      --ink:#141726;
      --chip:#fff0f6;
      --chipLine:rgba(230,58,114,.20);
      --focus:rgba(230,58,114,.32);
      --radius:18px;
      --radius2:14px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      background:
        radial-gradient(1100px 520px at 20% -10%, rgba(230,58,114,.18), rgba(230,58,114,0) 60%),
        radial-gradient(900px 520px at 90% 0%, rgba(255,91,143,.14), rgba(255,91,143,0) 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 48%, #ffffff);
      color:var(--text);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .skip{
      position:absolute; left:-999px; top:10px;
      background:#000; color:#fff; padding:10px 12px; border-radius:10px; z-index:9999;
    }
    .skip:focus{left:14px}
    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background:rgba(255,255,255,.70);
      border-bottom:1px solid rgba(20,20,30,.08);
    }
    .nav-wrap{
      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:40px; height:40px;
      border-radius:12px;
      box-shadow:0 10px 24px rgba(230,58,114,.18);
      background:#fff;
      padding:6px;
      object-fit:contain;
    }
    .brand .name{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .name strong{font-size:14.5px; letter-spacing:.2px}
    .brand .name span{font-size:12px; color:var(--muted)}
    nav{
      display:flex; align-items:center; gap:10px; justify-content:flex-end;
      flex-wrap:wrap;
    }
    .nav-links{
      display:flex; align-items:center; gap:10px;
    }
    .nav-links a{
      font-size:13.5px;
      color:rgba(20,22,38,.78);
      padding:9px 10px;
      border-radius:999px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      position:relative;
      outline:none;
    }
    .nav-links a:focus-visible{
      box-shadow:0 0 0 4px var(--focus);
    }
    .nav-links a:hover{
      background:rgba(230,58,114,.10);
      color:rgba(20,22,38,.98);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px; margin-left:6px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      border:1px solid rgba(230,58,114,.28);
      background:linear-gradient(180deg, #ff5b8f, #e63a72);
      color:#fff;
      padding:10px 14px;
      border-radius:12px;
      font-weight:700;
      font-size:13.5px;
      box-shadow:0 16px 32px rgba(230,58,114,.22);
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
      outline:none;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-2px); box-shadow:0 20px 38px rgba(230,58,114,.26); filter:saturate(1.05)}
    .btn:active{transform: translateY(-1px)}
    .btn:focus-visible{box-shadow:0 0 0 4px var(--focus), 0 18px 35px rgba(230,58,114,.22)}
    .btn-ghost{
      background:rgba(255,255,255,.75);
      color:rgba(20,22,38,.92);
      border:1px solid rgba(20,20,30,.12);
      box-shadow:none;
      font-weight:650;
    }
    .btn-ghost:hover{background:#fff; transform: translateY(-2px); box-shadow:0 12px 26px rgba(20,20,30,.10)}
    .icon-dot{
      width:10px; height:10px; border-radius:50%;
      background:#fff;
      box-shadow: 0 0 0 3px rgba(255,255,255,.22);
      margin-right:10px;
    }

    .hamburger{
      display:none;
      width:42px; height:42px;
      border-radius:12px;
      border:1px solid rgba(20,20,30,.12);
      background:#fff;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .hamburger:focus-visible{box-shadow:0 0 0 4px var(--focus)}
    .hamburger:hover{transform: translateY(-1px); box-shadow:0 12px 28px rgba(20,20,30,.10)}
    .hamburger .bars{
      width:18px; height:14px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0;
      height:2px; background:rgba(20,22,38,.86);
      border-radius:2px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger .bars span:nth-child(1){top:1px}
    .hamburger .bars span:nth-child(2){top:6px}
    .hamburger .bars span:nth-child(3){top:11px}
    .hamburger[aria-expanded="true"] .bars span:nth-child(1){top:6px; transform: rotate(45deg)}
    .hamburger[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .bars span:nth-child(3){top:6px; transform: rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding:0 0 14px 0;
    }
    .mobile-panel .mobile-nav{
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.85);
      border-radius:16px;
      padding:10px;
      box-shadow:0 14px 40px rgba(20,20,30,.08);
    }
    .mobile-panel .mobile-nav a{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 12px;
      border-radius:12px;
      font-size:14px;
      color:rgba(20,22,38,.92);
      border:1px solid transparent;
      transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }
    .mobile-panel .mobile-nav a:hover{
      background:rgba(230,58,114,.10);
      border-color:rgba(230,58,114,.18);
      transform: translateY(-1px);
    }
    .mobile-panel .mobile-nav .arrow{
      width:26px; height:26px; border-radius:9px;
      border:1px solid rgba(20,20,30,.10);
      display:flex; align-items:center; justify-content:center;
      color:rgba(230,58,114,.95);
      background:#fff;
      font-weight:900;
    }

    main{padding-bottom:10px}
    .hero{
      position:relative;
      padding:34px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      padding:18px 0 6px;
      position:relative;
    }
    .badge-row{
      display:flex; flex-wrap:wrap; gap:10px;
      margin:6px 0 14px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:9px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(230,58,114,.18);
      color:rgba(20,22,38,.9);
      box-shadow: 0 10px 24px rgba(230,58,114,.08);
      font-size:13px;
      font-weight:650;
    }
    .badge i{
      width:12px; height:12px; border-radius:4px;
      background:linear-gradient(180deg, #ff6aa0, #e63a72);
      display:inline-block;
      box-shadow:0 10px 20px rgba(230,58,114,.18);
    }
    h1{
      margin:0;
      font-size:40px;
      letter-spacing:-.8px;
      line-height:1.12;
      color:#141726;
    }
    .hero-sub{
      margin:12px 0 18px;
      max-width:54ch;
      font-size:16px;
      line-height:1.7;
      color:rgba(20,22,38,.72);
    }
    .hero-actions{
      display:flex; flex-wrap:wrap; gap:12px; align-items:center;
      margin-top:10px;
    }
    .btn-secondary{
      border:1px solid rgba(20,20,30,.12);
      background:rgba(255,255,255,.80);
      color:rgba(20,22,38,.92);
      box-shadow:none;
      font-weight:700;
    }
    .hero-meta{
      display:flex; gap:18px; flex-wrap:wrap;
      margin-top:16px;
      padding-top:14px;
      border-top:1px dashed rgba(20,20,30,.10);
    }
    .meta-item{
      display:flex; flex-direction:column; gap:6px;
      min-width:160px;
    }
    .meta-item strong{
      font-size:14px;
      color:#141726;
      letter-spacing:.2px;
    }
    .meta-item span{
      font-size:12.5px; color:rgba(20,22,38,.64); line-height:1.5;
    }
    .hero-right{
      border-radius: var(--radius);
      border:1px solid rgba(230,58,114,.14);
      background:
        radial-gradient(700px 280px at 10% 0%, rgba(230,58,114,.22), rgba(230,58,114,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
      padding:16px;
    }
    .hero-right::after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(400px 220px at 90% 20%, rgba(255,91,143,.18), rgba(255,91,143,0) 60%);
      pointer-events:none;
    }
    .data-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .stat{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,20,30,.10);
      border-radius:14px;
      padding:14px 12px;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      will-change: transform;
      position:relative;
      overflow:hidden;
      min-height:92px;
      display:flex; flex-direction:column; justify-content:space-between;
    }
    .stat:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 38px rgba(20,20,30,.10);
      border-color: rgba(230,58,114,.24);
    }
    .stat .k{
      font-size:12.5px;
      color:rgba(20,22,38,.62);
      display:flex; align-items:center; gap:8px;
      letter-spacing:.2px;
      white-space:nowrap;
    }
    .stat .k b{
      width:26px; height:26px; border-radius:10px;
      background:linear-gradient(180deg, rgba(255,91,143,.95), rgba(230,58,114,.95));
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-size:12px;
      box-shadow:0 16px 26px rgba(230,58,114,.22);
      flex:0 0 auto;
    }
    .stat .v{
      font-size:18px;
      font-weight:900;
      color:#141726;
      letter-spacing:-.2px;
    }
    .stat .s{
      font-size:12.5px;
      color:rgba(20,22,38,.64);
      line-height:1.45;
      margin-top:6px;
    }
    .mini-flow{
      margin-top:12px;
      border-top:1px solid rgba(20,20,30,.08);
      padding-top:12px;
      position:relative;
      z-index:1;
    }
    .flow-row{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
    }
    .step-pill{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.74);
      font-size:13.5px;
      font-weight:750;
      color:rgba(20,22,38,.92);
      transition: transform .2s ease, border-color .2s ease;
    }
    .step-pill:hover{transform: translateY(-2px); border-color: rgba(230,58,114,.24)}
    .step-pill .num{
      width:24px; height:24px; border-radius:10px;
      background:rgba(230,58,114,.12);
      border:1px solid rgba(230,58,114,.22);
      color:rgba(230,58,114,.98);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      flex:0 0 auto;
      font-size:12px;
    }
    .float-cta{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-card{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(20,20,30,.10);
      box-shadow: 0 18px 46px rgba(20,20,30,.14);
      backdrop-filter: blur(8px);
      max-width:260px;
      transform-origin: right bottom;
      animation: popIn .45s ease both;
    }
    @keyframes popIn{
      from{opacity:0; transform: translateY(10px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .float-card .qr{
      width:42px; height:42px;
      border-radius:14px;
      background:rgba(230,58,114,.10);
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(230,58,114,.18);
      overflow:hidden;
      flex:0 0 auto;
    }
    .float-card .qr img{width:40px; height:40px; object-fit:cover}
    .float-card .txt{
      display:flex; flex-direction:column; gap:2px;
      min-width:120px;
    }
    .float-card .txt strong{font-size:13.5px}
    .float-card .txt span{font-size:12px; color:rgba(20,22,38,.62); line-height:1.3}
    .float-link{
      display:inline-flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:16px;
      background:linear-gradient(180deg, #ff5b8f, #e63a72);
      color:#fff;
      font-weight:900;
      border:1px solid rgba(230,58,114,.24);
      box-shadow:0 18px 40px rgba(230,58,114,.28);
      transition: transform .2s ease, box-shadow .2s ease;
      outline:none;
      white-space:nowrap;
    }
    .float-link:hover{transform: translateY(-2px); box-shadow:0 22px 50px rgba(230,58,114,.34)}
    .float-link:focus-visible{box-shadow:0 0 0 4px var(--focus), 0 22px 50px rgba(230,58,114,.34)}
    .float-link svg{width:18px; height:18px; flex:0 0 auto}

    section{
      padding:26px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:16px;
    }
    .section-title{
      display:flex; flex-direction:column; gap:8px;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      color:rgba(230,58,114,.98);
      font-weight:900;
      font-size:13px;
      letter-spacing:.3px;
      text-transform:none;
    }
    .kicker::before{
      content:"";
      width:10px; height:10px; border-radius:4px;
      background:linear-gradient(180deg, #ff6aa0, #e63a72);
      box-shadow:0 12px 22px rgba(230,58,114,.22);
    }
    h2{
      margin:0;
      font-size:26px;
      letter-spacing:-.4px;
      line-height:1.2;
      color:#141726;
    }
    .section-desc{
      margin:0;
      color:rgba(20,22,38,.68);
      font-size:14.5px;
      line-height:1.7;
      max-width:60ch;
    }

    .grid-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      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:12px;
      align-items:stretch;
    }

    .card{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(20,20,30,.10);
      border-radius:var(--radius2);
      box-shadow: 0 10px 26px rgba(20,20,30,.06);
      overflow:hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      position:relative;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(20,20,30,.10);
      border-color: rgba(230,58,114,.22);
    }
    .card-pad{padding:16px}
    .card h3{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
      color:#141726;
    }
    .card p{
      margin:10px 0 0;
      color:rgba(20,22,38,.68);
      font-size:14px;
      line-height:1.7;
    }
    .chip-row{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .chip{
      border-radius:999px;
      padding:8px 10px;
      border:1px solid var(--chipLine);
      background:var(--chip);
      color:rgba(230,58,114,.98);
      font-weight:800;
      font-size:12.5px;
      white-space:nowrap;
    }

    .timeline{
      border-radius:var(--radius);
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.82);
      box-shadow: 0 12px 30px rgba(20,20,30,.06);
      overflow:hidden;
    }
    .timeline .row{
      display:grid;
      grid-template-columns: .65fr .35fr;
      gap:0;
      align-items:stretch;
    }
    .timeline .left{
      padding:18px;
      border-right:1px dashed rgba(20,20,30,.10);
    }
    .timeline .right{
      padding:18px;
      background:
        radial-gradient(520px 220px at 60% 0%, rgba(230,58,114,.18), rgba(230,58,114,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
    }
    .timeline .left ul{
      list-style:none; padding:0; margin:0;
      display:flex; flex-direction:column; gap:12px;
    }
    .titem{
      display:flex; gap:12px; align-items:flex-start;
    }
    .ticon{
      width:38px; height:38px;
      border-radius:14px;
      background:linear-gradient(180deg, rgba(255,91,143,.18), rgba(230,58,114,.08));
      border:1px solid rgba(230,58,114,.20);
      display:flex; align-items:center; justify-content:center;
      color:rgba(230,58,114,.98);
      font-weight:1000;
      flex:0 0 auto;
    }
    .ttext strong{display:block; font-size:14.5px; color:#141726}
    .ttext span{display:block; margin-top:4px; color:rgba(20,22,38,.66); font-size:13.5px; line-height:1.6}
    .timeline .right .callout{
      background:rgba(255,255,255,.72);
      border:1px solid rgba(20,20,30,.10);
      border-radius:16px;
      padding:14px;
    }
    .callout .label{
      display:flex; align-items:center; gap:10px;
      font-weight:950; color:rgba(230,58,114,.98);
      font-size:13px;
    }
    .callout .label b{
      width:26px; height:26px; border-radius:10px;
      background:linear-gradient(180deg, #ff6aa0, #e63a72);
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 14px 24px rgba(230,58,114,.22);
    }
    .callout .desc{
      margin:10px 0 0;
      color:rgba(20,22,38,.68);
      font-size:14px;
      line-height:1.7;
    }

    .compare-wrap{
      border-radius:var(--radius);
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.86);
      box-shadow: 0 12px 28px rgba(20,20,30,.06);
      overflow:hidden;
    }
    .compare-top{
      padding:16px;
      display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:space-between;
      border-bottom:1px solid rgba(20,20,30,.08);
      background:
        radial-gradient(820px 260px at 15% 0%, rgba(230,58,114,.18), rgba(230,58,114,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
    }
    .rating{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap;
    }
    .rating-badge{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(230,58,114,.22);
      background:rgba(255,240,247,.85);
      box-shadow: 0 18px 36px rgba(230,58,114,.12);
    }
    .stars{
      display:flex; gap:4px; align-items:center;
      letter-spacing:0;
    }
    .star{
      width:18px; height:18px;
      background:linear-gradient(180deg, #ff6aa0, #e63a72);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      box-shadow:0 10px 20px rgba(230,58,114,.22);
    }
    .rating-badge strong{
      font-size:18px; letter-spacing:-.3px;
    }
    .rating-badge span{display:block; margin-top:2px; font-size:12.5px; color:rgba(20,22,38,.64); font-weight:650}
    .score{
      display:flex; flex-direction:column;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.75);
      min-width:170px;
    }
    .score .top{
      display:flex; align-items:baseline; justify-content:space-between; gap:10px;
    }
    .score .top strong{
      font-size:26px; letter-spacing:-.6px;
      color:#141726;
    }
    .score .top span{
      font-size:12.5px; color:rgba(20,22,38,.62); font-weight:750;
    }
    .score .bottom{
      margin-top:6px;
      font-size:12.8px;
      color:rgba(20,22,38,.66);
      line-height:1.5;
      font-weight:650;
    }

    .compare-table{
      width:100%;
      border-collapse:collapse;
      table-layout:fixed;
    }
    .compare-table th,
    .compare-table td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,20,30,.08);
      font-size:13.5px;
      vertical-align:top;
      color:rgba(20,22,38,.78);
    }
    .compare-table th{
      text-align:left;
      background:rgba(255,255,255,.72);
      font-weight:950;
      color:#141726;
      border-bottom:1px solid rgba(230,58,114,.12);
    }
    .compare-table td{
      background:rgba(255,255,255,.88);
    }
    .badge-ok{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(230,58,114,.22);
      background:rgba(255,240,247,.86);
      color:rgba(230,58,114,.98);
      font-weight:950;
      white-space:nowrap;
    }
    .badge-mid{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,30,.12);
      background:rgba(255,255,255,.75);
      color:rgba(20,22,38,.82);
      font-weight:900;
      white-space:nowrap;
    }

    .services-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .service-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .service-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 14px;
      border-radius:16px;
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.78);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .service-item:hover{
      transform: translateY(-3px);
      border-color: rgba(230,58,114,.22);
      box-shadow: 0 18px 36px rgba(20,20,30,.10);
    }
    .sicon{
      width:42px; height:42px; border-radius:16px;
      background:linear-gradient(180deg, rgba(255,91,143,.16), rgba(230,58,114,.08));
      border:1px solid rgba(230,58,114,.20);
      display:flex; align-items:center; justify-content:center;
      color:rgba(230,58,114,.98);
      flex:0 0 auto;
      font-weight:1000;
    }
    .service-item strong{display:block; font-size:14.5px; color:#141726}
    .service-item span{display:block; margin-top:6px; font-size:13.5px; color:rgba(20,22,38,.66); line-height:1.6}

    .table-scroll{
      overflow:auto;
      border-radius: 16px;
      border: 1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.82);
    }
    .table-scroll::-webkit-scrollbar{height:10px}
    .table-scroll::-webkit-scrollbar-thumb{background:rgba(230,58,114,.18); border-radius:99px}
    .table-scroll::-webkit-scrollbar-track{background:transparent}

    .faq-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:flex-start;
    }
    .accordion{
      border:1px solid rgba(20,20,30,.10);
      border-radius:var(--radius);
      background:rgba(255,255,255,.86);
      overflow:hidden;
      box-shadow: 0 12px 28px rgba(20,20,30,.06);
    }
    .acc-item{
      border-bottom:1px solid rgba(20,20,30,.08);
    }
    .acc-item:last-child{border-bottom:none}
    .acc-btn{
      width:100%;
      text-align:left;
      background:transparent;
      border:none;
      padding:14px 16px;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      color:#141726;
      font-weight:900;
      font-size:14.5px;
      outline:none;
    }
    .acc-btn:focus-visible{box-shadow: inset 0 0 0 4px var(--focus)}
    .acc-btn .right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
      color:rgba(230,58,114,.98);
      font-weight:1000;
    }
    .chev{
      width:26px; height:26px; border-radius:10px;
      border:1px solid rgba(230,58,114,.22);
      background:rgba(255,240,247,.88);
      display:flex; align-items:center; justify-content:center;
      transition: transform .22s ease;
    }
    .acc-item[data-open="true"] .chev{transform: rotate(180deg)}
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
    }
    .acc-panel-inner{
      padding:0 16px 14px 16px;
      color:rgba(20,22,38,.68);
      font-size:14px;
      line-height:1.7;
    }
    .acc-item[data-open="true"] .acc-panel{max-height:320px}

    .comments-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .quote{
      padding:16px;
      position:relative;
    }
    .quote::before{
      content:"“";
      position:absolute;
      top:8px; left:12px;
      font-size:46px;
      color:rgba(230,58,114,.18);
      font-weight:1000;
      pointer-events:none;
    }
    .quote .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:10px;
      position:relative;
      z-index:1;
    }
    .avatar{
      width:44px; height:44px;
      border-radius:16px;
      background:
        radial-gradient(26px 26px at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,0) 60%),
        linear-gradient(180deg, rgba(255,91,143,.24), rgba(230,58,114,.10));
      border:1px solid rgba(230,58,114,.22);
      display:flex; align-items:center; justify-content:center;
      color:rgba(230,58,114,.98);
      font-weight:1000;
    }
    .who{
      display:flex; flex-direction:column;
      margin-left:10px;
      gap:3px;
    }
    .who strong{font-size:14.5px; color:#141726}
    .who span{font-size:12.8px; color:rgba(20,22,38,.62); font-weight:650}
    .quote .stars2{
      display:flex; gap:3px; align-items:center; margin-right:2px;
    }
    .quote .stars2 i{
      width:12px; height:12px;
      background:linear-gradient(180deg, #ff6aa0, #e63a72);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      box-shadow:0 10px 18px rgba(230,58,114,.20);
    }
    .quote p{
      margin:0;
      position:relative;
      z-index:1;
      color:rgba(20,22,38,.70);
      line-height:1.7;
      font-size:14px;
    }

    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .form-card{
      padding:16px;
      background:rgba(255,255,255,.86);
      border:1px solid rgba(20,20,30,.10);
      border-radius:var(--radius);
      box-shadow: 0 12px 28px rgba(20,20,30,.06);
    }
    form{
      display:flex; flex-direction:column; gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .label{
      font-size:13px;
      color:rgba(20,22,38,.72);
      font-weight:800;
    }
    input, select, textarea{
      width:100%;
      border:1px solid rgba(20,20,30,.12);
      background:rgba(255,255,255,.92);
      border-radius:14px;
      padding:12px 12px;
      color:#141726;
      outline:none;
      font-size:14px;
      transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
    }
    textarea{min-height:112px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(230,58,114,.34);
      box-shadow:0 0 0 4px var(--focus);
    }
    .form-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:flex-start;
      margin-top:2px;
    }
    .note{
      color:rgba(20,22,38,.60);
      font-size:12.8px;
      line-height:1.5;
      margin:0;
    }

    .right-side{
      display:flex; flex-direction:column; gap:14px;
    }
    .info-card{
      padding:16px;
      border-radius:var(--radius);
      border:1px solid rgba(20,20,30,.10);
      background:
        radial-gradient(560px 220px at 20% 0%, rgba(230,58,114,.18), rgba(230,58,114,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.70));
      box-shadow: 0 12px 28px rgba(20,20,30,.06);
    }
    .info-card .head{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .info-card .head strong{
      font-size:15.5px; color:#141726; letter-spacing:-.2px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(230,58,114,.22);
      background:rgba(255,240,247,.86);
      color:rgba(230,58,114,.98);
      font-weight:1000;
      font-size:12.5px;
      white-space:nowrap;
    }
    .kv{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:10px;
    }
    .kv .it{
      border:1px solid rgba(20,20,30,.10);
      border-radius:16px;
      padding:12px 12px;
      background:rgba(255,255,255,.78);
    }
    .kv .it span{
      display:block;
      color:rgba(20,22,38,.62);
      font-size:12.8px;
      font-weight:750;
    }
    .kv .it strong{
      display:block;
      margin-top:6px;
      color:#141726;
      font-size:14.5px;
      letter-spacing:-.2px;
    }
    .qr-area{
      display:flex; gap:12px; align-items:flex-start; margin-top:12px;
    }
    .qr-wrap{
      width:112px; height:112px;
      border-radius:22px;
      border:1px solid rgba(230,58,114,.22);
      background:rgba(255,240,247,.86);
      padding:10px;
      flex:0 0 auto;
      box-shadow: 0 18px 36px rgba(230,58,114,.12);
    }
    .qr-wrap img{width:100%; height:100%; object-fit:cover; border-radius:18px}
    .qr-text strong{display:block; font-size:14.8px}
    .qr-text span{display:block; margin-top:6px; color:rgba(20,22,38,.64); font-size:13.5px; line-height:1.6}

    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.86);
      box-shadow: 0 12px 28px rgba(20,20,30,.06);
    }
    .tag-cloud a{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.72);
      color:rgba(20,22,38,.80);
      font-weight:850;
      font-size:13px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      white-space:nowrap;
    }
    .tag-cloud a:hover{
      transform: translateY(-2px);
      border-color: rgba(230,58,114,.24);
      background:rgba(255,240,247,.86);
      color:rgba(230,58,114,.98);
    }

    .logos-row{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.84);
      box-shadow: 0 12px 28px rgba(20,20,30,.06);
    }
    .model-chip{
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.70);
      color:rgba(20,22,38,.78);
      font-weight:900;
      font-size:13px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .model-chip:hover{
      transform: translateY(-2px);
      border-color: rgba(230,58,114,.24);
      box-shadow: 0 16px 30px rgba(20,20,30,.09);
    }

    .article-list{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .article-item{
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.86);
      box-shadow: 0 12px 28px rgba(20,20,30,.06);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      display:flex; flex-direction:column; gap:10px;
    }
    .article-item:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(20,20,30,.10);
      border-color: rgba(230,58,114,.22);
    }
    .article-item .meta{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      color:rgba(20,22,38,.62);
      font-size:12.8px; font-weight:750;
    }
    .article-item .meta .dot{
      width:6px; height:6px; border-radius:50%;
      background:rgba(230,58,114,.8);
    }
    .article-item h3{
      font-size:15.5px; margin:0;
    }
    .article-item .desc{
      margin:0;
      color:rgba(20,22,38,.66);
      font-size:13.8px;
      line-height:1.65;
    }
    .article-item .link-row{
      display:flex; justify-content:space-between; align-items:center; gap:10px; margin-top:auto;
      padding-top:10px; border-top:1px dashed rgba(20,20,30,.10);
    }
    .link-row a{
      display:inline-flex; align-items:center; gap:10px;
      color:rgba(230,58,114,.98);
      font-weight:950;
    }
    .link-row a .go{
      width:28px; height:28px; border-radius:11px;
      border:1px solid rgba(230,58,114,.22);
      background:rgba(255,240,247,.88);
      display:flex; align-items:center; justify-content:center;
      color:rgba(230,58,114,.98);
      transition: transform .2s ease;
    }
    .article-item:hover .link-row a .go{transform: translateX(2px)}
    .article-item .mini-tag{
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.72);
      border-radius:999px;
      padding:8px 10px;
      font-size:12.5px;
      color:rgba(20,22,38,.72);
      font-weight:850;
      white-space:nowrap;
    }

    footer{
      margin-top:8px;
      background:linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.95));
      border-top:1px solid rgba(20,20,30,.10);
    }
    .foot-wrap{
      padding:22px 0 16px;
    }
    .foot-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:flex-start;
    }
    .foot-box{
      border:1px solid rgba(20,20,30,.10);
      border-radius:var(--radius);
      background:rgba(255,255,255,.86);
      box-shadow: 0 12px 28px rgba(20,20,30,.06);
      padding:16px;
    }
    .foot-box h3{margin:0 0 10px; font-size:15.5px}
    .foot-links{
      display:flex; flex-direction:column; gap:10px;
      color:rgba(20,22,38,.70);
      font-size:13.8px;
      line-height:1.6;
      font-weight:700;
    }
    .foot-links a{
      color:rgba(230,58,114,.98);
      font-weight:950;
      display:inline-flex; align-items:center; gap:10px;
    }
    .foot-links a .arrow{
      width:26px; height:26px; border-radius:10px;
      border:1px solid rgba(230,58,114,.22);
      background:rgba(255,240,247,.88);
      display:flex; align-items:center; justify-content:center;
      color:rgba(230,58,114,.98);
    }
    .friend-row{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .friend-row a{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,30,.10);
      background:rgba(255,255,255,.74);
      font-size:12.8px;
      font-weight:850;
      color:rgba(20,22,38,.78);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .friend-row a:hover{
      transform: translateY(-2px);
      border-color: rgba(230,58,114,.24);
      background:rgba(255,240,247,.86);
      color:rgba(230,58,114,.98);
    }
    .copy{
      margin-top:14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      color:rgba(20,22,38,.62);
      font-size:12.8px;
      font-weight:750;
      padding:0 2px 10px;
    }
    .copy .left{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
    .copy .mark{
      width:10px; height:10px; border-radius:4px;
      background:linear-gradient(180deg, #ff6aa0, #e63a72);
      box-shadow:0 12px 22px rgba(230,58,114,.22);
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      h1{font-size:34px}
      .grid-3{grid-template-columns: 1fr 1fr}
      .comments-grid{grid-template-columns: 1fr 1fr}
      .faq-wrap{grid-template-columns: 1fr}
      .services-grid{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .timeline .row{grid-template-columns: 1fr}
      .timeline .left{border-right:none; border-bottom:1px dashed rgba(20,20,30,.10)}
      .article-list{grid-template-columns: 1fr}
      .foot-grid{grid-template-columns: 1fr}
      .nav-links{display:none}
      .nav-cta{display:none}
      .hamburger{display:flex}
      .mobile-panel{display:block}
      .float-cta{right:10px; bottom:10px}
      .float-card{max-width:220px}
    }
    @media (max-width: 520px){
      .grid-2{grid-template-columns: 1fr}
      .grid-3{grid-template-columns: 1fr}
      h1{font-size:30px}
      .data-grid{grid-template-columns: 1fr 1fr}
      .comments-grid{grid-template-columns: 1fr}
      .meta-item{min-width:140px}
      .float-card{max-width:196px}
      .float-card .txt span{display:none}
    }