:root{
      --bg0:#fbfaf7;
      --bg1:#f4f6fb;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#5b6473;
      --muted2:#7a8596;
      --line:rgba(17,24,39,.10);
      --line2:rgba(17,24,39,.08);
      --brand:#ff4f6d;
      --brand2:#ff7a18;
      --brand3:#6d4cff;
      --ok:#16a34a;
      --warn:#f59e0b;
      --shadow: 0 10px 30px rgba(17,24,39,.08);
      --shadow2: 0 6px 18px rgba(17,24,39,.10);
      --radius:16px;
      --radius2:22px;
      --ring: 0 0 0 4px rgba(255,79,109,.18);
      --container: 1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, "Noto Sans", "Helvetica Neue", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 12% -10%, rgba(255,79,109,.16), transparent 55%),
        radial-gradient(1000px 520px at 88% 8%, rgba(109,76,255,.14), transparent 54%),
        linear-gradient(180deg, var(--bg0), #ffffff 45%, var(--bg1));
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background: rgba(251,250,247,.72);
      border-bottom:1px solid var(--line2);
    }
    .navwrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px 0;
      gap:12px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 240px;
    }
    .brand img{
      width:38px;
      height:38px;
      border-radius:12px;
      box-shadow: 0 10px 24px rgba(255,79,109,.18);
      background:#fff;
      padding:6px;
    }
    .brandtext{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .brandtext strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .brandtext span{
      font-size:12px;
      color:var(--muted2);
    }
    .navlinks{
      display:flex;
      align-items:center;
      gap:16px;
      flex-wrap:nowrap;
      justify-content:flex-end;
    }
    .navlinks a{
      font-size:13px;
      color:var(--muted);
      padding:10px 10px;
      border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .navlinks a:hover{
      background: rgba(255,79,109,.10);
      color:#141a24;
      transform: translateY(-1px);
    }
    .navcta{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      min-width: 270px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid var(--line);
      background: #fff;
      color:#101827;
      font-weight:650;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow: var(--ring)}
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
    .btn.primary{
      border-color: rgba(255,79,109,.40);
      background: linear-gradient(135deg, rgba(255,79,109,.95), rgba(255,122,24,.92));
      color:#fff;
      box-shadow: 0 14px 34px rgba(255,79,109,.22);
    }
    .btn.primary:hover{
      box-shadow: 0 18px 44px rgba(255,79,109,.28);
    }
    .btn.ghost{
      background: rgba(255,255,255,.7);
    }
    .icon{
      width:18px; height:18px; flex:0 0 auto;
    }
    .mobileToggle{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .mobileToggle:focus{outline:none; box-shadow: var(--ring)}
    .mobileToggle:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
    .hamburger{
      width:18px; height:12px; margin:0 auto; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: #141a24;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){top:0}
    .hamburger span:nth-child(2){top:5px; opacity:1}
    .hamburger span:nth-child(3){top:10px}
    .mobileToggle[aria-expanded="true"] .hamburger span:nth-child(1){top:5px; transform: rotate(45deg)}
    .mobileToggle[aria-expanded="true"] .hamburger span:nth-child(2){opacity:0}
    .mobileToggle[aria-expanded="true"] .hamburger span:nth-child(3){top:5px; transform: rotate(-45deg)}
    .mobilePanel{
      display:none;
      padding: 10px 0 16px;
    }
    .mobilePanel .grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .mobilePanel a{
      font-size:13px;
      color:var(--muted);
      padding:12px 12px;
      border-radius:14px;
      border:1px solid var(--line2);
      background: rgba(255,255,255,.78);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .mobilePanel a:hover{
      transform: translateY(-1px);
      box-shadow: var(--shadow2);
      background: #fff;
    }

    .hero{
      padding:34px 0 10px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .heroCard{
      border-radius: var(--radius2);
      border:1px solid var(--line2);
      background:
        radial-gradient(800px 420px at 0% 0%, rgba(255,79,109,.18), transparent 55%),
        radial-gradient(600px 380px at 88% 25%, rgba(109,76,255,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.92));
      box-shadow: 0 18px 50px rgba(17,24,39,.10);
      padding:22px;
      position:relative;
      overflow:hidden;
      min-height: 360px;
    }
    .heroCard:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(220px 120px at 20% 25%, rgba(255,79,109,.22), transparent 60%),
        radial-gradient(240px 120px at 70% 40%, rgba(109,76,255,.20), transparent 60%),
        radial-gradient(240px 140px at 62% 92%, rgba(255,122,24,.18), transparent 60%);
      pointer-events:none;
      opacity:.9;
      transform: translateZ(0);
    }
    .heroInner{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:14px;
      height:100%;
    }
    .kickerRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(17,24,39,.10);
      color:#141a24;
      font-size:12px;
      font-weight:650;
    }
    .dot{
      width:9px; height:9px; border-radius:999px;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      box-shadow: 0 10px 20px rgba(255,79,109,.25);
    }
    h1{
      margin:0;
      font-size: 34px;
      line-height:1.12;
      letter-spacing: -0.4px;
    }
    .heroLead{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.7;
      max-width: 64ch;
    }
    .heroActions{
      display:flex;
      gap:12px;
      align-items:center;
      flex-wrap:wrap;
      margin-top: 6px;
    }
    .heroMeta{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:10px;
      margin-top:auto;
    }
    .miniStat{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(17,24,39,.10);
      border-radius: 16px;
      padding:12px 12px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .miniStat:hover{transform: translateY(-2px); box-shadow: var(--shadow2)}
    .miniStat strong{
      display:block;
      font-size:16px;
      letter-spacing:-.2px;
    }
    .miniStat span{
      display:block;
      font-size:12px;
      color:var(--muted2);
      margin-top:4px;
      line-height:1.3;
    }
    .heroAside{
      border-radius: var(--radius2);
      border:1px solid var(--line2);
      background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.96));
      box-shadow: 0 14px 40px rgba(17,24,39,.08);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:14px;
      min-height: 360px;
      overflow:hidden;
      position:relative;
    }
    .heroAside:after{
      content:"";
      position:absolute; right:-120px; top:-120px;
      width:260px; height:260px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,79,109,.28), transparent 60%);
      pointer-events:none;
    }
    .asideTop{
      position:relative;
      z-index:1;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .asideTop .title{
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .asideTop .title strong{
      font-size:14px;
      letter-spacing:.2px;
    }
    .asideTop .title span{
      font-size:12px;
      color:var(--muted2);
      line-height:1.4;
    }
    .badgeTech{
      flex:0 0 auto;
      border-radius: 14px;
      padding:9px 10px;
      background: rgba(255,79,109,.10);
      border:1px solid rgba(255,79,109,.22);
      color:#141a24;
      font-size:12px;
      font-weight:750;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .badgeTech svg{width:16px; height:16px}
    .capPanel{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .capList{
      margin:0; padding:0; list-style:none;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .capItem{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius: 16px;
      border:1px solid var(--line2);
      background: rgba(251,250,247,.55);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .capItem:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      background:#fff;
    }
    .capIcon{
      width:34px; height:34px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(255,79,109,.18), rgba(109,76,255,.14));
      border:1px solid rgba(17,24,39,.08);
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
    }
    .capIcon svg{width:18px; height:18px}
    .capItem strong{font-size:13px}
    .capItem p{
      margin:3px 0 0;
      font-size:12px;
      color:var(--muted2);
      line-height:1.45;
    }

    .section{
      padding:26px 0;
    }
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom: 14px;
    }
    .sectionHead h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.2px;
    }
    .sectionHead p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
      max-width: 56ch;
    }

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .5s ease, transform .5s ease;
      will-change: opacity, transform;
    }
    .reveal.is-in{
      opacity:1;
      transform: translateY(0);
    }

    .grid3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .card{
      background: rgba(255,255,255,.86);
      border:1px solid var(--line2);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
    }
    .card h3{
      margin:0;
      font-size:15px;
      letter-spacing:-.1px;
    }
    .card p{
      margin:8px 0 0;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }
    .cardTopRow{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.7);
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
    }

    .servicesGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
      align-items:stretch;
    }
    .workflow{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .stepRow{
      display:grid;
      grid-template-columns: 46px 1fr;
      gap:12px;
      align-items:flex-start;
      padding:12px 12px;
      border-radius: 16px;
      border:1px solid var(--line2);
      background: rgba(255,255,255,.72);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .stepRow:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
    }
    .stepNum{
      width:46px; height:46px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255,79,109,.16), rgba(109,76,255,.12));
      border:1px solid rgba(255,79,109,.22);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:850;
      letter-spacing:-.4px;
    }
    .stepRow strong{display:block; font-size:14px}
    .stepRow span{
      display:block;
      margin-top:4px;
      color:var(--muted2);
      font-size:12px;
      line-height:1.55;
    }

    .comparisonWrap{
      overflow:auto;
      border-radius: var(--radius2);
      border:1px solid var(--line2);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width: 860px;
      font-size:13px;
    }
    thead th{
      position:sticky;
      top:0;
      background: linear-gradient(135deg, rgba(255,79,109,.18), rgba(109,76,255,.12));
      color:#111827;
      border-bottom:1px solid var(--line2);
      padding:12px 12px;
      text-align:left;
      white-space:nowrap;
    }
    tbody td{
      padding:12px 12px;
      border-bottom:1px solid var(--line2);
      color:var(--muted);
      vertical-align:top;
      line-height:1.55;
    }
    tbody tr:hover td{
      background: rgba(255,79,109,.05);
      color:#2b3341;
    }
    .tdStrong{color:#111827; font-weight:750}
    .scoreBadge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(255,79,109,.25);
      background: rgba(255,79,109,.10);
      white-space:nowrap;
    }
    .stars{
      display:flex; gap:3px; align-items:center;
    }
    .star{
      width:16px; height:16px;
      color: #ff7a18;
      filter: drop-shadow(0 6px 12px rgba(255,122,24,.18));
    }
    .scoreBadge strong{font-size:16px}
    .scoreBadge span{color:var(--muted2); font-size:12px}

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .faqItem{
      border-radius: var(--radius);
      border:1px solid var(--line2);
      background: rgba(255,255,255,.86);
      padding:12px;
      box-shadow: 0 12px 34px rgba(17,24,39,.06);
    }
    details{
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.08);
      background: rgba(251,250,247,.55);
      padding:10px 12px;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }
    details[open]{
      background: #fff;
      border-color: rgba(255,79,109,.25);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      font-weight:800;
      font-size:13px;
      color:#111827;
      padding-right:10px;
    }
    summary::-webkit-details-marker{display:none}
    .chev{
      width:18px; height:18px;
      flex:0 0 auto;
      transform: rotate(0deg);
      transition: transform .2s ease;
      color: var(--muted);
      margin-top:2px;
    }
    details[open] .chev{transform: rotate(180deg)}
    .faqAns{
      margin-top:10px;
      color:var(--muted);
      font-size:13px;
      line-height:1.7;
      padding-left:2px;
    }

    .reviewsGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .quote{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .quoteTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .avatar{
      width:44px; height:44px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(255,79,109,.16), rgba(109,76,255,.12));
      border:1px solid rgba(17,24,39,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:#111827;
      letter-spacing:-.2px;
      flex:0 0 auto;
    }
    .quoteName{
      display:flex;
      flex-direction:column;
      gap:4px;
      line-height:1.2;
    }
    .quoteName strong{font-size:13px}
    .quoteName span{font-size:12px; color:var(--muted2)}
    .reviewText{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.75;
    }
    .tagRow{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:2px;
    }
    .tag{
      font-size:12px;
      color:#2b3341;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.68);
      padding:7px 10px;
      border-radius:999px;
    }

    .splitGrid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:12px;
      align-items:stretch;
    }
    .formCard{
      padding:18px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.88);
      border:1px solid var(--line2);
      box-shadow: 0 14px 40px rgba(17,24,39,.07);
      overflow:hidden;
      position:relative;
    }
    .formCard:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(500px 220px at 18% 10%, rgba(255,79,109,.16), transparent 60%),
        radial-gradient(520px 240px at 92% 20%, rgba(109,76,255,.14), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .formInner{position:relative; z-index:1}
    .formTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .formTop h2{margin:0; font-size:18px}
    .formTop p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.6}
    form{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:12px;
    }
    .field{display:flex; flex-direction:column; gap:7px}
    label{
      font-size:12px;
      color:var(--muted2);
      font-weight:700;
    }
    input, select, textarea{
      border:1px solid rgba(17,24,39,.12);
      background: rgba(255,255,255,.78);
      border-radius:14px;
      padding:11px 12px;
      font-size:13px;
      color:#111827;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
      width:100%;
    }
    textarea{min-height:108px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,79,109,.40);
      box-shadow: var(--ring);
      background:#fff;
    }
    .formActions{
      grid-column: 1 / -1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:2px;
    }
    .hint{
      color:var(--muted2);
      font-size:12px;
      line-height:1.5;
      max-width: 50ch;
    }
    .agreeRow{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--muted2);
      font-size:12px;
    }
    .agreeRow input{width:18px; height:18px; margin:0}
    .smallLink{
      color:#0f172a;
      font-weight:750;
      text-decoration:underline;
      text-decoration-color: rgba(255,79,109,.45);
    }
    .sideNetwork{
      padding:16px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.78);
      border:1px solid var(--line2);
      box-shadow: 0 14px 40px rgba(17,24,39,.07);
      display:flex;
      flex-direction:column;
      gap:12px;
      overflow:hidden;
      position:relative;
    }
    .sideNetwork:before{
      content:"";
      position:absolute; left:-140px; bottom:-150px;
      width:320px; height:320px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,122,24,.18), transparent 58%);
      pointer-events:none;
    }
    .networkInner{position:relative; z-index:1}
    .networkInner h2{margin:0; font-size:18px}
    .networkInner p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.6}
    .mapGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:6px;
    }
    .mapChip{
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(251,250,247,.55);
      padding:12px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .mapChip:hover{transform: translateY(-2px); box-shadow: var(--shadow2); background:#fff}
    .mapChip strong{display:block; font-size:13px}
    .mapChip span{display:block; margin-top:5px; font-size:12px; color:var(--muted2); line-height:1.5}

    .timeline{
      display:flex; flex-direction:column; gap:10px;
      margin-top:10px;
    }
    .timelineItem{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius: 16px;
      border:1px solid var(--line2);
      background: rgba(255,255,255,.72);
    }
    .timeDot{
      width:12px; height:12px;
      border-radius:999px;
      background: linear-gradient(135deg, var(--brand), var(--brand3));
      box-shadow: 0 12px 26px rgba(109,76,255,.20);
      margin-top:6px;
      flex:0 0 auto;
    }
    .timelineItem strong{display:block; font-size:13px}
    .timelineItem span{display:block; margin-top:5px; color:var(--muted2); font-size:12px; line-height:1.6}

    .tagCloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding:14px;
      border-radius: var(--radius2);
      border:1px solid var(--line2);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(17,24,39,.07);
    }
    .tagCloud button{
      border:1px solid rgba(17,24,39,.10);
      background: rgba(251,250,247,.6);
      color:#111827;
      font-weight:750;
      font-size:12px;
      padding:9px 11px;
      border-radius:999px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    }
    .tagCloud button:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      background:#fff;
      border-color: rgba(255,79,109,.28);
    }

    .articleGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:12px;
      align-items:start;
    }
    .articleList{
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .articleItem{
      display:flex;
      gap:12px;
      padding:14px 14px;
      border-radius: var(--radius);
      border:1px solid var(--line2);
      background: rgba(255,255,255,.86);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .articleItem:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow2);
      background:#fff;
    }
    .articleNo{
      width:44px; height:44px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255,79,109,.16), rgba(109,76,255,.12));
      border:1px solid rgba(17,24,39,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:#111827;
      flex:0 0 auto;
    }
    .articleItem strong{display:block; font-size:13px; line-height:1.5}
    .articleItem span{display:block; margin-top:6px; color:var(--muted2); font-size:12px; line-height:1.5}
    .linkRow{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-top:10px;
    }
    .linkRow a{
      border-radius:14px;
      border:1px solid rgba(17,24,39,.10);
      padding:10px 12px;
      background: rgba(251,250,247,.55);
      color:#111827;
      font-weight:800;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      white-space:nowrap;
    }
    .linkRow a:hover{transform: translateY(-1px); box-shadow: var(--shadow2); background:#fff}
    .rightPanel{
      border-radius: var(--radius2);
      border:1px solid var(--line2);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(17,24,39,.07);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .rightPanel:before{
      content:"";
      position:absolute; right:-160px; top:-160px;
      width:320px; height:320px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(109,76,255,.20), transparent 58%);
      pointer-events:none;
    }
    .rightPanel .inner{position:relative; z-index:1}
    .rightPanel h2{margin:0; font-size:18px}
    .rightPanel p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.6}
    .networkList{
      margin:12px 0 0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:10px;
    }
    .networkList li{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px 12px;
      border-radius: 16px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(251,250,247,.55);
    }
    .networkList strong{display:block; font-size:13px}
    .networkList span{display:block; margin-top:4px; color:var(--muted2); font-size:12px; line-height:1.5}
    .netScore{
      flex:0 0 auto;
      font-weight:900;
      padding:8px 10px;
      border-radius: 14px;
      border:1px solid rgba(255,79,109,.22);
      background: rgba(255,79,109,.10);
      color:#111827;
      white-space:nowrap;
      font-size:12px;
      height:fit-content;
      align-self:flex-start;
    }

    .casesGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .caseCard{
      border-radius: var(--radius2);
      border:1px solid var(--line2);
      background: rgba(255,255,255,.84);
      box-shadow: 0 14px 40px rgba(17,24,39,.06);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .caseCard:hover{transform: translateY(-2px); box-shadow: var(--shadow2); background:#fff}
    .caseTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .caseType{
      display:inline-flex; align-items:center; gap:8px;
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(251,250,247,.55);
      font-size:12px;
      font-weight:850;
    }
    .caseType i{
      width:10px; height:10px; border-radius:999px; background: linear-gradient(135deg, var(--brand), var(--brand2));
      display:inline-block;
    }
    .caseCard h3{margin:10px 0 0; font-size:15px; letter-spacing:-.1px}
    .caseCard p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.65}
    .caseMetrics{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .metricPill{
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.75);
      color:#111827;
      font-weight:850;
      font-size:12px;
    }

    .pricingGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
      align-items:stretch;
    }
    .priceCard{
      border-radius: var(--radius2);
      border:1px solid var(--line2);
      background: rgba(255,255,255,.86);
      box-shadow: 0 14px 40px rgba(17,24,39,.06);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .priceCard:hover{transform: translateY(-2px); box-shadow: var(--shadow2); background:#fff}
    .priceCard:before{
      content:"";
      position:absolute;
      inset:auto -120px -160px auto;
      width:260px; height:260px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,79,109,.14), transparent 58%);
      pointer-events:none;
      opacity:.95;
    }
    .priceInner{position:relative; z-index:1}
    .priceTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .priceTop strong{font-size:14px}
    .priceTag{
      border-radius:14px;
      padding:8px 10px;
      border:1px solid rgba(255,79,109,.22);
      background: rgba(255,79,109,.10);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }
    .priceVal{
      font-size:28px;
      font-weight:950;
      letter-spacing:-.8px;
      margin-top:2px;
    }
    .priceVal span{
      font-size:12px;
      color:var(--muted2);
      font-weight:800;
      letter-spacing:0;
      margin-left:6px;
    }
    .priceCard ul{
      margin:0; padding:0; list-style:none;
      display:flex; flex-direction:column; gap:8px;
    }
    .priceCard li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .check{
      width:18px; height:18px;
      border-radius: 8px;
      background: rgba(22,163,74,.12);
      border:1px solid rgba(22,163,74,.24);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .check svg{width:12px; height:12px; color: var(--ok)}
    .priceActions{
      margin-top:auto;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }

    .footer{
      padding:22px 0 28px;
      margin-top: 6px;
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.55));
    }
    .footerCard{
      border-radius: var(--radius2);
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.76);
      box-shadow: 0 14px 40px rgba(17,24,39,.07);
      padding:18px;
    }
    .footerTop{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
      flex-wrap:wrap;
    }
    .footerBrand{
      display:flex; gap:12px; align-items:flex-start;
      min-width: 280px;
    }
    .footerBrand img{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
      padding:7px;
    }
    .footerBrand strong{display:block; font-size:14px}
    .footerBrand span{display:block; margin-top:6px; color:var(--muted); font-size:13px; line-height:1.6; max-width: 52ch}
    .footerLinks{
      display:flex; flex-direction:column; gap:10px;
      min-width: 280px;
    }
    .footerLinks strong{font-size:13px}
    .footerLinks .linkList{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .footerLinks .linkList a{
      font-size:13px;
      font-weight:800;
      color:#111827;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(251,250,247,.6);
      padding:10px 12px;
      border-radius:14px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      white-space:nowrap;
    }
    .footerLinks .linkList a:hover{transform: translateY(-1px); box-shadow: var(--shadow2); background:#fff}
    .footerBottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-top:1px solid var(--line2);
      margin-top:14px;
      padding-top:14px;
      flex-wrap:wrap;
    }
    .copyright{
      color:var(--muted2);
      font-size:12px;
      line-height:1.5;
    }
    .backTop{
      border-radius:14px;
      padding:10px 12px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(251,250,247,.6);
      font-weight:900;
      font-size:13px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      white-space:nowrap;
    }
    .backTop:hover{transform: translateY(-1px); box-shadow: var(--shadow2); background:#fff}

    .floatKefu{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .floatBtn{
      display:flex; align-items:center; gap:10px;
      border-radius: 18px;
      border:1px solid rgba(255,79,109,.30);
      background: linear-gradient(135deg, rgba(255,79,109,.92), rgba(109,76,255,.88));
      color:#fff;
      padding:12px 14px;
      font-weight:900;
      font-size:13px;
      box-shadow: 0 18px 46px rgba(255,79,109,.25);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
      user-select:none;
    }
    .floatBtn:hover{transform: translateY(-2px); box-shadow: 0 22px 56px rgba(255,79,109,.30)}
    .floatBtn svg{width:18px; height:18px}
    .qrPanel{
      display:none;
      width: 210px;
      border-radius: 20px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(255,255,255,.9);
      box-shadow: 0 24px 70px rgba(17,24,39,.16);
      overflow:hidden;
      transform-origin: 100% 100%;
      animation: pop .18s ease-out;
    }
    @keyframes pop{
      from{transform: scale(.96); opacity:.6}
      to{transform: scale(1); opacity:1}
    }
    .qrHead{
      padding:12px 12px 10px;
      border-bottom:1px solid var(--line2);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .qrHead strong{font-size:13px}
    .qrHead button{
      width:34px; height:34px;
      border-radius: 14px;
      border:1px solid rgba(17,24,39,.10);
      background: rgba(251,250,247,.6);
      cursor:pointer;
      transition: transform .15s ease, background .15s ease;
      display:flex; align-items:center; justify-content:center;
    }
    .qrHead button:hover{transform: translateY(-1px); background:#fff}
    .qrBody{padding:12px}
    .qrBody img{
      width:100%;
      height:auto;
      border-radius:16px;
      display:block;
      border:1px solid rgba(17,24,39,.10);
      background:#fff;
    }
    .qrFooter{
      padding:10px 12px 12px;
      color:var(--muted);
      font-size:12px;
      line-height:1.5;
      border-top:1px solid var(--line2);
    }

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .heroAside{min-height: unset}
      .heroCard{min-height: unset}
      .grid3{grid-template-columns: 1fr}
      .servicesGrid{grid-template-columns: 1fr}
      .faqGrid{grid-template-columns: 1fr}
      .reviewsGrid{grid-template-columns: 1fr}
      .splitGrid{grid-template-columns: 1fr}
      .casesGrid{grid-template-columns: 1fr}
      .pricingGrid{grid-template-columns: 1fr}
      .articleGrid{grid-template-columns: 1fr}
      .navlinks{display:none}
      .navcta{min-width: unset}
      .mobileToggle{display:inline-flex; align-items:center; justify-content:center}
      .mobilePanel{display:block}
      .mobilePanel[hidden]{display:none}
      .mobilePanel{padding-left:0; padding-right:0}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      details, summary, .btn, .miniStat, .caseCard, .priceCard, .capItem, .articleItem, .mapChip, .backTop{
        transition:none !important;
      }
    }