:root{
      --bg0:#fff7f9;
      --bg1:#ffffff;
      --text:#1f2328;
      --muted:#5b616a;
      --subtle:#7b828c;
      --line:rgba(17,24,39,.10);
      --card:#ffffff;
      --shadow: 0 18px 45px rgba(233,46,106,.10);
      --shadow2: 0 10px 25px rgba(17,24,39,.08);
      --accent:#e51f6f;
      --accent2:#ff4d8f;
      --accent3:#b80f4c;
      --soft:#ffe4ee;
      --soft2:#ffd0e1;
      --btnText:#ffffff;
      --focus: rgba(229,31,111,.35);
      --radius: 18px;
      --radius2: 14px;
      --container: 1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Helvetica,Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 25% -10%, rgba(229,31,111,.14), transparent 60%),
        radial-gradient(900px 600px at 90% 5%, rgba(255,77,143,.10), transparent 55%),
        linear-gradient(180deg, #fff7f9 0%, #ffffff 40%, #fffdfd 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      padding:0 18px;
      margin:0 auto;
    }

    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(1.2) blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom:1px solid rgba(17,24,39,.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:42px; height:42px; object-fit:contain;
      filter:saturate(1.05) contrast(1.02);
    }
    .brand .brand-text{
      display:flex; flex-direction:column; line-height:1.05;
    }
    .brand .name{
      font-weight:800; letter-spacing:.2px;
      font-size:15.5px;
    }
    .brand .tag{
      color:var(--muted);
      font-size:12.2px;
      margin-top:4px;
    }

    .nav-right{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      flex:1;
      min-width: 0;
    }
    nav{
      display:flex;
      align-items:center;
      gap:6px;
      flex-wrap:nowrap;
      overflow:hidden;
    }
    .navlink{
      display:inline-flex;
      align-items:center;
      padding:10px 10px;
      border-radius:12px;
      color:var(--muted);
      font-size:13px;
      letter-spacing:.1px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navlink:hover{
      background: rgba(229,31,111,.08);
      color:var(--accent3);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
      margin-left:6px;
    }
    .btn{
      border:1px solid rgba(229,31,111,.28);
      background: linear-gradient(180deg, #ff4d8f 0%, #e51f6f 100%);
      color:var(--btnText);
      padding:11px 14px;
      border-radius:14px;
      font-weight:750;
      font-size:13.5px;
      letter-spacing:.2px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      box-shadow: 0 10px 25px rgba(229,31,111,.18);
      transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 35px rgba(229,31,111,.22);
      filter:saturate(1.02);
    }
    .btn:active{transform: translateY(0px)}
    .btn:focus{outline:none; box-shadow: 0 0 0 4px var(--focus), 0 14px 35px rgba(229,31,111,.22)}
    .btn.secondary{
      background:#fff;
      color:var(--accent3);
      border:1px solid rgba(17,24,39,.12);
      box-shadow:none;
    }
    .btn.secondary:hover{
      background: rgba(255,77,143,.08);
      box-shadow: 0 10px 20px rgba(17,24,39,.08);
    }
    .btn .dot{
      width:10px; height:10px; border-radius:999px;
      background: rgba(255,255,255,.95);
      box-shadow: 0 0 0 4px rgba(255,255,255,.18);
    }
    .mobile-toggle{
      display:none;
      width:42px; height:42px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.12);
      background:#fff;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .2s ease;
    }
    .mobile-toggle:hover{transform: translateY(-1px); box-shadow: 0 10px 20px rgba(17,24,39,.08)}
    .hamburger{
      width:18px; height:14px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: rgba(229,31,111,.95);
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){top:2px}
    .hamburger span:nth-child(2){top:6px}
    .hamburger span:nth-child(3){top:10px}
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1){top:6px; transform: rotate(45deg)}
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2){opacity:0}
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3){top:6px; transform: rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:12px 0 16px;
    }
    .mobile-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    .mobile-grid a{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      border-radius:14px;
      padding:12px 12px;
      color:var(--muted);
      font-size:13px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .mobile-grid a:hover{
      transform: translateY(-1px);
      background: rgba(255,77,143,.08);
      border-color: rgba(229,31,111,.22);
      color:var(--accent3);
    }
    .chev{
      width:22px; height:22px; border-radius:9px;
      background: rgba(229,31,111,.10);
      display:flex; align-items:center; justify-content:center;
      color:var(--accent3);
      flex:0 0 auto;
    }

    .hero{
      position:relative;
      padding:26px 0 10px;
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-card{
      border:1px solid rgba(229,31,111,.16);
      background:
        radial-gradient(1200px 500px at 0% 0%, rgba(255,77,143,.15), transparent 55%),
        radial-gradient(700px 420px at 70% 10%, rgba(229,31,111,.10), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
      border-radius:24px;
      padding:22px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(600px 220px at 20% 0%, rgba(229,31,111,.18), transparent 60%),
        radial-gradient(520px 260px at 88% 25%, rgba(255,77,143,.12), transparent 58%);
      pointer-events:none;
    }
    .hero-inner{position:relative}
    .kicker{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      color:var(--muted);
      font-size:13px;
      margin-bottom:12px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(229,31,111,.18);
      background: rgba(255,255,255,.65);
      color:var(--accent3);
      font-weight:740;
      letter-spacing:.2px;
    }
    .pill i{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(180deg, #ff6aa3, #e51f6f);
      box-shadow: 0 0 0 4px rgba(229,31,111,.12);
      display:inline-block;
    }
    h1{
      margin:0;
      font-size:36px;
      letter-spacing:-.6px;
      line-height:1.1;
      font-weight:900;
    }
    .hero-sub{
      margin-top:12px;
      color:var(--muted);
      font-size:14.8px;
      line-height:1.7;
      max-width: 62ch;
    }
    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:16px;
      align-items:center;
    }
    .hero-actions .mini{
      display:flex; gap:10px; align-items:center;
      color:var(--muted);
      font-size:12.8px;
      padding:10px 12px;
      border-radius:14px;
      border:1px dashed rgba(17,24,39,.18);
      background: rgba(255,255,255,.55);
    }
    .hero-actions .mini b{color:var(--text)}
    .stat-row{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:18px;
    }
    .stat{
      background: rgba(255,255,255,.68);
      border:1px solid rgba(17,24,39,.10);
      border-radius:16px;
      padding:12px 12px;
      position:relative;
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .stat:hover{
      transform: translateY(-2px);
      border-color: rgba(229,31,111,.20);
      box-shadow: 0 14px 30px rgba(229,31,111,.12);
    }
    .stat .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .stat .num{
      font-weight:950;
      font-size:18px;
      letter-spacing:-.2px;
    }
    .stat .label{
      margin-top:8px;
      font-size:12.8px;
      color:var(--muted);
      line-height:1.4;
    }
    .spark{
      width:36px; height:36px; border-radius:14px;
      background: linear-gradient(180deg, rgba(255,77,143,.18), rgba(229,31,111,.06));
      border:1px solid rgba(229,31,111,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .spark svg{width:18px; height:18px}
    .side-card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      border-radius:24px;
      padding:18px;
      position:relative;
      overflow:hidden;
      box-shadow: var(--shadow2);
    }
    .side-card:before{
      content:"";
      position:absolute;
      right:-80px; top:-80px;
      width:180px; height:180px;
      background: radial-gradient(circle at center, rgba(229,31,111,.22), transparent 65%);
      pointer-events:none;
    }
    .side-inner{position:relative}
    .side-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .side-title h2{
      margin:0;
      font-size:16px;
      letter-spacing:-.2px;
      font-weight:850;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(229,31,111,.20);
      background: rgba(255,77,143,.10);
      color:var(--accent3);
      font-weight:820;
      font-size:12px;
      white-space:nowrap;
    }
    .badge span{
      width:10px; height:10px;
      border-radius:999px;
      background: rgba(229,31,111,.95);
      display:inline-block;
      box-shadow: 0 0 0 4px rgba(229,31,111,.14);
    }
    .ability-list{
      list-style:none; padding:0; margin:0;
      display:grid;
      gap:10px;
    }
    .ability-item{
      display:flex; gap:10px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
      cursor: default;
    }
    .ability-item:hover{
      transform: translateY(-2px);
      border-color: rgba(229,31,111,.22);
      background: rgba(255,255,255,.86);
    }
    .ability-icon{
      width:36px; height:36px; border-radius:14px;
      background: rgba(229,31,111,.10);
      border:1px solid rgba(229,31,111,.18);
      display:flex; align-items:center; justify-content:center;
      color: var(--accent3);
      flex:0 0 auto;
    }
    .ability-icon svg{width:18px; height:18px}
    .ability-item b{
      display:block;
      font-size:13.6px;
      letter-spacing:-.1px;
    }
    .ability-item em{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-style:normal;
      font-size:12.5px;
      line-height:1.35;
    }

    .section{
      padding:26px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:14px;
    }
    .section-title{
      margin:0;
      font-size:22px;
      letter-spacing:-.35px;
      font-weight:930;
    }
    .section-desc{
      margin:6px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width: 70ch;
    }
    .section-tools{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      padding:9px 10px;
      color:var(--muted);
      font-size:12.7px;
      white-space:nowrap;
    }
    .chip i{
      width:10px; height:10px; border-radius:999px;
      background: rgba(229,31,111,.85);
      box-shadow: 0 0 0 4px rgba(229,31,111,.12);
      display:inline-block;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .card{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      border-radius:20px;
      padding:16px;
      box-shadow: 0 10px 25px rgba(17,24,39,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(229,31,111,.22);
      box-shadow: 0 18px 40px rgba(229,31,111,.12);
      background: rgba(255,255,255,.92);
    }
    .card:before{
      content:"";
      position:absolute;
      left:-120px; top:-120px;
      width:220px; height:220px;
      background: radial-gradient(circle at center, rgba(229,31,111,.12), transparent 65%);
      pointer-events:none;
    }
    .card > *{position:relative}
    .card h3{
      margin:0;
      font-size:15.5px;
      font-weight:900;
      letter-spacing:-.2px;
    }
    .card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .card .meta{
      margin-top:12px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
      color:var(--subtle);
      font-size:12.5px;
    }
    .tag-pill{
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(229,31,111,.18);
      background: rgba(255,77,143,.08);
      color:var(--accent3);
      font-weight:820;
      letter-spacing:.15px;
      white-space:nowrap;
    }

    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .timeline{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      border-radius:24px;
      padding:16px;
      box-shadow: 0 10px 25px rgba(17,24,39,.06);
    }
    .timeline .items{
      display:grid;
      gap:12px;
      margin-top:8px;
    }
    .step{
      display:flex;
      gap:12px;
      padding:12px;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      transition: transform .2s ease, border-color .2s ease;
    }
    .step:hover{transform: translateY(-2px); border-color: rgba(229,31,111,.22)}
    .step .num{
      width:38px; height:38px;
      border-radius:16px;
      border:1px solid rgba(229,31,111,.22);
      background: rgba(255,77,143,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:var(--accent3);
      flex:0 0 auto;
    }
    .step b{
      display:block;
      font-size:14px;
      letter-spacing:-.15px;
    }
    .step span{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }

    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      overflow:hidden;
      border-radius:18px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 10px 25px rgba(17,24,39,.06);
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(17,24,39,.08);
      vertical-align:top;
      font-size:13.5px;
      line-height:1.6;
    }
    th{
      background: linear-gradient(180deg, rgba(255,77,143,.10), rgba(255,255,255,.70));
      color:var(--text);
      font-weight:900;
      text-align:left;
      white-space:nowrap;
    }
    tr:last-child td{border-bottom:none}
    td .kpi{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(229,31,111,.18);
      background: rgba(255,77,143,.08);
      color:var(--accent3);
      font-weight:900;
      white-space:nowrap;
    }
    td .muted{color:var(--muted); font-weight:650}

    .compare-wrap{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:stretch;
    }
    .rating-card{
      border:1px solid rgba(229,31,111,.18);
      background:
        radial-gradient(800px 420px at 20% 0%, rgba(255,77,143,.18), transparent 55%),
        rgba(255,255,255,.78);
      border-radius:24px;
      padding:16px;
      box-shadow: var(--shadow2);
      position:relative;
      overflow:hidden;
    }
    .rating-card:before{
      content:"";
      position:absolute;
      right:-90px; bottom:-90px;
      width:200px; height:200px;
      background: radial-gradient(circle at center, rgba(229,31,111,.26), transparent 60%);
      pointer-events:none;
    }
    .rating-inner{position:relative}
    .rating-top{
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      margin-bottom:12px;
    }
    .star{
      width:54px; height:54px;
      border-radius:22px;
      border:1px solid rgba(229,31,111,.20);
      background: rgba(255,77,143,.10);
      display:flex; align-items:center; justify-content:center;
      color: var(--accent3);
      flex:0 0 auto;
    }
    .star svg{width:24px; height:24px}
    .rating-grade{
      display:flex; flex-direction:column; gap:2px;
    }
    .rating-grade b{
      font-size:20px;
      letter-spacing:-.3px;
    }
    .rating-grade span{
      color:var(--muted);
      font-size:13px;
    }
    .bar-list{
      margin-top:6px;
      display:grid; gap:10px;
    }
    .bar{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      border-radius:16px;
      padding:12px;
    }
    .bar .row{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      font-size:13px;
      color:var(--muted);
    }
    .bar .fill{
      margin-top:10px;
      height:10px;
      border-radius:999px;
      background: rgba(17,24,39,.08);
      position:relative;
      overflow:hidden;
    }
    .bar .fill i{
      position:absolute; left:0; top:0; bottom:0;
      width: var(--w);
      background: linear-gradient(90deg, rgba(255,77,143,.95), rgba(229,31,111,.78));
      border-radius:999px;
      box-shadow: 0 10px 25px rgba(229,31,111,.22);
      transform-origin:left center;
      animation: grow .55s ease both;
    }
    @keyframes grow{
      from{transform: scaleX(.6); opacity:.7}
      to{transform: scaleX(1); opacity:1}
    }

    .cards-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }

    .gallery{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .img-card{
      border-radius:22px;
      overflow:hidden;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 10px 25px rgba(17,24,39,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
    }
    .img-card:hover{
      transform: translateY(-3px);
      border-color: rgba(229,31,111,.22);
      box-shadow: 0 18px 40px rgba(229,31,111,.12);
    }
    .img-wrap{
      padding:10px;
    }
    .img-frame{
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(17,24,39,.08);
      background: linear-gradient(180deg, rgba(255,77,143,.08), rgba(255,255,255,.75));
      position:relative;
    }
    .img-frame img{
      width:100%;
      height:auto;
      display:block;
      max-width:100%;
      object-fit:cover;
    }
    .img-caption{
      padding:12px 14px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .img-caption b{
      display:block; font-size:14.4px; letter-spacing:-.2px;
    }
    .img-caption span{
      display:block; margin-top:6px; color:var(--muted); font-size:13px; line-height:1.55;
    }
    .small-cta{
      flex:0 0 auto;
      display:flex; align-items:center; gap:8px;
      color:var(--accent3);
      font-weight:900;
      font-size:13px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(229,31,111,.18);
      background: rgba(255,77,143,.08);
      transition: transform .18s ease, background .2s ease;
      white-space:nowrap;
    }
    .small-cta:hover{transform: translateY(-1px); background: rgba(255,77,143,.12)}

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .review{
      border-radius:22px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 10px 25px rgba(17,24,39,.06);
      padding:16px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .review:before{
      content:"";
      position:absolute;
      left:-80px; top:-90px;
      width:200px; height:200px;
      background: radial-gradient(circle at center, rgba(229,31,111,.12), transparent 65%);
      pointer-events:none;
    }
    .review > *{position:relative}
    .review:hover{
      transform: translateY(-3px);
      border-color: rgba(229,31,111,.22);
      box-shadow: 0 18px 40px rgba(229,31,111,.12);
    }
    .review .top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:42px; height:42px; border-radius:18px;
      background: rgba(255,77,143,.10);
      border:1px solid rgba(229,31,111,.18);
      display:flex; align-items:center; justify-content:center;
      color: var(--accent3);
      font-weight:950;
      letter-spacing:-.2px;
      flex:0 0 auto;
    }
    .review .who b{display:block; font-size:14.4px; letter-spacing:-.2px}
    .review .who span{display:block; margin-top:4px; color:var(--muted); font-size:12.6px}
    .review .text{
      color:var(--muted);
      font-size:13.5px;
      line-height:1.75;
      margin:0;
    }

    .faq{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 25px rgba(17,24,39,.06);
      overflow:hidden;
    }
    .faq-item{
      border-bottom:1px solid rgba(17,24,39,.08);
    }
    .faq-item:last-child{border-bottom:none}
    .faq-q{
      width:100%;
      text-align:left;
      padding:14px 16px;
      background:transparent;
      border:none;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      color:var(--text);
      font-size:14.2px;
      font-weight:900;
      letter-spacing:-.15px;
    }
    .faq-q:focus{outline:none; box-shadow: inset 0 0 0 3px var(--focus)}
    .faq-q .q-left{
      display:flex; align-items:flex-start; gap:12px;
    }
    .q-dot{
      width:28px; height:28px;
      border-radius:12px;
      background: rgba(255,77,143,.10);
      border:1px solid rgba(229,31,111,.18);
      display:flex; align-items:center; justify-content:center;
      color: var(--accent3);
      flex:0 0 auto;
      margin-top:2px;
    }
    .faq-a{
      padding:0 16px 14px;
      display:none;
    }
    .faq-a p{
      margin:0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.75;
    }
    .faq-item[data-open="true"] .faq-a{display:block}
    .plus{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.70);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .faq-item[data-open="true"] .plus{
      transform: rotate(45deg);
      border-color: rgba(229,31,111,.20);
      background: rgba(255,77,143,.10);
    }

    .lists{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .list-card{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 10px 25px rgba(17,24,39,.06);
      padding:16px;
      overflow:hidden;
    }
    .list-card h3{
      margin:0;
      font-size:16px;
      font-weight:950;
      letter-spacing:-.2px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .list-card h3 span{
      font-size:12.5px;
      color:var(--muted);
      font-weight:750;
      border:1px solid rgba(17,24,39,.10);
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.68);
      white-space:nowrap;
    }
    .list{
      margin-top:12px;
      display:grid;
      gap:10px;
    }
    .list a{
      border-radius:16px;
      padding:12px 12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .list a:hover{
      transform: translateY(-2px);
      border-color: rgba(229,31,111,.22);
      background: rgba(255,255,255,.90);
    }
    .list b{
      display:block;
      font-size:13.8px;
      letter-spacing:-.15px;
      line-height:1.45;
    }
    .list em{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-style:normal;
      font-size:12.7px;
      line-height:1.45;
    }
    .list .arrow{
      flex:0 0 auto;
      width:32px; height:32px;
      border-radius:14px;
      background: rgba(255,77,143,.10);
      border:1px solid rgba(229,31,111,.18);
      display:flex; align-items:center; justify-content:center;
      color:var(--accent3);
      margin-top:2px;
    }

    form{
      margin-top:10px;
      display:grid;
      gap:12px;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:block;
      font-size:12.8px;
      color:var(--muted);
      margin-bottom:8px;
      font-weight:750;
      letter-spacing:.1px;
    }
    .field{
      background: rgba(255,255,255,.80);
      border:1px solid rgba(17,24,39,.10);
      border-radius:16px;
      padding:12px 12px;
      width:100%;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }
    .field:focus{
      border-color: rgba(229,31,111,.30);
      box-shadow: 0 0 0 4px var(--focus);
      background: rgba(255,255,255,.96);
    }
    textarea.field{min-height:110px; resize:vertical}
    .form-actions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:space-between;
    }
    .hint{
      color:var(--muted);
      font-size:12.6px;
      line-height:1.45;
      max-width: 46ch;
    }
    .toast{
      position:fixed;
      left:50%;
      transform: translateX(-50%);
      bottom:18px;
      z-index:100;
      background: rgba(20,24,28,.92);
      color:#fff;
      border-radius:16px;
      padding:12px 14px;
      font-size:13.5px;
      box-shadow: 0 18px 45px rgba(0,0,0,.25);
      opacity:0;
      pointer-events:none;
      transition: opacity .25s ease, transform .25s ease;
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(-4px);
    }

    .footer{
      padding:18px 0 26px;
      border-top:1px solid rgba(17,24,39,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,247,249,1));
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      border-radius:24px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      padding:16px;
      box-shadow: 0 10px 25px rgba(17,24,39,.06);
    }
    .foot-card h3{
      margin:0;
      font-size:15.8px;
      letter-spacing:-.2px;
      font-weight:950;
    }
    .foot-card p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.75;
    }
    .footer-links{
      display:flex; flex-direction:column; gap:10px;
      margin-top:12px;
    }
    .footer-links a{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.72);
      padding:12px 12px;
      color:var(--muted);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
      font-size:13.4px;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      border-color: rgba(229,31,111,.22);
      background: rgba(255,255,255,.94);
      color:var(--accent3);
    }
    .foot-meta{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:12px;
      color:var(--muted);
      font-size:12.8px;
      line-height:1.6;
    }
    .foot-right{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .kefu-box{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .kefu-box img{
      width:92px; height:92px;
      border-radius:22px;
      object-fit:cover;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
    }
    .kefu-text b{
      display:block;
      font-size:14.8px;
      letter-spacing:-.2px;
      font-weight:950;
    }
    .kefu-text span{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.7;
    }
    .copy{
      margin-top:14px;
      color:var(--muted);
      font-size:12.6px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .toplink{
      display:inline-flex; align-items:center; gap:8px;
      padding:9px 10px;
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.78);
      cursor:pointer;
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
      font-weight:900;
      color:var(--accent3);
    }
    .toplink:hover{transform: translateY(-2px); border-color: rgba(229,31,111,.22); background: rgba(255,77,143,.08)}
    .toplink svg{width:16px; height:16px}

    .float-kefu{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      display:flex; align-items:center; gap:10px;
      padding:12px 13px;
      border-radius:18px;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(17,24,39,.10);
      box-shadow: 0 18px 45px rgba(17,24,39,.10);
      cursor:pointer;
      transition: transform .18s ease, border-color .2s ease, background .2s ease;
      user-select:none;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(229,31,111,.22);
      background: rgba(255,255,255,.98);
    }
    .float-icon{
      width:40px; height:40px; border-radius:16px;
      background: rgba(255,77,143,.10);
      border:1px solid rgba(229,31,111,.18);
      display:flex; align-items:center; justify-content:center;
      color:var(--accent3);
      flex:0 0 auto;
    }
    .float-icon svg{width:18px; height:18px}
    .float-btn span{
      font-weight:950; letter-spacing:-.15px;
      font-size:13.6px;
      color:var(--text);
      white-space:nowrap;
    }

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

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      h1{font-size:32px}
      .stat-row{grid-template-columns:1fr 1fr 1fr}
      nav{display:none}
      .mobile-toggle{display:flex}
      .mobile-panel{display:block}
      .compare-wrap{grid-template-columns:1fr; }
      .grid-3{grid-template-columns:1fr}
      .cards-2{grid-template-columns:1fr}
      .split{grid-template-columns:1fr}
      .gallery{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .lists{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .mobile-panel{display:none}
      header[data-open="true"] .mobile-panel{display:block}
      header[data-open="true"] .mobile-toggle[aria-expanded="true"]{background: rgba(255,255,255,.98)}
    }
    @media (max-width: 420px){
      .brand{min-width: 0}
      .hero-card{padding:18px}
      .side-card{padding:14px}
      .stat-row{grid-template-columns:1fr}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .bar .fill i{animation:none}
    }