:root{
      --bg0:#ffffff;
      --bg1:#f7f5ff;
      --bg2:#f3f0ff;
      --card:#ffffff;
      --text:#12121a;
      --muted:#5b5b6a;
      --muted2:#7a7a8e;
      --line:rgba(18,18,26,.10);
      --line2:rgba(18,18,26,.14);
      --shadow: 0 10px 28px rgba(52, 12, 124, .10);
      --shadow2: 0 8px 18px rgba(18,18,26,.08);
      --purple:#6d28d9;
      --purple2:#8b5cf6;
      --purple3:#a78bfa;
      --indigo:#4f46e5;
      --rose:#db2777;
      --teal:#14b8a6;
      --gold:#f59e0b;
      --btn:#5b21b6;
      --btn2:#7c3aed;
      --focus:rgba(124,58,237,.22);
      --radius:18px;
      --radius2:14px;
      --container: 1140px;
      --padX: 18px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--text);
      background:
        radial-gradient(1200px 700px at 12% -10%, rgba(124,58,237,.18), rgba(255,255,255,0) 58%),
        radial-gradient(900px 520px at 85% 0%, rgba(219,39,119,.10), rgba(255,255,255,0) 52%),
        radial-gradient(900px 620px at 70% 65%, rgba(20,184,166,.08), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, var(--bg1), var(--bg0) 40%, #fff 100%);
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 var(--padX);
    }
    .skip{
      position:absolute; left:-999px; top:-999px;
      background:#fff; border:1px solid var(--line2); padding:10px 12px; border-radius:12px;
      z-index:9999;
    }
    .skip:focus{left:14px; top:14px; outline:none; box-shadow:0 0 0 4px var(--focus)}
    header{
      position:sticky; top:0; z-index:60;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.66);
      border-bottom: 1px solid rgba(18,18,26,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width: 220px;
    }
    .brand img{
      width:40px; height:40px; border-radius:12px; box-shadow: 0 10px 22px rgba(109,40,217,.18);
      background: linear-gradient(135deg, rgba(109,40,217,.22), rgba(219,39,119,.10));
      object-fit:contain;
    }
    .brand .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand .name{
      font-weight:820; letter-spacing:.2px;
      font-size:14.5px;
    }
    .brand .tag{font-size:12.5px; color:var(--muted); margin-top:4px}
    nav ul{
      list-style:none; margin:0; padding:0; display:flex; gap:16px; align-items:center;
      flex-wrap:nowrap;
    }
    nav a{
      font-size:13.5px; color:var(--muted);
      padding:8px 10px; border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    nav a:hover{
      background: rgba(109,40,217,.08);
      color: #2b1a4e;
      transform: translateY(-1px);
    }
    .nav-actions{display:flex; gap:10px; align-items:center; justify-content:flex-end}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(109,40,217,.22);
      background: rgba(255,255,255,.75);
      color:#2b124f;
      font-weight:720;
      font-size:13.5px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn:hover{transform: translateY(-1px); box-shadow:0 14px 28px rgba(109,40,217,.12); border-color: rgba(109,40,217,.34)}
    .btn-primary{
      background: linear-gradient(135deg, var(--btn2), var(--btn));
      border-color: rgba(124,58,237,.25);
      color:#fff;
      box-shadow: 0 14px 34px rgba(124,58,237,.26);
    }
    .btn-primary:hover{
      box-shadow: 0 18px 42px rgba(124,58,237,.32);
    }
    .btn-ghost{
      border-color: rgba(18,18,26,.12);
      background: rgba(255,255,255,.72);
      color: var(--text);
    }
    .icon{
      width:18px; height:18px; display:inline-block;
    }
    .mobile-toggle{
      display:none;
      width:44px; height:44px; border-radius:14px;
      border:1px solid rgba(18,18,26,.12);
      background: rgba(255,255,255,.7);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .mobile-toggle:hover{transform: translateY(-1px); box-shadow:0 12px 24px rgba(18,18,26,.08)}
    .mobile-toggle:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .hamburger{
      width:18px; height:14px; position:relative;
    }
    .hamburger span{
      position:absolute; left:0; right:0; height:2px; background: #2b124f;
      border-radius:999px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .hamburger span:nth-child(1){top:1px}
    .hamburger span:nth-child(2){top:6px}
    .hamburger span:nth-child(3){top:11px}
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1){top:6px; transform: rotate(45deg)}
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2){opacity:0}
    .mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3){top:6px; transform: rotate(-45deg)}
    .mobile-panel{
      display:none;
      border-top: 1px solid rgba(18,18,26,.08);
      padding:10px 0 14px;
    }
    .mobile-panel .mobile-links{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:8px;
    }
    .mobile-panel a{
      border:1px solid rgba(18,18,26,.10);
      border-radius:14px;
      padding:10px 12px;
      font-size:13.5px;
      color:var(--muted);
      background: rgba(255,255,255,.7);
    }
    .mobile-panel a:hover{color:#2b124f; border-color: rgba(109,40,217,.22)}
    .hero{
      position:relative;
      padding:34px 0 16px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      padding:26px 0 18px;
    }
    .eyebrow{
      display:inline-flex; gap:10px; align-items:center;
      padding:8px 12px;
      border-radius:999px;
      border: 1px solid rgba(109,40,217,.20);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 26px rgba(109,40,217,.08);
      color:#2b124f;
      font-weight:760;
      font-size:12.5px;
    }
    .pulse-dot{
      width:9px; height:9px; border-radius:999px; background: linear-gradient(135deg, var(--purple2), var(--rose));
      box-shadow: 0 0 0 0 rgba(124,58,237,.45);
      animation: pulse 2.2s infinite;
    }
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(124,58,237,.35)}
      60%{box-shadow:0 0 0 12px rgba(124,58,237,0)}
      100%{box-shadow:0 0 0 0 rgba(124,58,237,0)}
    }
    .hero h1{
      font-size:40px;
      margin:14px 0 10px;
      letter-spacing: -0.6px;
      line-height:1.15;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.7;
      max-width: 620px;
    }
    .hero-cta{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:18px;
      align-items:center;
    }
    .micro{
      display:flex; gap:12px; align-items:center; margin-top:16px; flex-wrap:wrap;
      color:var(--muted2);
      font-size:12.8px;
    }
    .micro .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.62);
    }
    .chip svg{opacity:.95}
    .hero-right{
      position:relative;
      border-radius: var(--radius);
      background:
        radial-gradient(900px 260px at 30% 0%, rgba(124,58,237,.18), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.55));
      border: 1px solid rgba(109,40,217,.18);
      box-shadow: var(--shadow2);
      overflow:hidden;
      padding:16px;
      display:flex; flex-direction:column; gap:12px;
      min-height: 380px;
    }
    .glow-grid{
      position:absolute; inset:-2px;
      background:
        linear-gradient(rgba(109,40,217,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109,40,217,.12) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(250px 180px at 35% 0%, rgba(0,0,0,1), rgba(0,0,0,0) 60%);
      pointer-events:none;
      opacity:.8;
    }
    .signal{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:14px;
      border: 1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.62);
      position:relative;
    }
    .bars{display:flex; gap:4px; align-items:flex-end}
    .bars span{
      width:7px; border-radius:4px;
      background: linear-gradient(180deg, var(--purple2), var(--rose));
      height:10px;
      animation: bars 1.5s infinite ease-in-out;
    }
    .bars span:nth-child(1){height:12px; animation-delay:0s}
    .bars span:nth-child(2){height:18px; animation-delay:.1s}
    .bars span:nth-child(3){height:9px; animation-delay:.2s}
    .bars span:nth-child(4){height:22px; animation-delay:.3s}
    @keyframes bars{
      0%,100%{transform: translateY(0); filter:saturate(1)}
      50%{transform: translateY(-4px); filter:saturate(1.2)}
    }
    .signal .smeta{display:flex; flex-direction:column; gap:2px}
    .signal strong{font-size:13.5px}
    .signal span{font-size:12.5px; color:var(--muted)}
    .metrics{
      display:grid; grid-template-columns: 1fr 1fr;
      gap:10px;
      position:relative;
    }
    .metric-card{
      border-radius:16px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.72);
      padding:12px 12px 11px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .metric-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(109,40,217,.12);
      border-color: rgba(109,40,217,.22);
    }
    .metric-card .top{
      display:flex; align-items:center; justify-content:space-between;
      margin-bottom:6px;
      gap:10px;
    }
    .metric-card .k{
      font-size:12.4px; color:var(--muted);
      font-weight:650;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(109,40,217,.18);
      color:#2b124f;
      background: rgba(124,58,237,.08);
      font-weight:760;
      font-size:12px;
    }
    .metric-card .v{
      font-size:20px; font-weight:880; letter-spacing:-.3px;
    }
    .metric-card .sub{
      margin-top:4px;
      font-size:12.8px; color:var(--muted2);
      line-height:1.4;
    }
    .hero-right .list{
      margin-top:auto;
      border-radius: 16px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.58);
      padding:12px;
    }
    .list .row{
      display:flex; gap:10px; align-items:flex-start;
      padding:9px 8px;
      border-radius:12px;
    }
    .list .row:hover{background: rgba(109,40,217,.06)}
    .list .row + .row{border-top:1px dashed rgba(18,18,26,.10)}
    .tick{
      width:18px; height:18px; border-radius:6px;
      background: rgba(124,58,237,.14);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      border: 1px solid rgba(124,58,237,.22);
    }
    .list strong{font-size:13.5px}
    .list p{margin:2px 0 0; font-size:12.8px; color:var(--muted); line-height:1.5}
    section{padding:26px 0}
    .section-title{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-bottom:14px;
    }
    .section-title h2{
      margin:0;
      font-size:24px; letter-spacing:-.3px;
    }
    .section-title .lead{
      color:var(--muted);
      margin:0;
      font-size:14px;
      line-height:1.6;
      max-width: 560px;
    }
    .card{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(18,18,26,.10);
      border-radius: var(--radius);
      box-shadow: 0 10px 30px rgba(18,18,26,.06);
      overflow:hidden;
    }
    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
    }
    .grid-2{
      display:grid; grid-template-columns: repeat(2, 1fr); gap:14px;
    }
    .grid-4{
      display:grid; grid-template-columns: repeat(4, 1fr); gap:12px;
    }
    .tile{
      padding:16px;
      display:flex; flex-direction:column; gap:8px;
      min-height: 160px;
      position:relative;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .tile:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(109,40,217,.12);
      border-color: rgba(109,40,217,.22);
    }
    .tile .ico{
      width:40px; height:40px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(219,39,119,.10));
      border:1px solid rgba(124,58,237,.20);
    }
    .tile h3{
      margin:0;
      font-size:15.5px;
      letter-spacing:-.2px;
    }
    .tile p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.65;
    }
    .tile .meta{
      margin-top:auto;
      display:flex; gap:8px; flex-wrap:wrap;
    }
    .pill{
      display:inline-flex; align-items:center;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(18,18,26,.10);
      color: #2b124f;
      font-weight:720;
      font-size:12px;
      background: rgba(255,255,255,.65);
    }
    .pill.p1{border-color: rgba(109,40,217,.22); background: rgba(124,58,237,.08)}
    .pill.p2{border-color: rgba(20,184,166,.22); background: rgba(20,184,166,.08)}
    .pill.p3{border-color: rgba(245,158,11,.22); background: rgba(245,158,11,.08)}
    .pill.p4{border-color: rgba(219,39,119,.22); background: rgba(219,39,119,.08)}
    .timeline{
      display:grid; grid-template-columns: repeat(5, 1fr);
      gap:10px;
    }
    .step{
      padding:14px 14px 13px;
      border-radius:16px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.66);
      position:relative;
      overflow:hidden;
      min-height: 138px;
    }
    .step:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(240px 120px at 20% 0%, rgba(124,58,237,.14), rgba(255,255,255,0) 65%);
      pointer-events:none;
    }
    .step .n{
      width:34px; height:34px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(124,58,237,.10);
      border: 1px solid rgba(124,58,237,.22);
      font-weight:900;
      color:#2b124f;
      position:relative;
    }
    .step h3{
      margin:10px 0 6px;
      font-size:14.8px;
      position:relative;
    }
    .step p{margin:0; color:var(--muted); font-size:13.2px; line-height:1.6; position:relative}
    .compare-wrap{
      overflow:auto;
      border-radius: var(--radius);
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.72);
    }
    table{
      width:100%;
      border-collapse: separate;
      border-spacing:0;
      min-width: 820px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(18,18,26,.08);
      vertical-align:top;
    }
    th{
      text-align:left;
      font-size:13px;
      color:#2b124f;
      background: linear-gradient(180deg, rgba(124,58,237,.10), rgba(255,255,255,.0));
      position:sticky; top:0;
      z-index:1;
    }
    tr:last-child td{border-bottom:none}
    td{
      color:var(--muted);
      font-size:13.4px;
      line-height:1.6;
    }
    .td-strong{
      color:#24123f;
      font-weight:850;
    }
    .check{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border: 1px solid rgba(20,184,166,.22);
      background: rgba(20,184,166,.08);
      color:#0f4c45;
      font-weight:760;
      font-size:12.5px;
      white-space:nowrap;
      margin: 3px 0;
    }
    .cross{
      display:inline-flex; align-items:center; gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border: 1px solid rgba(219,39,119,.22);
      background: rgba(219,39,119,.08);
      color:#5a0c2b;
      font-weight:760;
      font-size:12.5px;
      white-space:nowrap;
      margin: 3px 0;
    }
    .two-col{
      display:grid; grid-template-columns: 1fr 1fr; gap:14px;
      align-items:start;
    }
    .panel{
      border-radius: var(--radius);
      border: 1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 12px 30px rgba(18,18,26,.06);
      overflow:hidden;
    }
    .panel .panel-head{
      padding:14px 16px;
      border-bottom:1px solid rgba(18,18,26,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .panel .panel-head h3{
      margin:0; font-size:16px; letter-spacing:-.2px;
    }
    .panel .panel-head .hint{
      font-size:13px; color:var(--muted);
      margin:0;
    }
    .panel .panel-body{padding:14px 16px}
    .match-list{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .tag{
      display:inline-flex; align-items:center; gap:9px;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.66);
      color: #2b124f;
      font-weight:760;
      font-size:13.2px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .tag:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(109,40,217,.10);
      border-color: rgba(109,40,217,.22);
    }
    .tag .dot{
      width:10px; height:10px; border-radius:999px;
      background: linear-gradient(135deg, var(--purple2), var(--rose));
      box-shadow: 0 0 0 4px rgba(124,58,237,.10);
    }
    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    details{
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(18,18,26,.10);
      border-radius: 16px;
      padding: 12px 14px;
      box-shadow: 0 10px 24px rgba(18,18,26,.04);
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }
    details:hover{
      border-color: rgba(109,40,217,.22);
      box-shadow: 0 18px 40px rgba(109,40,217,.10);
      transform: translateY(-1px);
    }
    summary{
      cursor:pointer;
      list-style:none;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding: 2px 0;
    }
    summary::-webkit-details-marker{display:none}
    .q{
      font-weight:860;
      color:#24123f;
      font-size:14.2px;
      line-height:1.4;
      padding-right: 8px;
    }
    .chev{
      width:26px; height:26px; border-radius:10px;
      border: 1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.7);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:-2px;
      transition: transform .2s ease;
    }
    details[open] .chev{transform: rotate(180deg)}
    .a{
      margin-top:10px;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.7;
      padding-top:10px;
      border-top: 1px dashed rgba(18,18,26,.12);
    }
    .reviews{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review{
      padding:16px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(18,18,26,.10);
      border-radius: var(--radius);
      box-shadow: 0 10px 24px rgba(18,18,26,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 190px;
      display:flex; flex-direction:column; gap:10px;
      position:relative;
      overflow:hidden;
    }
    .review:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(420px 220px at 15% 0%, rgba(124,58,237,.14), rgba(255,255,255,0) 60%);
      pointer-events:none;
    }
    .review:hover{
      transform: translateY(-2px);
      box-shadow: 0 22px 48px rgba(109,40,217,.12);
      border-color: rgba(109,40,217,.22);
    }
    .review .head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      position:relative;
    }
    .avatar{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(219,39,119,.12));
      border:1px solid rgba(124,58,237,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      color:#2b124f;
      flex:0 0 auto;
    }
    .who{display:flex; flex-direction:column; gap:3px}
    .who strong{font-size:14.2px}
    .who span{font-size:12.8px; color:var(--muted)}
    .stars{
      display:flex; gap:3px; align-items:center;
      color:#f59e0b;
      font-size:13px;
      position:relative;
    }
    .review .txt{
      margin:0;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.75;
      position:relative;
    }
    .case-grid{
      display:grid; grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .case-left{
      padding:16px;
    }
    .carousel-lite{
      display:grid; gap:10px;
    }
    .case-card{
      border-radius: 18px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.72);
      padding:14px;
      display:grid; grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:center;
    }
    .case-card .kpi{
      display:flex; gap:10px; align-items:center;
    }
    .case-card .mark{
      width:44px; height:44px; border-radius:18px;
      background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(20,184,166,.10));
      border:1px solid rgba(124,58,237,.20);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .case-card h3{margin:0; font-size:15.5px}
    .case-card p{margin:6px 0 0; color:var(--muted); font-size:13.6px; line-height:1.7}
    .case-card .skills{
      display:flex; flex-wrap:wrap; gap:8px;
      justify-content:flex-end;
    }
    .case-ctrl{
      display:flex; gap:10px; align-items:center; justify-content:space-between;
      margin-top:10px;
    }
    .seg{
      display:flex; gap:8px; align-items:center; flex-wrap:wrap;
    }
    .seg button{
      width: 40px; height: 32px;
      border-radius: 12px;
      border: 1px solid rgba(18,18,26,.12);
      background: rgba(255,255,255,.7);
      cursor:pointer;
      font-weight:880;
      color:var(--muted);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .seg button[aria-current="true"]{
      border-color: rgba(124,58,237,.30);
      background: rgba(124,58,237,.10);
      color:#2b124f;
      box-shadow: 0 14px 30px rgba(109,40,217,.12);
    }
    .seg button:hover{transform: translateY(-1px); box-shadow:0 16px 30px rgba(18,18,26,.08)}
    .case-right{
      padding:16px;
    }
    .article-list{
      display:grid; gap:10px;
    }
    .article-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px;
      border-radius: 16px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article-item:hover{
      transform: translateY(-2px);
      border-color: rgba(124,58,237,.22);
      box-shadow: 0 18px 40px rgba(109,40,217,.10);
    }
    .article-item .idx{
      width:34px; height:34px; border-radius:14px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:900; color:#2b124f; flex:0 0 auto;
    }
    .article-item h4{
      margin:0;
      font-size:14.5px;
      line-height:1.35;
    }
    .article-item p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:13.2px;
      line-height:1.6;
    }
    .article-item a{
      display:block; width:100%;
    }
    .form-grid{
      display:grid; grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    form{
      display:grid; gap:10px;
    }
    label{font-size:13px; color:#2b124f; font-weight:780}
    .field{
      display:grid; gap:6px;
    }
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(18,18,26,.12);
      background: rgba(255,255,255,.8);
      color: var(--text);
      font-size:14px;
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
    }
    textarea{min-height:110px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(124,58,237,.34);
      box-shadow: 0 0 0 4px var(--focus);
    }
    .form-actions{
      display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:space-between;
      margin-top:4px;
    }
    .fineprint{
      color:var(--muted2);
      font-size:12.6px;
      line-height:1.5;
      margin:0;
    }
    .side-quick{
      padding:16px;
    }
    .side-quick .bullets{
      display:grid; gap:10px;
      margin-top:10px;
    }
    .qb{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px;
      border-radius: 16px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.70);
    }
    .qb .qico{
      width:38px; height:38px; border-radius:16px;
      background: rgba(124,58,237,.10);
      border:1px solid rgba(124,58,237,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .qb strong{font-size:14.2px}
    .qb p{margin:4px 0 0; color:var(--muted); font-size:13.3px; line-height:1.6}
    footer{
      padding:18px 0 26px;
      background: linear-gradient(180deg, rgba(124,58,237,.06), rgba(255,255,255,0));
      border-top: 1px solid rgba(18,18,26,.08);
      margin-top:6px;
    }
    .footer-grid{
      display:grid; grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      border-radius: var(--radius);
      border: 1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.74);
      padding:16px;
      box-shadow: 0 14px 34px rgba(18,18,26,.05);
    }
    .foot-brand{
      display:flex; gap:12px; align-items:center;
    }
    .foot-brand img{width:40px; height:40px; border-radius:14px; object-fit:contain}
    .foot-brand strong{font-size:15.2px}
    .foot-brand p{margin:6px 0 0; color:var(--muted); font-size:13.4px; line-height:1.7}
    .foot-links{
      display:grid; grid-template-columns: repeat(2, 1fr);
      gap:10px;
      margin-top:12px;
    }
    .foot-links a{
      padding:10px 12px;
      border-radius: 14px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.65);
      color:var(--muted);
      font-size:13.2px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .foot-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(124,58,237,.22);
      box-shadow: 0 18px 40px rgba(109,40,217,.10);
      color:#2b124f;
    }
    .friendship{
      display:flex; flex-wrap:wrap; gap:10px; align-items:center;
      margin-top:12px;
    }
    .friendship a{
      padding:9px 11px;
      border-radius: 999px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.64);
      color:var(--muted);
      font-size:12.8px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .friendship a:hover{transform: translateY(-1px); border-color: rgba(124,58,237,.22); color:#2b124f}
    .copyright{
      margin-top:12px;
      color:var(--muted2);
      font-size:12.6px;
      display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
      align-items:center;
    }
    .kefu{
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
    }
    .kefu .kefu-text{
      display:flex; flex-direction:column; gap:6px;
    }
    .kefu .kefu-text strong{font-size:14.8px}
    .kefu .kefu-text a{color: #2b124f; font-weight:800}
    .kefu img{
      width:92px; height:auto;
      border-radius: 18px;
      border: 1px solid rgba(18,18,26,.10);
      background: #fff;
      box-shadow: 0 18px 40px rgba(18,18,26,.08);
    }

    .float-kefu{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-kefu .bubble{
      width: 52px; height: 52px; border-radius: 18px;
      border: 1px solid rgba(124,58,237,.22);
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(219,39,119,.10));
      box-shadow: 0 18px 46px rgba(124,58,237,.26);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
      backdrop-filter: blur(10px);
    }
    .float-kefu .bubble:hover{transform: translateY(-2px); box-shadow: 0 24px 60px rgba(124,58,237,.30)}
    .float-kefu .panel-mini{
      display:none;
      width: 270px;
      border-radius: 18px;
      border:1px solid rgba(18,18,26,.10);
      background: rgba(255,255,255,.84);
      box-shadow: 0 22px 60px rgba(18,18,26,.16);
      padding:12px;
      transform-origin: 100% 100%;
      animation: pop .18s ease both;
    }
    @keyframes pop{
      from{opacity:0; transform: translateY(8px) scale(.98)}
      to{opacity:1; transform: translateY(0) scale(1)}
    }
    .float-kefu .panel-mini .pm-top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom:8px;
    }
    .float-kefu .panel-mini .pm-top strong{font-size:14.5px}
    .close-mini{
      width:34px; height:34px; border-radius:12px;
      border:1px solid rgba(18,18,26,.12);
      background: rgba(255,255,255,.7);
      cursor:pointer;
    }
    .float-kefu .panel-mini .pm-row{
      display:flex; gap:10px; align-items:center;
    }
    .float-kefu .panel-mini .pm-row img{
      width:74px; height:auto; border-radius:16px; border:1px solid rgba(18,18,26,.10); background:#fff;
    }
    .float-kefu .panel-mini p{
      margin:0; color:var(--muted); font-size:12.8px; line-height:1.55;
    }
    .toplink{
      width: 46px; height: 46px; border-radius: 18px;
      border: 1px solid rgba(18,18,26,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(18,18,26,.10);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease;
      backdrop-filter: blur(10px);
    }
    .toplink:hover{transform: translateY(-2px); box-shadow: 0 22px 60px rgba(18,18,26,.16)}

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

    .skip-anchors{
      display:none;
    }

    @media (max-width: 980px){
      nav ul{display:none}
      .mobile-toggle{display:flex}
      .mobile-panel{display:none}
      .hero-grid{grid-template-columns: 1fr; }
      .hero h1{font-size:34px}
      .hero-right{min-height: 330px}
      .grid-3{grid-template-columns: 1fr}
      .grid-4{grid-template-columns: 1fr 1fr}
      .two-col{grid-template-columns: 1fr}
      .timeline{grid-template-columns: 1fr 1fr}
      .faq{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .case-card{grid-template-columns: 1fr}
      .case-card .skills{justify-content:flex-start}
      .form-grid{grid-template-columns: 1fr}
      .footer-grid{grid-template-columns: 1fr}
      .foot-links{grid-template-columns: 1fr 1fr}
      .float-kefu .panel-mini{width: 245px}
    }
    @media (max-width: 460px){
      .hero h1{font-size:30px}
      .timeline{grid-template-columns: 1fr}
      table{min-width: 720px}
      .metrics{grid-template-columns: 1fr 1fr}
      .foot-links{grid-template-columns: 1fr}
      .mobile-panel .mobile-links{grid-template-columns: 1fr}
    }