:root{
      --bg:#fff7ea;
      --bg2:#f3f6ff;
      --card:#ffffff;
      --text:#1f2430;
      --muted:#5a647a;
      --line:rgba(20,24,34,.10);
      --shadow:0 14px 40px rgba(31,36,48,.10);
      --shadow2:0 8px 24px rgba(31,36,48,.10);
      --radius:18px;

      --brand1:#ff4d6d;
      --brand2:#4c6fff;
      --brand3:#00b894;
      --brand4:#ff9f1c;

      --btn:#111827;
      --btnText:#ffffff;
      --focus:rgba(76,111,255,.30);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(1000px 420px at 15% -10%, rgba(255,77,109,.28), transparent 55%),
        radial-gradient(900px 420px at 85% 0%, rgba(76,111,255,.22), transparent 55%),
        linear-gradient(180deg, var(--bg), #ffffff 55%, var(--bg2));
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
      outline:3px solid var(--focus);
      outline-offset:2px;
      border-radius:12px;
    }

    .container{
      width:100%;
      max-width:1140px;
      margin:0 auto;
      padding:0 18px;
    }

    .skip-link{
      position:absolute; left:12px; top:10px;
      padding:10px 12px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:12px;
      box-shadow:0 10px 30px rgba(0,0,0,.08);
      transform:translateY(-140%);
      transition:transform .2s ease;
      z-index:9999;
    }
    .skip-link:focus{transform:translateY(0)}

    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,247,234,.72);
      border-bottom:1px solid rgba(20,24,34,.08);
    }

    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:12px;
    }

    .brand{
      display:flex; align-items:center; gap:12px;
      min-width:0;
    }
    .brand img{
      width:44px; height:44px; border-radius:14px;
      box-shadow:0 10px 26px rgba(255,77,109,.20);
      object-fit:cover;
      border:1px solid rgba(20,24,34,.08);
      background:#fff;
    }
    .brand .brand-text{
      display:flex; flex-direction:column; gap:2px;
      min-width:0;
    }
    .brand .brand-name{
      font-weight:860; letter-spacing:.2px;
      font-size:15px;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .brand .brand-sub{
      font-size:12px; color:var(--muted);
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }

    .nav-right{
      display:flex; align-items:center; gap:10px;
    }

    .nav-links{
      display:none;
      align-items:center;
      gap:18px;
      color:rgba(31,36,48,.92);
      font-size:13px;
      font-weight:650;
    }
    .nav-links a{
      padding:8px 10px;
      border-radius:12px;
      transition: background .15s ease, transform .15s ease;
    }
    .nav-links a:hover{
      background:rgba(255,77,109,.10);
      transform:translateY(-1px);
    }

    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:12px 14px;
      border:1px solid rgba(20,24,34,.10);
      background:#fff;
      color:var(--text);
      font-weight:800;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
      cursor:pointer;
      user-select:none;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 34px rgba(31,36,48,.14);
      border-color:rgba(76,111,255,.25);
      background:rgba(255,255,255,.95);
    }
    .btn-primary{
      background: linear-gradient(135deg, rgba(255,77,109,1), rgba(76,111,255,1));
      color:#fff;
      border-color:transparent;
      box-shadow:0 18px 44px rgba(76,111,255,.20);
    }
    .btn-primary:hover{
      box-shadow:0 22px 54px rgba(255,77,109,.22);
      background: linear-gradient(135deg, rgba(255,77,109,1), rgba(76,111,255,1));
    }
    .btn-ghost{
      background: rgba(255,255,255,.65);
    }

    .hamburger{
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.72);
      display:inline-flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .hamburger:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 34px rgba(31,36,48,.14);
      background:#fff;
    }
    .hamburger .bars{
      width:18px; height:12px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0;
      height:2px; background:rgba(31,36,48,.85);
      border-radius:2px;
      transition: transform .18s ease, top .18s ease, opacity .18s ease;
    }
    .hamburger .bars span:nth-child(1){top:0}
    .hamburger .bars span:nth-child(2){top:5px}
    .hamburger .bars span:nth-child(3){top:10px}

    .hamburger[aria-expanded="true"] .bars span:nth-child(1){top:5px; transform:rotate(45deg)}
    .hamburger[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .bars span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobile-drawer{
      display:block;
      position:fixed; inset:0;
      z-index:60;
      pointer-events:none;
    }
    .mobile-drawer .backdrop{
      position:absolute; inset:0;
      background:rgba(17,24,39,.45);
      opacity:0;
      transition: opacity .2s ease;
    }
    .mobile-drawer .panel{
      position:absolute; top:0; right:0;
      width:min(420px, 92vw);
      height:100%;
      background:rgba(255,255,255,.92);
      backdrop-filter: blur(12px);
      border-left:1px solid rgba(20,24,34,.10);
      transform:translateX(102%);
      transition: transform .22s ease;
      padding:16px;
      display:flex; flex-direction:column;
      gap:14px;
    }
    .mobile-drawer.open{pointer-events:auto}
    .mobile-drawer.open .backdrop{opacity:1}
    .mobile-drawer.open .panel{transform:translateX(0)}

    .drawer-top{
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      padding-bottom:8px;
      border-bottom:1px solid rgba(20,24,34,.08);
    }
    .drawer-title{
      font-weight:900; letter-spacing:.2px;
    }
    .close-btn{
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(20,24,34,.10);
      background:#fff;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease;
      font-size:20px;
      line-height:1;
    }
    .close-btn:hover{transform:translateY(-1px); box-shadow:0 14px 34px rgba(31,36,48,.14)}
    .drawer-links{
      display:flex; flex-direction:column; gap:10px;
      padding-top:6px;
    }
    .drawer-links a{
      padding:12px 12px;
      border-radius:14px;
      background:rgba(255,255,255,.75);
      border:1px solid rgba(20,24,34,.08);
      font-weight:800; font-size:14px;
      color:rgba(31,36,48,.95);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .drawer-links a:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 34px rgba(31,36,48,.12);
      border-color:rgba(76,111,255,.25);
    }
    .drawer-foot{
      margin-top:auto;
      padding-top:12px;
      border-top:1px solid rgba(20,24,34,.08);
      color:var(--muted);
      font-size:12px;
      line-height:1.6;
    }

    main{padding-bottom:28px}

    .hero{
      padding:34px 0 18px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.25fr .75fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      border-radius:24px;
      background:
        radial-gradient(1100px 420px at 20% 0%, rgba(255,77,109,.22), transparent 55%),
        radial-gradient(900px 420px at 95% 10%, rgba(76,111,255,.20), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
      border:1px solid rgba(20,24,34,.10);
      box-shadow: var(--shadow);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .hero-left::after{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(135deg, rgba(255,77,109,.25), rgba(76,111,255,.20), rgba(0,184,148,.18));
      opacity:.22;
      filter: blur(18px);
      pointer-events:none;
    }
    .hero-left > *{position:relative; z-index:1}

    .badge-row{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:center;
      margin-bottom:10px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      font-weight:900;
      font-size:12px;
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.72);
      color:rgba(31,36,48,.95);
    }
    .dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow:0 10px 24px rgba(255,77,109,.25);
    }

    h1{
      margin:10px 0 10px;
      font-size:30px;
      line-height:1.22;
      letter-spacing:.2px;
    }
    .lead{
      margin:0 0 16px;
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
      max-width:62ch;
    }
    .hero-actions{
      display:flex; flex-wrap:wrap; gap:12px;
      align-items:center;
      margin-bottom:14px;
    }
    .hero-mini{
      display:flex; flex-wrap:wrap; gap:10px;
      align-items:stretch;
      margin-top:14px;
    }
    .mini-card{
      flex:1;
      min-width:180px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.68);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .mini-card:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 40px rgba(31,36,48,.14);
      border-color:rgba(76,111,255,.25);
    }
    .mini-title{
      font-weight:950;
      font-size:13px;
      display:flex; align-items:center; gap:8px;
      margin-bottom:6px;
    }
    .icon{
      width:26px; height:26px; border-radius:10px;
      display:inline-flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,24,34,.10);
      background:#fff;
    }
    .mini-text{
      color:var(--muted);
      font-size:12px; line-height:1.65;
      margin:0;
    }

    .hero-right{
      border-radius:24px;
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border:1px solid rgba(20,24,34,.10);
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .hero-right::before{
      content:"";
      position:absolute; inset:-120px -80px auto auto;
      width:240px; height:240px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,159,28,.45), transparent 58%);
      filter: blur(2px);
      pointer-events:none;
    }
    .hero-right > *{position:relative; z-index:1}

    .side-title{
      font-weight:1000;
      font-size:14px;
      margin:2px 0 8px;
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(76,111,255,.10);
      border:1px solid rgba(76,111,255,.18);
      color:rgba(25,45,130,.95);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }

    .stats{
      display:grid; grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:10px;
    }
    .stat{
      border-radius:18px;
      padding:12px 12px;
      background:rgba(255,255,255,.74);
      border:1px solid rgba(20,24,34,.10);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .stat:hover{transform:translateY(-2px); box-shadow:0 16px 40px rgba(31,36,48,.12)}
    .stat .k{
      font-weight:1100;
      font-size:20px;
      letter-spacing:.2px;
      margin-bottom:6px;
    }
    .stat .v{
      font-size:12px; color:var(--muted); line-height:1.5;
      margin:0;
    }

    .side-callout{
      margin-top:14px;
      padding:14px 14px;
      border-radius:18px;
      border:1px dashed rgba(255,77,109,.35);
      background: linear-gradient(180deg, rgba(255,77,109,.10), rgba(255,255,255,.65));
    }
    .side-callout h3{
      margin:0 0 6px;
      font-size:14px;
      letter-spacing:.2px;
    }
    .side-callout p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:12px; line-height:1.7;
    }
    .side-callout .row{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }

    .section{
      padding:18px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:14px;
      margin-bottom:12px;
    }
    .section-kicker{
      font-weight:950;
      font-size:12px;
      letter-spacing:.16em;
      text-transform:uppercase;
      color:rgba(76,111,255,.95);
    }
    .section h2{
      margin:6px 0 0;
      font-size:20px;
      letter-spacing:.2px;
    }
    .section .sub{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
      max-width:70ch;
    }

    .card{
      background:rgba(255,255,255,.78);
      border:1px solid rgba(20,24,34,.10);
      border-radius:var(--radius);
      box-shadow: 0 12px 34px rgba(31,36,48,.07);
    }

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

    .service-card{
      padding:14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .service-card::after{
      content:"";
      position:absolute;
      inset:auto -30% -60% auto;
      width:160px; height:160px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(76,111,255,.35), transparent 60%);
      opacity:.35;
      pointer-events:none;
      transform: rotate(18deg);
    }
    .service-card > *{position:relative; z-index:1}
    .service-card:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 48px rgba(31,36,48,.12);
      border-color:rgba(76,111,255,.25);
    }
    .service-top{
      display:flex; align-items:flex-start; justify-content:space-between;
      gap:10px;
      margin-bottom:10px;
    }
    .service-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,24,34,.10);
      background:#fff;
      font-size:20px;
    }
    .tag{
      font-size:12px;
      color:rgba(31,36,48,.92);
      font-weight:900;
      border-radius:999px;
      padding:8px 10px;
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.70);
      white-space:nowrap;
    }
    .service-card h3{
      margin:0 0 6px;
      font-size:15px;
      letter-spacing:.2px;
    }
    .service-card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }
    .service-list{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .service-list li{
      font-size:12px;
      color:rgba(31,36,48,.92);
      padding:8px 10px;
      border-radius:999px;
      background:rgba(76,111,255,.08);
      border:1px solid rgba(76,111,255,.16);
      font-weight:850;
    }

    .steps{
      display:grid; gap:12px;
      grid-template-columns:repeat(4, minmax(0,1fr));
    }
    .step{
      padding:14px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .step:hover{transform:translateY(-2px); box-shadow:0 18px 48px rgba(31,36,48,.12)}
    .step .n{
      width:38px; height:38px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(255,77,109,.18), rgba(76,111,255,.18));
      border:1px solid rgba(20,24,34,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      margin-bottom:10px;
    }
    .step h3{margin:0 0 6px; font-size:15px}
    .step p{margin:0; color:var(--muted); font-size:13px; line-height:1.8}

    .timeline{
      display:grid; gap:12px;
      grid-template-columns:repeat(3, minmax(0,1fr));
    }
    .time-item{
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .time-item::before{
      content:"";
      position:absolute; left:-40px; top:40px;
      width:140px; height:140px;
      border-radius:50%;
      background: radial-gradient(circle at 35% 35%, rgba(255,159,28,.35), transparent 60%);
      opacity:.35;
      pointer-events:none;
    }
    .time-item > *{position:relative; z-index:1}
    .time-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .time-item h3{margin:0; font-size:15px}
    .time-badge{
      font-size:12px; font-weight:950;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(255,159,28,.12);
      border:1px solid rgba(255,159,28,.20);
      color:rgba(132,70,0,.95);
      white-space:nowrap;
    }
    .time-item p{margin:0; color:var(--muted); font-size:13px; line-height:1.8}

    .comparison{
      overflow:auto;
      border-radius:var(--radius);
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.70);
      box-shadow: 0 12px 34px rgba(31,36,48,.07);
    }
    table{
      width:100%;
      border-collapse:collapse;
      min-width:860px;
      font-size:13px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,24,34,.08);
      vertical-align:top;
      text-align:left;
    }
    th{
      background:linear-gradient(135deg, rgba(255,77,109,.14), rgba(76,111,255,.12));
      color:rgba(31,36,48,.98);
      font-weight:1000;
    }
    tr:last-child td{border-bottom:none}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,24,34,.10);
      background:#fff;
      font-weight:900;
      white-space:nowrap;
    }
    .pill.good{
      background:rgba(0,184,148,.10);
      border-color:rgba(0,184,148,.18);
      color:rgba(0,120,96,.98);
    }
    .pill.mid{
      background:rgba(255,159,28,.10);
      border-color:rgba(255,159,28,.20);
      color:rgba(132,70,0,.98);
    }
    .pill.bad{
      background:rgba(255,77,109,.10);
      border-color:rgba(255,77,109,.20);
      color:rgba(140,20,45,.98);
    }

    .match-grid{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    .match-left{
      padding:14px;
    }
    .match-left h3{margin:0 0 6px; font-size:15px}
    .match-left p{margin:0 0 10px; color:var(--muted); font-size:13px; line-height:1.8}
    .field-grid{
      display:grid; gap:10px;
      grid-template-columns:1fr 1fr;
      margin-top:10px;
    }
    .field{
      display:flex; flex-direction:column; gap:7px;
    }
    .field label{
      font-size:12px; color:rgba(31,36,48,.88); font-weight:850;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,24,34,.12);
      background:rgba(255,255,255,.85);
      color:var(--text);
      font-size:14px;
      transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input::placeholder, textarea::placeholder{color:rgba(90,100,122,.70)}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(76,111,255,.35);
      box-shadow:0 0 0 4px rgba(76,111,255,.12);
      background:#fff;
      outline:none;
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top:12px;
      flex-wrap:wrap;
    }
    .form-note{
      color:var(--muted);
      font-size:12px;
      line-height:1.6;
      max-width:48ch;
    }

    .contact-right{
      padding:14px;
      position:relative;
      overflow:hidden;
    }
    .contact-right::before{
      content:"";
      position:absolute; inset:-120px auto auto -140px;
      width:280px; height:280px;
      border-radius:50%;
      background: radial-gradient(circle at 35% 35%, rgba(76,111,255,.28), transparent 62%);
      pointer-events:none;
    }
    .contact-right > *{position:relative; z-index:1}
    .contact-right h3{margin:0 0 6px; font-size:15px}
    .contact-list{
      list-style:none; padding:0; margin:10px 0 0;
      display:flex; flex-direction:column; gap:10px;
    }
    .contact-item{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.72);
    }
    .contact-item .k{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,24,34,.10);
      background:#fff;
      flex:0 0 auto;
      font-size:16px;
    }
    .contact-item .t{
      flex:1;
    }
    .contact-item .t b{
      display:block; font-size:13px; margin-bottom:3px;
    }
    .contact-item .t span{
      display:block; color:var(--muted); font-size:12px; line-height:1.6;
      overflow:hidden; text-overflow:ellipsis;
    }

    .kefu{
      display:flex; gap:12px; align-items:flex-start;
      margin-top:12px;
      padding:12px 12px;
      border-radius:16px;
      border:1px dashed rgba(255,77,109,.35);
      background:linear-gradient(180deg, rgba(255,77,109,.08), rgba(255,255,255,.62));
    }
    .kefu img{
      width:86px; height:86px; border-radius:18px;
      border:1px solid rgba(20,24,34,.10);
      background:#fff;
      object-fit:cover;
    }
    .kefu .kefu-text b{display:block; font-size:13px; margin-bottom:4px}
    .kefu .kefu-text span{display:block; color:var(--muted); font-size:12px; line-height:1.7}

    .reviews{
      display:grid; gap:12px;
      grid-template-columns:repeat(3, minmax(0,1fr));
    }
    .review{
      padding:14px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .review:hover{transform:translateY(-2px); box-shadow:0 18px 48px rgba(31,36,48,.12)}
    .review-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:10px;
    }
    .avatar{
      width:40px; height:40px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(255,77,109,.18), rgba(76,111,255,.18));
      border:1px solid rgba(20,24,34,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color:rgba(31,36,48,.95);
      flex:0 0 auto;
    }
    .review .who b{display:block; font-size:13px}
    .review .who span{display:block; color:var(--muted); font-size:12px; margin-top:2px}
    .stars{
      display:flex; gap:3px; align-items:center;
      color:rgba(255,159,28,.95);
      font-size:14px;
      font-weight:1000;
      white-space:nowrap;
    }
    .review p{
      margin:0;
      color:var(--muted);
      font-size:13px; line-height:1.8;
    }

    .cases{
      display:grid; gap:12px;
      grid-template-columns:repeat(3, minmax(0,1fr));
    }
    .case-card{
      padding:12px;
      display:flex; flex-direction:column; gap:10px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .case-card:hover{transform:translateY(-2px); box-shadow:0 18px 48px rgba(31,36,48,.12); border-color:rgba(76,111,255,.25)}
    .case-img{
      border-radius:16px;
      border:1px solid rgba(20,24,34,.10);
      background: linear-gradient(135deg, rgba(255,77,109,.12), rgba(76,111,255,.10));
      overflow:hidden;
    }
    .case-img img{
      width:100%;
      height:170px;
      object-fit:cover;
      display:block;
    }
    .case-body h3{margin:0 0 6px; font-size:15px}
    .case-body p{margin:0; color:var(--muted); font-size:13px; line-height:1.8}
    .case-meta{
      display:flex; flex-wrap:wrap; gap:8px; margin-top:10px;
    }

    .article-list{
      display:grid; gap:12px;
      grid-template-columns: 1.1fr .9fr;
      align-items:start;
    }
    .article-card{
      padding:14px;
    }
    .article-grid{
      display:grid; gap:10px;
      grid-template-columns:repeat(2, minmax(0,1fr));
    }
    .article-item{
      padding:12px;
      border-radius:16px;
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.72);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:6px;
    }
    .article-item:hover{transform:translateY(-2px); box-shadow:0 18px 48px rgba(31,36,48,.12); border-color:rgba(76,111,255,.25)}
    .article-item b{font-size:13px}
    .article-item span{font-size:12px; color:var(--muted); line-height:1.6}
    .article-item a{
      margin-top:auto;
      display:inline-flex; align-items:center; gap:8px;
      font-weight:950; font-size:13px;
      color:rgba(76,111,255,.98);
    }

    .side-stack{
      padding:14px;
      display:flex; flex-direction:column; gap:12px;
    }
    .stack-title{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .stack-title h3{margin:0; font-size:15px}
    .stack-title .count{
      font-weight:1000;
      font-size:12px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(0,184,148,.10);
      border:1px solid rgba(0,184,148,.18);
      color:rgba(0,120,96,.98);
      white-space:nowrap;
    }
    .filter-tags{
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .filter-tags button{
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.72);
      color:rgba(31,36,48,.95);
      border-radius:999px;
      padding:10px 12px;
      font-size:12px;
      font-weight:950;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    .filter-tags button:hover{transform:translateY(-1px); box-shadow:0 14px 34px rgba(31,36,48,.10); border-color:rgba(76,111,255,.25); background:#fff}
    .filter-tags button[aria-pressed="true"]{
      background: linear-gradient(135deg, rgba(255,77,109,.18), rgba(76,111,255,.18));
      border-color:rgba(76,111,255,.30);
    }

    .faq{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
    }
    .faq-item{
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.72);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .faq-item:hover{transform:translateY(-2px); box-shadow:0 18px 48px rgba(31,36,48,.10); border-color:rgba(76,111,255,.25)}
    .faq-q{
      width:100%;
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
      background:transparent;
      border:none;
      text-align:left;
      cursor:pointer;
      padding:4px 0;
      font-weight:950;
      font-size:14px;
      color:rgba(31,36,48,.98);
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,24,34,.10);
      background:#fff;
      display:flex; align-items:center; justify-content:center;
      font-size:16px;
      flex:0 0 auto;
      transition: transform .2s ease;
    }
    .faq-item[aria-expanded="true"] .chev{transform:rotate(180deg)}
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition: max-height .25s ease;
    }
    .faq-a .inner{
      padding-top:10px;
      color:var(--muted);
      font-size:13px;
      line-height:1.85;
    }
    .faq-item[aria-expanded="true"] .faq-a{max-height:240px}

    .logos-row{
      display:flex; gap:10px; flex-wrap:wrap;
      align-items:center;
    }
    .logo-pill{
      display:flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.70);
      font-weight:950;
      font-size:12px;
      color:rgba(31,36,48,.92);
    }
    .logo-mark{
      width:18px; height:18px; border-radius:7px;
      background: linear-gradient(135deg, rgba(255,77,109,.95), rgba(76,111,255,.95));
      box-shadow:0 10px 24px rgba(76,111,255,.18);
    }

    .price-grid{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
      align-items:stretch;
    }
    .price-card{
      padding:14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .price-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .price-card h3{margin:0; font-size:15px}
    .price-card .desc{
      margin:0; color:var(--muted); font-size:13px; line-height:1.8;
    }
    .range{
      display:grid; gap:10px;
      grid-template-columns:1fr;
      margin-top:2px;
    }
    .range-item{
      border-radius:16px;
      border:1px solid rgba(20,24,34,.10);
      background:rgba(255,255,255,.72);
      padding:12px;
    }
    .range-item b{display:block; font-size:13px; margin-bottom:6px}
    .range-item span{display:block; color:var(--muted); font-size:12px; line-height:1.7}
    .note-strip{
      margin-top:auto;
      padding:12px;
      border-radius:16px;
      border:1px dashed rgba(76,111,255,.35);
      background:rgba(76,111,255,.08);
      color:rgba(25,45,130,.95);
      font-size:12px;
      line-height:1.7;
      font-weight:900;
    }

    .footer{
      margin-top:8px;
      background: linear-gradient(180deg, rgba(17,24,39,.95), rgba(17,24,39,1));
      color:#e6eaf2;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footer-inner{
      padding:22px 0;
    }
    .footer-grid{
      display:grid; gap:14px;
      grid-template-columns: 1.2fr .8fr;
      align-items:start;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footer-brand img{
      width:48px; height:48px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.14);
      background:#fff;
      object-fit:cover;
    }
    .footer-brand b{display:block; font-size:15px; margin-bottom:6px}
    .footer-brand p{margin:0; color:rgba(230,234,242,.78); font-size:13px; line-height:1.8}
    .footer-links{
      display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
    }
    .footer-links a{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.06);
      color:#e6eaf2;
      font-weight:900;
      font-size:12px;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .footer-links a:hover{
      transform:translateY(-1px);
      background:rgba(255,255,255,.10);
      border-color:rgba(255,255,255,.24);
    }
    .footer-bottom{
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.10);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      flex-wrap:wrap;
      color:rgba(230,234,242,.70);
      font-size:12px;
    }

    .backtop{
      position:fixed;
      right:14px; bottom:14px;
      z-index:80;
      width:46px; height:46px;
      border-radius:16px;
      border:1px solid rgba(20,24,34,.12);
      background:rgba(255,255,255,.80);
      backdrop-filter: blur(10px);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      box-shadow:0 18px 44px rgba(31,36,48,.12);
      transform:translateY(140%);
      transition: transform .2s ease, opacity .2s ease;
      opacity:0;
    }
    .backtop.show{transform:translateY(0); opacity:1}
    .backtop:hover{transform:translateY(-2px); box-shadow:0 20px 52px rgba(31,36,48,.16)}
    .backtop span{
      font-size:18px; line-height:1; font-weight:1000;
      color:rgba(31,36,48,.95);
    }

    .floating-kefu{
      position:fixed;
      left:14px;
      bottom:14px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      pointer-events:none;
    }
    .float-card{
      pointer-events:auto;
      width:min(260px, 72vw);
      border-radius:20px;
      border:1px solid rgba(20,24,34,.12);
      background:rgba(255,255,255,.86);
      backdrop-filter: blur(10px);
      box-shadow:0 18px 44px rgba(31,36,48,.12);
      overflow:hidden;
      transform:translateY(16px);
      opacity:0;
      transition: transform .25s ease, opacity .25s ease;
    }
    .float-card.show{transform:translateY(0); opacity:1}
    .float-top{
      padding:12px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-bottom:1px solid rgba(20,24,34,.08);
      background: linear-gradient(135deg, rgba(255,77,109,.12), rgba(76,111,255,.10));
    }
    .float-top b{font-size:13px}
    .float-close{
      width:36px; height:36px;
      border-radius:14px;
      border:1px solid rgba(20,24,34,.10);
      background:#fff;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      font-size:16px;
    }
    .float-body{
      padding:12px;
      display:flex; gap:10px; align-items:flex-start;
    }
    .float-body img{
      width:64px; height:64px;
      border-radius:18px;
      border:1px solid rgba(20,24,34,.10);
      object-fit:cover;
      background:#fff;
    }
    .float-body .txt b{display:block; font-size:13px; margin-bottom:4px}
    .float-body .txt span{display:block; color:var(--muted); font-size:12px; line-height:1.7}
    .float-open{
      pointer-events:auto;
      width:52px; height:52px;
      border-radius:18px;
      border:1px solid rgba(20,24,34,.12);
      background: linear-gradient(135deg, rgba(255,77,109,1), rgba(76,111,255,1));
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      box-shadow:0 18px 44px rgba(76,111,255,.22);
      transition: transform .15s ease, box-shadow .15s ease;
      font-size:20px;
    }
    .float-open:hover{transform:translateY(-2px); box-shadow:0 22px 54px rgba(255,77,109,.24)}

    .anchor-pad{scroll-margin-top:86px}

    @media (min-width: 980px){
      .nav-links{display:flex}
      .hamburger{display:none}
      .mobile-drawer{display:none}
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns:1fr; }
      .grid-3{grid-template-columns:1fr 1fr}
      .steps{grid-template-columns:1fr 1fr}
      .timeline{grid-template-columns:1fr}
      .reviews{grid-template-columns:1fr}
      .cases{grid-template-columns:1fr}
      .faq{grid-template-columns:1fr}
      .match-grid{grid-template-columns:1fr}
      .article-list{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr 1fr}
      h1{font-size:26px}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .field-grid{grid-template-columns:1fr}
      table{min-width:760px}
    }

    @media (max-width: 520px){
      .grid-3{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr}
      h1{font-size:24px}
    }

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

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .fade-in, .fade-in.show{transition:none; transform:none; opacity:1}
      .backtop, .float-card{transition:none}
    }