:root{
      --bg0:#fff7f7;
      --bg1:#fffdfd;
      --card:#ffffff;
      --text:#1f2430;
      --muted:#5a6376;
      --muted2:#7a8296;
      --line:rgba(32, 42, 64, .10);
      --shadow: 0 18px 50px rgba(20, 12, 20, .10);
      --shadow2: 0 10px 28px rgba(20, 12, 20, .10);
      --shadow3: 0 6px 16px rgba(20, 12, 20, .08);
      --accent:#e43d8f;
      --accent2:#ff6aa9;
      --accent3:#ffd1e5;
      --accentDeep:#b61d6d;
      --blue:#2f6bff;
      --ok:#0ea371;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:26px;
      --max:1120px;
      --pad:16px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }

    html{scroll-behavior:smooth;}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC","Noto Sans SC",sans-serif;
      background:
        radial-gradient(900px 500px at 10% -10%, rgba(228,61,143,.22), rgba(228,61,143,0) 60%),
        radial-gradient(900px 500px at 90% 0%, rgba(255,106,169,.18), rgba(255,106,169,0) 60%),
        linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 55%, #ffffff 100%);
      color:var(--text);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none;}
    img{max-width:100%; height:auto; display:block;}
    button, input, select, textarea{font-family:inherit;}

    .container{
      width:100%;
      max-width:var(--max);
      margin:0 auto;
      padding:0 var(--pad);
    }

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:16px; top:16px; width:auto; height:auto; z-index:9999;
      background:#fff; border:1px solid var(--line); padding:10px 12px; border-radius:12px;
      box-shadow:var(--shadow3);
    }

    .topbar{
      position:sticky; top:0; z-index:60;
      backdrop-filter: blur(10px);
      background: rgba(255, 247, 247, .75);
      border-bottom:1px solid rgba(32,42,64,.08);
    }
    .topbar-inner{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px; padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width:240px;
    }
    .ai-page-logo{
      width:56px; height:56px; border-radius:16px;
      background: linear-gradient(135deg, rgba(228,61,143,.18), rgba(47,107,255,.10));
      padding:6px;
      box-shadow: 0 10px 26px rgba(228,61,143,.12);
      object-fit:contain;
    }
    .brand-meta{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-name{
      font-weight:820; letter-spacing:.2px; font-size:15px;
      display:flex; gap:10px; align-items:center;
    }
    .brand-tag{
      font-size:12px; color:var(--muted); margin-top:3px;
      display:flex; gap:8px; align-items:center;
    }
    .dot{
      width:8px; height:8px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,0) 40%), linear-gradient(180deg, var(--accent2), var(--accentDeep));
      box-shadow: 0 0 0 6px rgba(228,61,143,.10);
      flex:0 0 auto;
    }

    .nav{
      display:flex; align-items:center; gap:8px;
      flex:1;
      justify-content:center;
      min-width:420px;
    }
    .nav a{
      font-size:13px; color:rgba(31,36,48,.86);
      padding:9px 10px; border-radius:12px;
      border:1px solid transparent;
      transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
      white-space:nowrap;
    }
    .nav a:hover{
      background: rgba(228,61,143,.08);
      border-color: rgba(228,61,143,.18);
      transform: translateY(-1px);
    }

    .top-actions{
      display:flex; align-items:center; gap:10px;
      justify-content:flex-end; min-width:240px;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(228,61,143,.20);
      background: rgba(228,61,143,.08);
      color:var(--accentDeep);
      font-weight:760;
      font-size:13px;
      transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      background: rgba(228,61,143,.12);
      box-shadow: 0 14px 30px rgba(228,61,143,.14);
      border-color: rgba(228,61,143,.32);
    }
    .btn:active{transform: translateY(0px) scale(.99);}
    .btn-primary{
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, #ff87c0 100%);
      border-color: rgba(228,61,143,.40);
      color:white;
      box-shadow: 0 18px 42px rgba(228,61,143,.22);
    }
    .btn-primary:hover{
      background: linear-gradient(135deg, #d93481 0%, #ff6aa9 60%, #ff8fc6 100%);
      box-shadow: 0 22px 52px rgba(228,61,143,.26);
      border-color: rgba(255,255,255,.25);
    }
    .btn-ghost{
      background: rgba(255,255,255,.65);
      border-color: rgba(32,42,64,.12);
      color:rgba(31,36,48,.92);
    }
    .btn-ghost:hover{
      background: rgba(255,255,255,.92);
      box-shadow: 0 16px 34px rgba(20,12,20,.10);
      border-color: rgba(32,42,64,.18);
      transform: translateY(-1px);
    }
    .icon{
      width:18px; height:18px; display:inline-block;
    }

    .mobile-toggle{
      display:none;
      border:1px solid rgba(32,42,64,.12);
      background: rgba(255,255,255,.7);
      border-radius:14px;
      padding:10px 12px;
      cursor:pointer;
      transition: transform .2s var(--ease), background .2s var(--ease);
      color:rgba(31,36,48,.92);
    }
    .mobile-toggle:hover{transform: translateY(-1px); background: rgba(255,255,255,.95);}
    .burger{
      width:18px; height:12px; position:relative;
    }
    .burger span{
      position:absolute; left:0; right:0; height:2px; border-radius:2px;
      background: rgba(31,36,48,.86);
      transition: transform .2s var(--ease), top .2s var(--ease), opacity .2s var(--ease);
    }
    .burger span:nth-child(1){top:0;}
    .burger span:nth-child(2){top:5px;}
    .burger span:nth-child(3){top:10px;}
    .mobile-toggle[aria-expanded="true"] .burger span:nth-child(1){top:5px; transform: rotate(45deg);}
    .mobile-toggle[aria-expanded="true"] .burger span:nth-child(2){opacity:0;}
    .mobile-toggle[aria-expanded="true"] .burger span:nth-child(3){top:5px; transform: rotate(-45deg);}

    .mobile-nav{
      display:none;
      padding-bottom:14px;
    }
    .mobile-nav .mobile-links{
      display:flex; flex-direction:column; gap:8px;
    }
    .mobile-nav a{
      padding:12px 12px; border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.72);
      border-radius:14px;
      font-size:14px;
      color:rgba(31,36,48,.92);
    }
    .mobile-nav a:active{transform: scale(.99);}

    .hero{
      padding:26px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:18px;
      align-items:stretch;
      padding:18px 0 8px;
    }

    .hero-panel{
      position:relative;
      border:1px solid rgba(228,61,143,.16);
      border-radius:var(--radius2);
      background:
        radial-gradient(900px 420px at 0% 0%, rgba(228,61,143,.18), rgba(228,61,143,0) 55%),
        radial-gradient(700px 340px at 90% 10%, rgba(47,107,255,.12), rgba(47,107,255,0) 50%),
        linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.92));
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .hero-panel::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(135deg, rgba(228,61,143,.22), rgba(255,106,169,0) 40%),
        linear-gradient(315deg, rgba(47,107,255,.18), rgba(47,107,255,0) 45%);
      opacity:.9;
      pointer-events:none;
    }
    .hero-panel > .inner{
      position:relative;
      padding:26px;
      display:flex;
      flex-direction:column;
      gap:14px;
      min-height:360px;
    }

    .pillrow{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(228,61,143,.18);
      background: rgba(228,61,143,.08);
      color: rgba(182,29,109,.98);
      font-size:12px;
      font-weight:740;
    }
    .pill.secondary{
      border-color: rgba(47,107,255,.18);
      background: rgba(47,107,255,.08);
      color: rgba(29,77,198,.98);
    }

    h1{
      margin:0;
      font-size:34px;
      line-height:1.15;
      letter-spacing:-.4px;
    }
    .hero-sub{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      max-width:58ch;
    }

    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:6px;
    }

    .trustbar{
      margin-top:auto;
      display:flex; flex-wrap:wrap; gap:12px;
      align-items:center; justify-content:flex-start;
      padding-top:8px;
    }
    .trust-item{
      display:flex; align-items:center; gap:10px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.65);
      padding:10px 12px;
      border-radius:16px;
      min-width:210px;
      flex: 1 1 210px;
    }
    .trust-ico{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 55%), rgba(228,61,143,.12);
      border:1px solid rgba(228,61,143,.18);
      color:var(--accentDeep);
      box-shadow: 0 14px 28px rgba(228,61,143,.14);
      flex:0 0 auto;
    }
    .trust-title{
      font-weight:820; font-size:13px; margin:0;
    }
    .trust-desc{
      margin:2px 0 0;
      color:var(--muted2);
      font-size:12px;
      line-height:1.4;
    }

    .hero-side{
      border-radius:var(--radius2);
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow3);
      overflow:hidden;
    }
    .hero-side .side-inner{
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      min-height:360px;
    }

    .side-title{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .side-title h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .side-title p{
      margin:4px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }

    .metrics{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .metric{
      border:1px solid rgba(32,42,64,.10);
      background:
        radial-gradient(250px 120px at 20% 0%, rgba(228,61,143,.16), rgba(228,61,143,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.62));
      border-radius:18px;
      padding:14px 12px;
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
      will-change: transform;
    }
    .metric:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(20,12,20,.10);
      border-color: rgba(228,61,143,.22);
    }
    .metric .num{
      font-weight:900;
      font-size:18px;
      letter-spacing:-.2px;
      display:flex; align-items:baseline; gap:8px;
    }
    .metric .unit{
      font-size:12px; color:var(--muted2); font-weight:800;
    }
    .metric .label{
      margin-top:6px;
      color:var(--muted);
      font-size:12.5px;
      line-height:1.5;
    }

    .side-batch{
      margin-top:auto;
      display:flex; flex-direction:column; gap:10px;
      border-radius:18px;
      border:1px dashed rgba(228,61,143,.26);
      background: rgba(228,61,143,.05);
      padding:14px;
    }
    .side-batch .row{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .side-batch .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(228,61,143,.18);
      background: rgba(255,255,255,.65);
      color: rgba(182,29,109,.98);
      font-weight:780; font-size:12px;
    }
    .side-batch .small{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      margin:0;
    }
    .side-batch .actionrow{
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .section{
      padding:34px 0;
    }
    .section-tight{padding:28px 0;}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      margin-bottom:16px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.25px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      max-width:62ch;
    }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      margin-bottom:10px;
      color: rgba(182,29,109,.98);
      font-weight:860;
      font-size:12px;
      letter-spacing:.6px;
      text-transform: uppercase;
    }
    .kicker::before{
      content:"";
      width:12px; height:12px; border-radius:4px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 10px 24px rgba(228,61,143,.25);
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .grid-4{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:12px;
    }

    .card{
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.72);
      border-radius:var(--radius);
      padding:16px;
      box-shadow: 0 10px 24px rgba(20,12,20,.06);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
      will-change: transform;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(20,12,20,.10);
      border-color: rgba(228,61,143,.18);
    }

    .card-hero{
      border-color: rgba(228,61,143,.18);
      background:
        radial-gradient(420px 160px at 0% 0%, rgba(228,61,143,.18), rgba(228,61,143,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62));
    }

    .card h3{
      margin:10px 0 6px;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.75);
      color: rgba(31,36,48,.9);
      font-weight:800;
      font-size:12px;
    }

    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.68);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .step:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 44px rgba(20,12,20,.09);
    }
    .step .n{
      width:38px; height:38px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(228,61,143,.10);
      border:1px solid rgba(228,61,143,.18);
      color: var(--accentDeep);
      font-weight:900;
      flex:0 0 auto;
      box-shadow: 0 16px 36px rgba(228,61,143,.14);
    }
    .step .t{
      font-weight:900;
      font-size:14px;
      margin:0;
    }
    .step .d{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .compare-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(32,42,64,.10);
      background:
        radial-gradient(700px 260px at 10% 0%, rgba(228,61,143,.16), rgba(228,61,143,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66));
      box-shadow: var(--shadow3);
      overflow:hidden;
    }
    .compare-head{
      padding:16px 16px 10px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      border-bottom:1px solid rgba(32,42,64,.08);
    }
    .compare-head .left h2{
      margin:0; font-size:18px; letter-spacing:-.2px;
    }
    .compare-head .left p{
      margin:6px 0 0; color:var(--muted); font-size:13.5px; line-height:1.7;
    }

    .table-scroll{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:860px;
      font-size:13px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(32,42,64,.08);
      vertical-align:top;
    }
    th{
      position:sticky; top:0;
      background: rgba(255,255,255,.92);
      z-index:1;
      text-align:left;
      color: rgba(31,36,48,.92);
      font-weight:900;
      border-bottom:1px solid rgba(32,42,64,.10);
    }
    tr:last-child td{border-bottom:none;}
    .mutedcell{color:var(--muted2);}

    .rating{
      display:flex; gap:12px; align-items:center;
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(228,61,143,.18);
      background: rgba(228,61,143,.06);
      min-width:260px;
      justify-content:flex-start;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
    }
    .star{
      width:18px; height:18px;
      background: conic-gradient(from 180deg, #ffdf8a, #ffb020, #ffdf8a);
      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 24px rgba(245,158,11,.22);
      border:1px solid rgba(255,180,32,.55);
    }
    .rating .score{
      font-weight:1000; font-size:24px; letter-spacing:-.6px;
    }
    .rating .small{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.4;
      font-weight:800;
    }

    .compare-badges{
      display:flex; gap:8px; flex-wrap:wrap;
      margin-top:8px;
    }
    .tag{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.70);
      font-weight:820;
      font-size:12px;
      color: rgba(31,36,48,.92);
    }
    .tag.hot{
      border-color: rgba(228,61,143,.18);
      background: rgba(228,61,143,.07);
      color: rgba(182,29,109,.98);
    }
    .tag.blue{
      border-color: rgba(47,107,255,.18);
      background: rgba(47,107,255,.08);
      color: rgba(29,77,198,.98);
    }
    .tag.ok{
      border-color: rgba(14,163,113,.22);
      background: rgba(14,163,113,.08);
      color: rgba(10,130,92,.98);
    }

    .timeline{
      display:grid; grid-template-columns: 1fr; gap:12px;
    }
    .timeline .item{
      display:flex; gap:14px; align-items:flex-start;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.70);
      position:relative;
    }
    .timeline .item::before{
      content:"";
      position:absolute;
      left:26px; top:14px; bottom:14px;
      width:2px;
      background: linear-gradient(180deg, rgba(228,61,143,.25), rgba(47,107,255,.15));
      opacity:.55;
    }
    .timeline .item:last-child::before{display:none;}
    .timeline .bullet{
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(228,61,143,.18);
      background: rgba(228,61,143,.08);
      color: rgba(182,29,109,.98);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000;
      z-index:1;
      flex:0 0 auto;
      box-shadow: 0 18px 40px rgba(228,61,143,.12);
    }
    .timeline .content{
      z-index:1;
      flex:1;
    }
    .timeline .content h3{
      margin:2px 0 6px;
      font-size:15px;
    }
    .timeline .content p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .accordion{
      display:flex; flex-direction:column; gap:10px;
    }
    .acc-item{
      border-radius:16px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.74);
      overflow:hidden;
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
    }
    .acc-item[aria-expanded="true"]{
      border-color: rgba(228,61,143,.20);
      box-shadow: 0 18px 44px rgba(20,12,20,.10);
      transform: translateY(-1px);
    }
    .acc-btn{
      width:100%;
      text-align:left;
      border:0;
      background: transparent;
      padding:14px 14px;
      cursor:pointer;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .acc-q{
      font-weight:950; letter-spacing:-.2px;
      font-size:14px;
      margin:0;
    }
    .acc-icon{
      width:26px; height:26px; border-radius:10px;
      border:1px solid rgba(32,42,64,.12);
      background: rgba(255,255,255,.78);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
      margin-top:2px;
    }
    .acc-item[aria-expanded="true"] .acc-icon{
      transform: rotate(45deg);
      border-color: rgba(228,61,143,.20);
      background: rgba(228,61,143,.08);
    }
    .acc-a{
      max-height:0;
      overflow:hidden;
      transition: max-height .35s var(--ease);
    }
    .acc-a .inner{
      padding:0 14px 14px 14px;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case{
      padding:14px;
    }
    .case-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .case .k{
      color: rgba(182,29,109,.98);
      font-weight:950;
      font-size:12.5px;
      margin:0;
    }
    .case .big{
      margin-top:8px;
      font-weight:980;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .case .desc{
      margin-top:6px;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }
    .case .meta{
      margin-top:12px;
      display:flex; gap:8px; flex-wrap:wrap;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .review{
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .review::after{
      content:"";
      position:absolute; right:-40px; top:-40px;
      width:120px; height:120px;
      background: radial-gradient(circle at 30% 30%, rgba(228,61,143,.35), rgba(228,61,143,0) 62%);
      pointer-events:none;
      transform: rotate(15deg);
    }
    .review .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      position:relative;
      z-index:1;
    }
    .review .who{
      display:flex; flex-direction:column; gap:4px;
    }
    .review .role{
      font-weight:980; font-size:13.5px;
    }
    .review .name{
      color:var(--muted2); font-size:12.5px; font-weight:800;
    }
    .review .starsline{
      display:flex; gap:4px; align-items:center;
      color: #f59e0b;
      font-weight:1000;
    }
    .review .starsline span{
      width:14px; height:14px; display:block;
      background: linear-gradient(180deg, #ffdf8a, #ffb020);
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      border:1px solid rgba(255,180,32,.5);
      box-shadow: 0 10px 24px rgba(245,158,11,.18);
    }
    .review .txt{
      margin-top:12px;
      position:relative;
      z-index:1;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }

    .article-list{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .article{
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .article .row{
      display:flex; gap:10px; align-items:flex-start; justify-content:space-between;
    }
    .article .title{
      font-weight:980; letter-spacing:-.2px; line-height:1.4;
      font-size:14px; margin:0;
    }
    .article .link{
      color: rgba(182,29,109,.98);
      font-weight:900;
      font-size:12.5px;
      border:1px solid rgba(228,61,143,.18);
      background: rgba(228,61,143,.07);
      padding:8px 10px;
      border-radius:999px;
      white-space:nowrap;
      transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .article .link:hover{
      transform: translateY(-1px);
      background: rgba(228,61,143,.10);
      border-color: rgba(228,61,143,.26);
    }

    .section-surface{
      border-radius:var(--radius2);
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.66);
      box-shadow: var(--shadow3);
      overflow:hidden;
    }
    .two-col{
      display:grid; grid-template-columns: 1fr 1fr; gap:0;
    }
    .two-col > div{
      padding:16px;
    }
    .two-col > div + div{
      border-left:1px solid rgba(32,42,64,.08);
      background: rgba(255,255,255,.76);
    }

    .form{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field.full{grid-column: 1 / -1;}
    label{
      font-weight:900;
      font-size:12.5px;
      color: rgba(31,36,48,.92);
    }
    input, select, textarea{
      border:1px solid rgba(32,42,64,.12);
      background: rgba(255,255,255,.86);
      border-radius:14px;
      padding:11px 12px;
      font-size:14px;
      color: rgba(31,36,48,.96);
      outline:none;
      transition: box-shadow .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
    }
    textarea{min-height:112px; resize:vertical;}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(228,61,143,.30);
      box-shadow: 0 0 0 6px rgba(228,61,143,.12);
      background: rgba(255,255,255,1);
    }

    .form-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:12px;
    }
    .form-note{
      color:var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      margin:0;
      flex:1;
      min-width:210px;
    }

    .partner-grid{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .partner{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.72);
      color: rgba(31,36,48,.9);
      font-weight:860;
      font-size:12.5px;
      white-space:nowrap;
    }
    .partner.hot{
      border-color: rgba(228,61,143,.18);
      background: rgba(228,61,143,.07);
      color: rgba(182,29,109,.98);
    }

    .service-net{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .net-top{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      flex-wrap:wrap;
      margin-bottom:10px;
    }
    .net-stats{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .net-stat{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.72);
      min-width:190px;
    }
    .net-stat .v{font-weight:1000; font-size:16px; letter-spacing:-.2px;}
    .net-stat .k{color:var(--muted); font-size:12.5px; margin-top:4px; font-weight:850; line-height:1.4;}

    .net-cards{
      display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .net-card{
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .net-card::before{
      content:"";
      position:absolute; inset:auto -40px -40px auto;
      width:140px; height:140px;
      background: radial-gradient(circle at 30% 30%, rgba(47,107,255,.20), rgba(47,107,255,0) 62%);
      transform: rotate(12deg);
      pointer-events:none;
    }

    .badgelist{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
      position:relative;
      z-index:1;
    }

    .pricebox{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:14px;
      align-items:stretch;
    }
    .pricebox .left{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(32,42,64,.10);
      background:
        radial-gradient(700px 280px at 0% 0%, rgba(228,61,143,.18), rgba(228,61,143,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66));
      box-shadow: var(--shadow3);
    }
    .pricebox .right{
      padding:16px;
      border-radius:var(--radius2);
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow3);
    }

    .mini-table{
      width:100%;
      border-collapse:collapse;
      font-size:13px;
    }
    .mini-table th, .mini-table td{
      border-bottom:1px solid rgba(32,42,64,.08);
      padding:10px 10px;
      text-align:left;
      vertical-align:top;
    }
    .mini-table th{
      background: rgba(255,255,255,.90);
      font-weight:950;
    }
    .mini-table tr:last-child td{border-bottom:none;}

    .history{
      display:flex; flex-direction:column; gap:12px;
      margin-top:10px;
    }
    .history .hitem{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border:1px solid rgba(32,42,64,.10);
      border-radius:16px;
      background: rgba(255,255,255,.72);
    }
    .history .hitem .b{
      width:36px; height:36px; border-radius:14px;
      border:1px solid rgba(47,107,255,.18);
      background: rgba(47,107,255,.08);
      color: rgba(29,77,198,.98);
      display:flex; align-items:center; justify-content:center;
      font-weight:1000; flex:0 0 auto;
      box-shadow: 0 16px 34px rgba(47,107,255,.12);
    }
    .history .hitem .c h3{
      margin:0;
      font-size:13.5px;
      font-weight:980;
    }
    .history .hitem .c p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
    }

    .labels-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .label-cloud-item{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.72);
      font-weight:860;
      font-size:12.5px;
      color: rgba(31,36,48,.9);
      transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
      cursor:pointer;
      user-select:none;
    }
    .label-cloud-item:hover{
      transform: translateY(-2px);
      border-color: rgba(228,61,143,.20);
      background: rgba(228,61,143,.07);
    }

    .gallery{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .gallery-card{
      border-radius:var(--radius2);
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.70);
      box-shadow: var(--shadow3);
      overflow:hidden;
      display:flex;
      flex-direction:column;
    }
    .gallery-img{
      padding:12px 12px 0;
    }
    .gallery-img .imgbox{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.85);
    }
    .gallery-img img{
      width:100%;
      object-fit:cover;
      height:220px;
      display:block;
    }
    .gallery-body{
      padding:14px 16px 16px;
      display:flex; flex-direction:column; gap:10px;
    }
    .gallery-body h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .gallery-body p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
    }
    .gallery-body .actions{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-top:4px;
    }

    .footer{
      padding:22px 0 30px;
      border-top:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.75);
    }
    .footer-grid{
      display:grid; grid-template-columns: 1.2fr .8fr;
      gap:16px;
      align-items:start;
    }
    .foot-card{
      border-radius:var(--radius2);
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 10px 26px rgba(20,12,20,.06);
    }
    .foot-card h3{margin:0; font-size:15px; letter-spacing:-.2px;}
    .foot-card p{margin:8px 0 0; color:var(--muted); line-height:1.75; font-size:13.5px;}
    .foot-links{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:12px;
    }
    .foot-links a{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.72);
      font-weight:860;
      font-size:12.5px;
      color: rgba(31,36,48,.9);
      transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
      display:inline-flex; align-items:center; gap:8px;
    }
    .foot-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(228,61,143,.20);
      background: rgba(228,61,143,.07);
    }
    .copyright{
      margin-top:14px;
      color: var(--muted2);
      font-size:12.5px;
      line-height:1.6;
      font-weight:780;
    }

    .float-cs{
      position:fixed;
      right:14px; bottom:16px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-item{
      border-radius:18px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 18px 44px rgba(20,12,20,.12);
      overflow:hidden;
    }
    .float-main{
      display:flex; align-items:center; gap:10px;
      padding:12px 12px;
    }
    .float-main .q{
      display:flex; flex-direction:column; gap:3px;
    }
    .float-main .q b{font-size:13.5px;}
    .float-main .q span{color:var(--muted2); font-size:12.5px; font-weight:800;}
    .float-main .qr{
      width:44px; height:44px; border-radius:16px;
      border:1px solid rgba(228,61,143,.18);
      background: rgba(228,61,143,.08);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .float-main .qr img{width:100%; height:100%; object-fit:cover;}
    .float-actions{
      padding:10px 12px;
      border-top:1px solid rgba(32,42,64,.08);
      display:flex; gap:10px;
    }
    .float-actions a{
      flex:1;
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.72);
      font-weight:900;
      font-size:12.5px;
      color: rgba(31,36,48,.92);
      transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
    }
    .float-actions a:hover{
      transform: translateY(-2px);
      border-color: rgba(228,61,143,.20);
      background: rgba(228,61,143,.07);
    }
    .float-caret{
      width:42px; height:42px;
      border-radius:18px;
      border:1px solid rgba(228,61,143,.20);
      background: linear-gradient(135deg, rgba(228,61,143,.16), rgba(255,106,169,.10));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 44px rgba(228,61,143,.18);
      cursor:pointer;
      transition: transform .2s var(--ease);
      user-select:none;
    }
    .float-caret:hover{transform: translateY(-2px);}
    .float-caret svg{opacity:.95;}

    .to-top{
      position:fixed;
      left:14px; bottom:16px;
      z-index:75;
      width:44px; height:44px;
      border-radius:18px;
      border:1px solid rgba(32,42,64,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 18px 44px rgba(20,12,20,.12);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s var(--ease), opacity .2s var(--ease);
      opacity:0;
      pointer-events:none;
    }
    .to-top.show{
      opacity:1;
      pointer-events:auto;
    }
    .to-top:active{transform: scale(.98);}

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 980px){
      .nav{display:none;}
      .mobile-toggle{display:inline-flex;}
      .mobile-nav{display:block;}
      .hero-grid{grid-template-columns: 1fr; }
      .hero-panel > .inner{min-height:auto;}
      .hero-side .side-inner{min-height:auto;}
      h1{font-size:30px;}
      .grid-3{grid-template-columns: 1fr; }
      .grid-2{grid-template-columns: 1fr; }
      .grid-4{grid-template-columns: repeat(2, minmax(0,1fr));}
      .case-grid{grid-template-columns: 1fr; }
      .reviews{grid-template-columns: 1fr; }
      .article-list{grid-template-columns: 1fr;}
      .two-col{grid-template-columns: 1fr;}
      .two-col > div + div{border-left:none; border-top:1px solid rgba(32,42,64,.08);}
      .form{grid-template-columns: 1fr;}
      .field.full{grid-column:auto;}
      .net-cards{grid-template-columns: 1fr;}
      .pricebox{grid-template-columns: 1fr;}
      .gallery{grid-template-columns: 1fr;}
      .footer-grid{grid-template-columns: 1fr;}
      .float-cs{left:auto; right:12px;}
      table{min-width:740px;}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto;}
      .reveal{transition:none;}
      .metric:hover, .card:hover, .step:hover{transform:none;}
      .btn:hover{transform:none;}
      .acc-item[aria-expanded="true"]{transform:none;}
      .float-caret:hover, .to-top.show{transform:none;}
    }