:root{
      --bg0:#ffffff;
      --bg1:#fbfbff;
      --ink:#0f172a;
      --muted:#475569;
      --subtle:#6b7280;
      --line:rgba(15,23,42,.10);
      --card:rgba(255,255,255,.78);
      --card2:rgba(255,255,255,.92);
      --shadow:0 10px 30px rgba(2,6,23,.08);
      --shadow2:0 8px 22px rgba(2,6,23,.10);
      --radius:18px;

      --a:#7c3aed;
      --b:#06b6d4;
      --c:#22c55e;
      --d:#f97316;
      --e:#3b82f6;

      --btn:#0f172a;
      --btnText:#ffffff;
      --btn2:rgba(15,23,42,.06);
      --btn2Text:#0f172a;

      --accent1:#6d28d9;
      --accent2:#0891b2;

      --focus:0 0 0 4px rgba(99,102,241,.18);
      --container:1160px;
      --pad:20px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--ink);
      background:
        radial-gradient(900px 380px at 20% -10%, rgba(124,58,237,.10), transparent 55%),
        radial-gradient(900px 380px at 95% 0%, rgba(6,182,212,.10), transparent 55%),
        radial-gradient(900px 480px at 60% 10%, rgba(34,197,94,.08), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fbfbff 55%, #ffffff 100%);
      overflow-x:hidden;
    }

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

    .topbarWrap{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.68);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }
    .logo{
      width:44px;
      height:44px;
      border-radius:14px;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.12));
      border:1px solid rgba(15,23,42,.10);
      box-shadow:0 10px 18px rgba(2,6,23,.06);
    }
    .ai-page-logo{
      max-width:100%;
      height:auto;
      display:block;
    }
    .brandText{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brandName{
      font-weight:820;
      letter-spacing:.2px;
      font-size:15px;
    }
    .brandSub{
      color:var(--muted);
      font-size:12.5px;
      margin-top:3px;
      white-space:nowrap;
    }

    .nav{
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a{
      text-decoration:none;
      color:rgba(15,23,42,.82);
      font-size:13.5px;
      padding:10px 10px;
      border-radius:12px;
      transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    }
    .nav a:hover{
      background:rgba(99,102,241,.08);
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(2,6,23,.06);
    }

    .navActions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .btn{
      appearance:none;
      border:1px solid rgba(15,23,42,.10);
      background:var(--btn2);
      color:var(--btn2Text);
      padding:10px 14px;
      border-radius:14px;
      cursor:pointer;
      font-weight:700;
      font-size:13.5px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:10px;
      user-select:none;
      -webkit-tap-highlight-color: transparent;
    }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(2,6,23,.10);
      border-color: rgba(15,23,42,.18);
    }
    .btn:focus{outline:none; box-shadow: var(--focus)}
    .btnPrimary{
      background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(6,182,212,.92));
      border-color: rgba(124,58,237,.30);
      color:#fff;
      box-shadow: 0 14px 34px rgba(109,40,217,.18);
    }
    .btnPrimary:hover{
      box-shadow: 0 18px 44px rgba(109,40,217,.26);
      border-color: rgba(6,182,212,.35);
    }

    .iconDot{
      width:10px;height:10px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.2)), linear-gradient(135deg, var(--d), var(--a));
      box-shadow:0 10px 20px rgba(124,58,237,.18);
    }

    .hamburger{
      display:none;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.75);
      border-radius:14px;
      padding:10px 12px;
      cursor:pointer;
    }
    .hamburger:focus{outline:none; box-shadow: var(--focus)}
    .hamburgerLines{
      width:18px; height:14px; position:relative;
    }
    .hamburgerLines span{
      position:absolute; left:0; right:0;
      height:2px; background:rgba(15,23,42,.78); border-radius:10px;
      transition: transform .18s ease, opacity .18s ease, top .18s ease;
    }
    .hamburgerLines span:nth-child(1){top:1px}
    .hamburgerLines span:nth-child(2){top:6px}
    .hamburgerLines span:nth-child(3){top:11px}
    .hamburger[aria-expanded="true"] .hamburgerLines span:nth-child(1){top:6px; transform: rotate(45deg)}
    .hamburger[aria-expanded="true"] .hamburgerLines span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .hamburgerLines span:nth-child(3){top:6px; transform: rotate(-45deg)}

    .mobileMenu{
      display:none;
      padding:0 0 16px;
    }
    .mobileMenuInner{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.85);
      border-radius:18px;
      padding:10px;
      box-shadow: 0 16px 40px rgba(2,6,23,.08);
    }
    .mobileMenuGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:8px;
      padding:6px;
    }
    .mobileMenuGrid a{
      text-decoration:none;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(99,102,241,.06);
      padding:10px 10px;
      border-radius:14px;
      font-weight:700;
      font-size:13px;
      color:rgba(15,23,42,.86);
      transition: transform .18s ease, box-shadow .18s ease;
      display:flex; align-items:center; gap:10px;
    }
    .mobileMenuGrid a:hover{transform: translateY(-1px); box-shadow: 0 12px 26px rgba(2,6,23,.10)}
    .mobileMenuActions{
      display:flex; gap:10px; padding:10px 6px 6px;
      flex-wrap:wrap;
    }

    main{padding-bottom:40px}

    .hero{
      padding:34px 0 18px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:22px;
      align-items:stretch;
    }
    .heroLeft{
      border:1px solid rgba(15,23,42,.08);
      background:
        radial-gradient(1100px 380px at 10% -20%, rgba(124,58,237,.18), transparent 55%),
        radial-gradient(820px 300px at 95% 10%, rgba(6,182,212,.18), transparent 50%),
        radial-gradient(720px 320px at 70% 90%, rgba(34,197,94,.12), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.76));
      border-radius:26px;
      box-shadow: 0 18px 55px rgba(2,6,23,.10);
      padding:26px 22px;
      position:relative;
      overflow:hidden;
      min-height:360px;
    }
    .heroLeft:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        conic-gradient(from 200deg, rgba(124,58,237,.18), rgba(6,182,212,.16), rgba(34,197,94,.14), rgba(249,115,22,.14), rgba(124,58,237,.18));
      opacity:.35;
      filter: blur(22px);
      transform: translate3d(0,0,0);
      pointer-events:none;
    }
    .heroLeftInner{position:relative; z-index:1}
    .badgeRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .chip{
      display:inline-flex; align-items:center; gap:10px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:10px 12px;
      border-radius:999px;
      font-size:13px;
      color:rgba(15,23,42,.86);
      font-weight:750;
      box-shadow: 0 12px 28px rgba(2,6,23,.06);
      transition: transform .2s ease;
    }
    .chip:hover{transform: translateY(-1px)}
    .chipIcon{
      width:26px;height:26px;border-radius:10px;
      display:flex;align-items:center;justify-content:center;
      background: linear-gradient(135deg, rgba(124,58,237,.16), rgba(6,182,212,.12));
      border:1px solid rgba(15,23,42,.08);
    }
    .heroH1{
      margin:0;
      font-size:34px;
      line-height:1.18;
      letter-spacing:-.5px;
      font-weight:920;
    }
    .heroLead{
      margin:14px 0 18px;
      color:rgba(15,23,42,.76);
      font-size:15.5px;
      line-height:1.7;
      max-width:62ch;
    }
    .heroActions{
      display:flex; gap:12px; flex-wrap:wrap; align-items:center;
      margin-top:14px;
    }
    .heroMeta{
      display:flex; gap:14px; flex-wrap:wrap;
      margin-top:18px;
    }
    .metaItem{
      min-width:160px;
      padding:12px 12px;
      border-radius:16px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(15,23,42,.08);
      box-shadow: 0 12px 26px rgba(2,6,23,.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .metaItem:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(2,6,23,.10);
    }
    .metaTop{
      display:flex; align-items:center; gap:10px; margin-bottom:6px;
      font-weight:880;
      color:rgba(15,23,42,.9);
    }
    .metaIcon{
      width:28px;height:28px;border-radius:12px;
      display:flex;align-items:center;justify-content:center;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(6,182,212,.10));
    }
    .metaVal{
      font-size:13px;
      color:rgba(15,23,42,.70);
      line-height:1.5;
    }

    .heroRight{
      border:1px solid rgba(15,23,42,.08);
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
      border-radius:26px;
      box-shadow: 0 18px 55px rgba(2,6,23,.08);
      padding:18px;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      gap:14px;
      min-height:360px;
    }
    .heroRight:after{
      content:"";
      position:absolute;
      width:340px; height:340px;
      right:-180px; top:-180px;
      background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.20), rgba(6,182,212,.10), transparent 64%);
      pointer-events:none;
      filter: blur(2px);
    }
    .panelTitle{
      position:relative; z-index:1;
      display:flex; align-items:center; justify-content:space-between;
      gap:12px;
    }
    .panelTitle h2{
      margin:0;
      font-size:15px;
      letter-spacing:.2px;
      font-weight:900;
      color:rgba(15,23,42,.92);
    }
    .subtleTag{
      font-size:12.5px;
      color:rgba(15,23,42,.70);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.75);
      position:relative; z-index:1;
      white-space:nowrap;
    }

    .modelGrid{
      position:relative; z-index:1;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      margin-top:2px;
    }
    .modelCard{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius:18px;
      padding:12px;
      box-shadow: 0 12px 26px rgba(2,6,23,.05);
      transition: transform .18s ease, box-shadow .18s ease;
      min-height:92px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .modelCard:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(2,6,23,.10);
    }
    .modelTop{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .modelName{
      font-weight:900;
      font-size:13.5px;
      color:rgba(15,23,42,.88);
      letter-spacing:.2px;
    }
    .spark{
      width:30px; height:30px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(249,115,22,.16), rgba(124,58,237,.12));
      display:flex; align-items:center; justify-content:center;
      color:rgba(15,23,42,.82);
      font-weight:950;
      font-size:14px;
    }
    .modelDesc{
      color:rgba(15,23,42,.68);
      font-size:12.8px;
      line-height:1.45;
      margin-top:6px;
    }

    .heroBottom{
      position:relative; z-index:1;
      margin-top:auto;
      border-top:1px solid rgba(15,23,42,.08);
      padding-top:14px;
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .miniSteps{
      display:flex; flex-direction:column; gap:10px;
      width:100%;
    }
    .miniStep{
      display:flex; gap:10px; align-items:flex-start;
    }
    .miniNum{
      width:26px; height:26px; border-radius:12px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
      border:1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:920; font-size:13px;
      color:rgba(15,23,42,.86);
      flex:0 0 auto;
    }
    .miniText{
      font-size:13px;
      color:rgba(15,23,42,.72);
      line-height:1.55;
    }

    section{
      padding:44px 0;
    }
    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .sectionKicker{
      color:rgba(15,23,42,.62);
      font-weight:850;
      font-size:13px;
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:8px;
    }
    .kickerLine{
      width:22px; height:2px;
      background: linear-gradient(90deg, var(--a), var(--b));
      border-radius:99px;
    }
    .sectionTitle{
      margin:0;
      font-size:26px;
      letter-spacing:-.3px;
      font-weight:950;
      line-height:1.25;
    }
    .sectionDesc{
      margin:10px 0 0;
      color:rgba(15,23,42,.70);
      font-size:14.5px;
      line-height:1.8;
      max-width:68ch;
    }
    .headRight{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .card{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius:22px;
      padding:16px;
      box-shadow: 0 12px 28px rgba(2,6,23,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(2,6,23,.10);
      border-color: rgba(15,23,42,.16);
    }
    .cardTop{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      margin-bottom:10px;
    }
    .cardIcon{
      width:44px; height:44px; border-radius:18px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
      border:1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      box-shadow: 0 14px 34px rgba(109,40,217,.12);
      flex:0 0 auto;
    }
    .cardTitle{
      margin:0;
      font-size:15.5px;
      font-weight:950;
      letter-spacing:.1px;
      line-height:1.35;
    }
    .cardText{
      margin:8px 0 0;
      color:rgba(15,23,42,.70);
      font-size:14px;
      line-height:1.8;
    }
    .badgeRow2{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .pill{
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(99,102,241,.06);
      font-size:12.5px;
      font-weight:850;
      color:rgba(15,23,42,.78);
      white-space:nowrap;
    }

    .steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    .stepCard{
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.70));
      box-shadow: 0 12px 28px rgba(2,6,23,.06);
      transition: transform .18s ease, box-shadow .18s ease;
      position:relative;
      overflow:hidden;
      min-height:170px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .stepCard:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(2,6,23,.10)}
    .stepNum{
      width:46px;height:46px;border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: conic-gradient(from 220deg, rgba(124,58,237,.22), rgba(6,182,212,.18), rgba(34,197,94,.16), rgba(249,115,22,.16), rgba(124,58,237,.22));
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color:rgba(15,23,42,.86);
      box-shadow: 0 14px 34px rgba(109,40,217,.10);
    }
    .stepTitle{
      margin:2px 0 0;
      font-weight:970;
      font-size:15.5px;
      letter-spacing:.1px;
    }
    .stepText{
      margin:0;
      color:rgba(15,23,42,.70);
      font-size:13.8px;
      line-height:1.8;
    }
    .stepHint{
      margin-top:auto;
      color:rgba(15,23,42,.60);
      font-size:12.5px;
      padding-top:10px;
      border-top:1px dashed rgba(15,23,42,.14);
    }

    .comparisonWrap{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius:26px;
      box-shadow: 0 18px 55px rgba(2,6,23,.08);
      overflow:hidden;
    }
    .comparisonHead{
      padding:18px;
      border-bottom:1px solid rgba(15,23,42,.08);
      background:
        radial-gradient(900px 300px at 20% -10%, rgba(124,58,237,.14), transparent 55%),
        radial-gradient(700px 260px at 95% 20%, rgba(6,182,212,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
      display:flex;
      gap:14px;
      align-items:flex-start;
      justify-content:space-between;
      flex-wrap:wrap;
    }
    .ratingBlock{
      display:flex; gap:14px; align-items:center; flex-wrap:wrap;
    }
    .fiveStars{
      display:flex; gap:6px; align-items:center;
      font-size:14px;
      color:rgba(15,23,42,.80);
      font-weight:900;
    }
    .star{
      width:22px; height:22px;
      display:inline-flex; align-items:center; justify-content:center;
      border-radius:9px;
      background: linear-gradient(135deg, rgba(249,115,22,.20), rgba(124,58,237,.12));
      border:1px solid rgba(15,23,42,.10);
      color:rgba(15,23,42,.86);
      transform-origin:center;
      animation: popIn .35s ease both;
    }
    @keyframes popIn{from{transform: scale(.85); opacity:.6} to{transform: scale(1); opacity:1}}
    .scorePill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 12px 28px rgba(2,6,23,.06);
      font-weight:950;
      color:rgba(15,23,42,.90);
      white-space:nowrap;
    }
    .scorePill small{
      color:rgba(15,23,42,.62);
      font-weight:900;
      margin-left:6px;
    }

    .comparisonSub{
      color:rgba(15,23,42,.70);
      font-size:14px;
      line-height:1.8;
      max-width:64ch;
      margin:0;
      align-self:center;
    }

    table{
      width:100%;
      border-collapse:collapse;
      font-size:14px;
    }
    .tableWrap{
      overflow:auto;
    }
    th, td{
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
      min-width:190px;
    }
    th{
      text-align:left;
      color:rgba(15,23,42,.86);
      font-weight:950;
      background: rgba(99,102,241,.05);
    }
    td{
      color:rgba(15,23,42,.72);
      line-height:1.7;
    }
    .best{
      color:rgba(15,23,42,.90);
      font-weight:980;
      display:inline-flex; align-items:center; gap:10px;
    }
    .bestDot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, rgba(249,115,22,.9), rgba(124,58,237,.9));
      box-shadow: 0 10px 20px rgba(124,58,237,.22);
    }

    .comparisonRowEm{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:8px;
    }

    .faqGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }

    .faqItem{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius:22px;
      padding:14px 14px;
      box-shadow: 0 12px 28px rgba(2,6,23,.06);
      overflow:hidden;
    }
    .faqBtn{
      width:100%;
      text-align:left;
      background:transparent;
      border:none;
      padding:0;
      cursor:pointer;
      display:flex;
      gap:12px;
      align-items:flex-start;
      justify-content:space-between;
      -webkit-tap-highlight-color: transparent;
    }
    .faqQ{
      font-weight:950;
      font-size:14.7px;
      line-height:1.45;
      color:rgba(15,23,42,.92);
      margin:0;
    }
    .faqChevron{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(99,102,241,.06);
      display:flex; align-items:center; justify-content:center;
      transition: transform .22s ease;
      flex:0 0 auto;
      margin-top:-2px;
    }
    .faqItem[data-open="true"] .faqChevron{transform: rotate(180deg)}
    .faqA{
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
    }
    .faqItem[data-open="true"] .faqA{max-height:320px}
    .faqA p{
      margin:10px 0 0;
      color:rgba(15,23,42,.72);
      line-height:1.8;
      font-size:14px;
    }

    .testimonialGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .quote{
      margin-top:10px;
      color:rgba(15,23,42,.72);
      line-height:1.8;
      font-size:14px;
    }
    .person{
      margin-top:14px;
      display:flex;
      align-items:center;
      gap:12px;
    }
    .avatar{
      width:42px; height:42px; border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
      box-shadow: 0 14px 34px rgba(109,40,217,.10);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color:rgba(15,23,42,.86);
      flex:0 0 auto;
    }
    .personName{
      font-weight:980;
      letter-spacing:.1px;
      font-size:14px;
      margin:0;
    }
    .personRole{
      margin:2px 0 0;
      color:rgba(15,23,42,.62);
      font-size:12.8px;
      line-height:1.4;
    }

    .caseGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .caseList{
      display:grid;
      grid-template-columns: 1fr;
      gap:12px;
    }
    .caseItem{
      display:flex;
      gap:12px;
      align-items:flex-start;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius:22px;
      padding:14px;
      box-shadow: 0 12px 28px rgba(2,6,23,.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .caseItem:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(2,6,23,.10)}
    .caseMark{
      width:46px; height:46px; border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(249,115,22,.16), rgba(124,58,237,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:980; color:rgba(15,23,42,.86);
      flex:0 0 auto;
    }
    .caseBody h3{
      margin:0;
      font-size:15.4px;
      font-weight:980;
      letter-spacing:.1px;
      color:rgba(15,23,42,.92);
    }
    .caseBody p{
      margin:8px 0 0;
      color:rgba(15,23,42,.70);
      font-size:14px;
      line-height:1.8;
    }
    .caseTags{
      display:flex; gap:8px; flex-wrap:wrap;
      margin-top:10px;
    }
    .tag2{
      font-size:12.5px;
      font-weight:850;
      color:rgba(15,23,42,.76);
      padding:9px 10px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(99,102,241,.05);
      white-space:nowrap;
    }

    .articleList{
      display:grid;
      gap:12px;
    }
    .articleItem{
      display:flex;
      gap:12px;
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 28px rgba(2,6,23,.06);
      transition: transform .18s ease, box-shadow .18s ease;
      align-items:flex-start;
    }
    .articleItem:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(2,6,23,.10)}
    .articleBullet{
      width:44px;height:44px;border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(6,182,212,.14), rgba(124,58,237,.12));
      display:flex;align-items:center;justify-content:center;
      font-weight:980;color:rgba(15,23,42,.86);
      flex:0 0 auto;
    }
    .articleBody{
      min-width:0;
      width:100%;
    }
    .articleTitle{
      margin:0;
      font-weight:980;
      letter-spacing:.1px;
      font-size:14.8px;
      line-height:1.45;
    }
    .articleMeta{
      margin-top:7px;
      color:rgba(15,23,42,.62);
      font-size:12.8px;
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .articleLinkRow{
      margin-top:10px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .linkBtn{
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.84);
      font-weight:900;
      color:rgba(15,23,42,.86);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      font-size:13.5px;
    }
    .linkBtn:hover{transform: translateY(-1px); box-shadow: 0 14px 34px rgba(2,6,23,.10); border-color: rgba(15,23,42,.18)}
    .arrow{
      width:22px;height:22px;border-radius:10px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(99,102,241,.08);
      display:flex; align-items:center; justify-content:center;
    }

    .formWrap{
      border:1px solid rgba(15,23,42,.10);
      border-radius:26px;
      background:
        radial-gradient(1000px 340px at 20% 0%, rgba(124,58,237,.14), transparent 55%),
        radial-gradient(900px 320px at 98% 20%, rgba(6,182,212,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.78));
      box-shadow: 0 18px 55px rgba(2,6,23,.08);
      overflow:hidden;
    }
    .formInner{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      padding:16px;
      align-items:start;
    }
    .formSide{
      padding:10px 10px 12px;
    }
    .formSide h3{
      margin:0;
      font-size:16px;
      font-weight:980;
      letter-spacing:.1px;
    }
    .formSide p{
      margin:10px 0 0;
      color:rgba(15,23,42,.70);
      font-size:14px;
      line-height:1.8;
    }
    .benefitList{
      margin:14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .benefitList li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(15,23,42,.72);
      line-height:1.6;
      font-size:13.8px;
    }
    .check{
      width:22px;height:22px;border-radius:10px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(34,197,94,.12);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
      font-weight:980;
      color:rgba(15,23,42,.86);
    }

    form{
      padding:12px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 12px 28px rgba(2,6,23,.06);
    }
    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    .field label{
      font-size:13px;
      color:rgba(15,23,42,.76);
      font-weight:900;
    }
    input, select, textarea{
      width:100%;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.95);
      border-radius:14px;
      padding:12px 12px;
      font-size:14px;
      color:rgba(15,23,42,.92);
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease;
    }
    textarea{min-height:108px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(99,102,241,.45);
      box-shadow: var(--focus);
    }
    .full{grid-column: 1 / -1}
    .formActions{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      margin-top:12px;
    }
    .hintText{
      color:rgba(15,23,42,.62);
      font-size:12.6px;
      line-height:1.4;
    }
    .toast{
      position:fixed;
      left:50%;
      bottom:22px;
      transform: translateX(-50%);
      background: rgba(15,23,42,.92);
      color:#fff;
      padding:12px 14px;
      border-radius:16px;
      box-shadow:0 16px 40px rgba(2,6,23,.20);
      opacity:0;
      pointer-events:none;
      transition: opacity .22s ease, transform .22s ease;
      z-index:200;
      max-width:calc(100vw - 26px);
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(-6px);
    }

    .tagCloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding-top:2px;
    }
    .tagCloud a{
      text-decoration:none;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:10px 12px;
      border-radius:999px;
      font-weight:900;
      color:rgba(15,23,42,.80);
      font-size:13px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .tagCloud a:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(2,6,23,.10); border-color: rgba(15,23,42,.18)}

    .timeline{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      border-radius:26px;
      padding:16px;
      box-shadow: 0 12px 28px rgba(2,6,23,.06);
      overflow:hidden;
    }
    .timelineList{
      display:grid;
      gap:14px;
      grid-template-columns: 1fr;
      position:relative;
    }
    .tItem{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.82);
      box-shadow: 0 12px 28px rgba(2,6,23,.05);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .tItem:hover{transform: translateY(-2px); box-shadow: 0 18px 44px rgba(2,6,23,.10)}
    .tDot{
      width:44px; height:44px; border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      flex:0 0 auto;
    }
    .tBody h3{margin:0; font-size:15.4px; font-weight:980; letter-spacing:.1px}
    .tBody p{margin:8px 0 0; color:rgba(15,23,42,.70); font-size:14px; line-height:1.8}

    .footer{
      background: linear-gradient(180deg, rgba(15,23,42,.96), rgba(15,23,42,.98));
      color:#fff;
      padding:26px 0 16px;
      margin-top:10px;
    }
    .footerGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    .footerBrand{
      display:flex;
      gap:12px;
      align-items:flex-start;
    }
    .footerLogo{
      width:46px;height:46px;border-radius:18px;
      background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(6,182,212,.18));
      border:1px solid rgba(255,255,255,.16);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
    }
    .footerLogo img{max-width:100%; height:auto; display:block}
    .footerBrand h3{
      margin:0;
      font-size:16px;
      font-weight:980;
      letter-spacing:.2px;
    }
    .footerBrand p{
      margin:8px 0 0;
      color:rgba(255,255,255,.78);
      line-height:1.8;
      font-size:13.8px;
    }
    .footerLinks{
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      border-radius:22px;
      padding:14px;
    }
    .footerLinks h4{
      margin:0;
      font-size:14px;
      font-weight:980;
      letter-spacing:.1px;
    }
    .footerLinkGrid{
      margin-top:12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px 12px;
    }
    .footerLinks a{
      text-decoration:none;
      color:rgba(255,255,255,.86);
      font-weight:850;
      font-size:13.2px;
      padding:10px 10px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      display:block;
      transition: transform .18s ease, background .18s ease;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .footerLinks a:hover{transform: translateY(-2px); background: rgba(255,255,255,.10)}
    .footerBottom{
      margin-top:16px;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.14);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.70);
      font-size:12.8px;
    }
    .footerBottom a{
      color:rgba(255,255,255,.82);
      text-decoration:none;
      border-bottom:1px solid rgba(255,255,255,.24);
      padding-bottom:2px;
    }

    .floatingHelp{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:120;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .helpBtn{
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      border-radius:18px;
      box-shadow: 0 16px 40px rgba(2,6,23,.12);
      padding:10px 12px;
      cursor:pointer;
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      color:rgba(15,23,42,.90);
      transition: transform .18s ease, box-shadow .18s ease;
      -webkit-tap-highlight-color: transparent;
      width:max-content;
      max-width:calc(100vw - 28px);
    }
    .helpBtn:hover{transform: translateY(-2px); box-shadow: 0 22px 60px rgba(2,6,23,.16)}
    .helpIcon{
      width:34px;height:34px;border-radius:14px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
      border:1px solid rgba(15,23,42,.10);
      display:flex;align-items:center;justify-content:center;
      font-weight:980;
    }
    .qrPopover{
      display:none;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.95);
      border-radius:22px;
      box-shadow: 0 24px 70px rgba(2,6,23,.20);
      overflow:hidden;
      width:240px;
    }
    .qrHeader{
      padding:12px 14px;
      border-bottom:1px solid rgba(15,23,42,.10);
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .qrHeader strong{
      font-size:13.5px;
      letter-spacing:.1px;
      font-weight:980;
    }
    .qrClose{
      width:34px;height:34px;border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(99,102,241,.06);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease;
      flex:0 0 auto;
      -webkit-tap-highlight-color: transparent;
    }
    .qrClose:hover{transform: translateY(-1px)}
    .qrBody{
      padding:12px 14px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .qrImg{
      width:82px;height:82px;border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.9);
      overflow:hidden;
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .qrImg img{max-width:100%; height:auto; display:block}
    .qrText{
      color:rgba(15,23,42,.72);
      font-size:13px;
      line-height:1.65;
    }
    .qrText b{color:rgba(15,23,42,.92)}
    .qrActions{
      padding:0 14px 14px;
      display:flex; gap:10px; flex-wrap:wrap;
    }

    .toTop{
      position:fixed;
      right:18px;
      bottom:120px;
      z-index:120;
      width:44px;height:44px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 16px 40px rgba(2,6,23,.12);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, opacity .18s ease;
      opacity:0;
      pointer-events:none;
      -webkit-tap-highlight-color: transparent;
    }
    .toTop.show{
      opacity:1;
      pointer-events:auto;
    }
    .toTop:hover{transform: translateY(-2px)}

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

    @media (max-width: 980px){
      .heroGrid{grid-template-columns: 1fr; }
      .heroLeft, .heroRight{min-height:auto}
      .grid3{grid-template-columns: 1fr}
      .grid2{grid-template-columns: 1fr}
      .steps{grid-template-columns: 1fr 1fr}
      .testimonialGrid{grid-template-columns: 1fr}
      .caseGrid{grid-template-columns: 1fr}
      .faqGrid{grid-template-columns: 1fr}
      .formInner{grid-template-columns: 1fr}
      .footerGrid{grid-template-columns: 1fr}
      .nav{display:none}
      .hamburger{display:inline-flex}
      .mobileMenu{display:block}
      .mobileMenu[data-open="false"]{display:none}
    }

    @media (max-width: 520px){
      .heroH1{font-size:28px}
      .steps{grid-template-columns: 1fr}
      th, td{min-width:170px}
      .formGrid{grid-template-columns: 1fr}
    }

    @media (prefers-reduced-motion: reduce){
      *{scroll-behavior:auto}
      .reveal{transition:none}
      .star{animation:none}
    }