:root{
      --bg:#fff7f7;
      --bg2:#ffffff;
      --text:#15171c;
      --muted:#5b616d;
      --muted2:#747b88;
      --card:#ffffff;
      --line:rgba(20,22,28,.10);
      --shadow: 0 14px 40px rgba(16,24,40,.10);
      --shadow2: 0 10px 24px rgba(16,24,40,.12);
      --brand1:#ff2f7a;
      --brand2:#7c3aed;
      --brand3:#0ea5e9;
      --accent:#ff3b8a;
      --accent2:#8a2be2;
      --ok:#16a34a;
      --warn:#f59e0b;
      --radius:18px;
      --radius2:26px;
      --container: 1120px;
      --pad: 20px;
      --focus: 0 0 0 4px rgba(255,47,122,.18);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 420px at 12% -5%, rgba(255,47,122,.16), transparent 55%),
        radial-gradient(700px 360px at 88% 0%, rgba(124,58,237,.14), transparent 55%),
        radial-gradient(650px 340px at 60% 30%, rgba(14,165,233,.10), transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, #ffffff 34%, #fffdfd 100%);
      overflow-x:hidden;
    }
    a{color:inherit}
    .container{
      width: min(var(--container), calc(100% - 2*var(--pad)));
      margin:0 auto;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(160%) blur(10px);
      background:rgba(255,255,255,.68);
      border-bottom:1px solid rgba(20,22,28,.08);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }
    .ai-page-logo{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:12px;
      background:rgba(255,47,122,.08);
      border:1px solid rgba(255,47,122,.22);
      padding:6px;
    }
    .brand-txt{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-txt strong{
      font-size:15px;
      letter-spacing:.2px;
    }
    .brand-txt span{
      font-size:12px;
      color:var(--muted);
    }
    .nav{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav a{
      text-decoration:none;
      font-size:13px;
      color:rgba(21,23,28,.84);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      background:rgba(255,47,122,.08);
      border-color:rgba(255,47,122,.22);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius:12px;
      border:1px solid rgba(20,22,28,.10);
      background:#fff;
      text-decoration:none;
      cursor:pointer;
      transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
      box-shadow: 0 8px 18px rgba(16,24,40,.06);
      font-weight:650;
      letter-spacing:.2px;
      font-size:13.5px;
      color:rgba(21,23,28,.92);
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow: var(--focus), 0 8px 18px rgba(16,24,40,.08)}
    .btn:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(16,24,40,.10)}
    .btn-primary{
      background: linear-gradient(135deg, rgba(255,47,122,1), rgba(124,58,237,1));
      border-color: rgba(255,47,122,.28);
      color:#fff;
      box-shadow: 0 16px 34px rgba(255,47,122,.25);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 44px rgba(255,47,122,.28);
    }
    .btn-ghost{
      background: rgba(255,255,255,.68);
    }
    .burger{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid rgba(20,22,28,.10);
      background:rgba(255,255,255,.74);
      box-shadow: 0 10px 20px rgba(16,24,40,.06);
      cursor:pointer;
      align-items:center;
      justify-content:center;
    }
    .burger:focus{outline:none; box-shadow: var(--focus), 0 10px 20px rgba(16,24,40,.08)}
    .burger-lines{
      width:18px; height:14px; position:relative;
    }
    .burger-lines span{
      position:absolute; left:0; right:0;
      height:2px; background:rgba(21,23,28,.86);
      border-radius:2px;
      transition:transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger-lines span:nth-child(1){top:1px}
    .burger-lines span:nth-child(2){top:6px}
    .burger-lines span:nth-child(3){top:11px}
    .burger[aria-expanded="true"] .burger-lines span:nth-child(1){top:6px; transform: rotate(45deg)}
    .burger[aria-expanded="true"] .burger-lines span:nth-child(2){opacity:0}
    .burger[aria-expanded="true"] .burger-lines span:nth-child(3){top:6px; transform: rotate(-45deg)}
    .mobile-panel{
      display:none;
      padding:12px 0 18px;
      border-top:1px solid rgba(20,22,28,.08);
    }
    .mobile-panel a{
      display:flex;
      justify-content:space-between;
      text-decoration:none;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(20,22,28,.08);
      background:rgba(255,255,255,.72);
      margin-top:10px;
      font-weight:600;
      font-size:14px;
    }
    .mobile-panel a:hover{
      border-color: rgba(255,47,122,.28);
      background: rgba(255,47,122,.06);
    }

    .hero{
      position:relative;
      padding:40px 0 18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.18fr .82fr;
      gap:22px;
      align-items:stretch;
    }
    .hero-copy{
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      border:1px solid rgba(20,22,28,.08);
      border-radius: var(--radius2);
      box-shadow: 0 18px 46px rgba(16,24,40,.10);
      padding:26px 24px;
      overflow:hidden;
      position:relative;
    }
    .hero-copy::before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height: 210px;
      background:
        radial-gradient(260px 120px at 16% 40%, rgba(255,47,122,.26), transparent 60%),
        radial-gradient(260px 120px at 56% 30%, rgba(124,58,237,.22), transparent 62%),
        radial-gradient(260px 120px at 86% 50%, rgba(14,165,233,.16), transparent 58%);
      pointer-events:none;
      filter:saturate(140%);
    }
    .hero-badge{
      position:relative;
      display:inline-flex;
      gap:10px;
      align-items:center;
      border:1px solid rgba(255,47,122,.26);
      background: rgba(255,47,122,.08);
      color: rgba(185,12,72,1);
      padding:8px 12px;
      border-radius:999px;
      font-weight:700;
      font-size:13px;
      letter-spacing:.2px;
      margin-bottom:14px;
      transform: translateY(0);
      animation: floaty 4.6s ease-in-out infinite;
    }
    @keyframes floaty{
      0%,100%{transform: translateY(0)}
      50%{transform: translateY(-3px)}
    }
    .hero-title{
      position:relative;
      margin:0;
      font-size:34px;
      line-height:1.12;
      letter-spacing:-.4px;
      max-width: 18.2em;
    }
    .hero-sub{
      position:relative;
      margin:12px 0 18px;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.75;
      max-width: 58ch;
    }
    .hero-actions{
      position:relative;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom:18px;
    }
    .hero-note{
      position:relative;
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.64);
    }
    .hero-note svg{flex:0 0 auto}
    .hero-note strong{
      display:block;
      font-size:13.5px;
      margin-bottom:4px;
    }
    .hero-note span{
      display:block;
      color:var(--muted2);
      font-size:12.8px;
      line-height:1.55;
    }

    .hero-side{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,.52));
      box-shadow: 0 18px 46px rgba(16,24,40,.10);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .hero-side::after{
      content:"";
      position:absolute;
      right:-120px; top:-110px;
      width: 280px; height:280px;
      background: radial-gradient(circle at 30% 30%, rgba(255,47,122,.30), transparent 55%),
                  radial-gradient(circle at 60% 50%, rgba(124,58,237,.22), transparent 58%),
                  radial-gradient(circle at 40% 70%, rgba(14,165,233,.14), transparent 58%);
      filter: blur(1px);
      pointer-events:none;
    }
    .side-title{
      position:relative;
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      margin-bottom:14px;
    }
    .side-title h3{
      margin:0;
      font-size:15px;
      letter-spacing:.2px;
    }
    .live-pill{
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,22,28,.10);
      background: rgba(255,255,255,.62);
      color: rgba(21,23,28,.84);
      font-size:12.5px;
      white-space:nowrap;
    }
    .dot{
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(180deg, rgba(22,163,74,1), rgba(34,197,94,1));
      box-shadow: 0 0 0 6px rgba(34,197,94,.12);
      animation:pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform: scale(1); opacity:1}
      50%{transform: scale(1.08); opacity:.85}
    }
    .kpi-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-bottom:14px;
    }
    .kpi{
      border-radius:16px;
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.62);
      padding:12px 12px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 88px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .kpi:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(16,24,40,.10);
      border-color: rgba(255,47,122,.24);
    }
    .kpi .num{
      font-size:20px;
      font-weight:900;
      letter-spacing:-.4px;
    }
    .kpi .label{
      color:var(--muted2);
      font-size:12.7px;
      line-height:1.35;
      margin-top:6px;
      font-weight:600;
    }
    .side-card{
      position:relative;
      border-radius:18px;
      border:1px solid rgba(20,22,28,.08);
      background: linear-gradient(135deg, rgba(255,47,122,.10), rgba(124,58,237,.08));
      padding:14px 14px;
    }
    .side-card strong{
      display:block;
      font-size:13.5px;
      margin-bottom:6px;
      letter-spacing:.2px;
    }
    .side-list{
      margin:0; padding:0;
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:9px;
    }
    .side-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color: rgba(21,23,28,.86);
      font-size:13px;
      line-height:1.45;
      font-weight:600;
    }
    .check{
      width:18px; height:18px; border-radius:6px;
      background: rgba(255,47,122,.14);
      border:1px solid rgba(255,47,122,.28);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top:1px;
    }

    .section{
      padding: 34px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.2px;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
      max-width: 62ch;
    }
    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card{
      background: rgba(255,255,255,.74);
      border:1px solid rgba(20,22,28,.08);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 12px 30px rgba(16,24,40,.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 20px 44px rgba(16,24,40,.10);
      border-color: rgba(255,47,122,.22);
    }
    .card h3{
      margin:10px 0 8px;
      font-size:15px;
      letter-spacing:.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
    }
    .icon-wrap{
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,22,28,.08);
      background: linear-gradient(135deg, rgba(255,47,122,.16), rgba(124,58,237,.10));
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 12px 26px rgba(255,47,122,.10);
    }
    .icon-wrap svg{opacity:.96}
    .tagrow{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .tag{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,22,28,.10);
      background: rgba(255,255,255,.66);
      color: rgba(21,23,28,.82);
      font-size:12.5px;
      font-weight:650;
    }

    .process{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .steps{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .step{
      display:flex;
      gap:14px;
      padding:14px 14px;
      border-radius: var(--radius);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.72);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step:hover{transform: translateY(-2px); box-shadow: 0 20px 44px rgba(16,24,40,.10); border-color: rgba(255,47,122,.22);}
    .step-num{
      width:38px; height:38px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(255,47,122,1), rgba(124,58,237,1));
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      font-weight:900;
      flex:0 0 auto;
      box-shadow: 0 18px 36px rgba(255,47,122,.24);
    }
    .step h3{margin:0; font-size:14.5px; letter-spacing:.2px}
    .step p{margin:6px 0 0; color:var(--muted); font-size:13.3px; line-height:1.7}

    .sidebox{
      padding:16px;
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background:
        radial-gradient(600px 220px at 12% 0%, rgba(255,47,122,.16), transparent 52%),
        radial-gradient(560px 240px at 90% 20%, rgba(124,58,237,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.56));
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
    }
    .sidebox h3{margin:0; font-size:15.5px}
    .sidebox p{margin:10px 0 14px; color:var(--muted); font-size:13.8px; line-height:1.75}
    .mini-list{margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .mini-list li{display:flex; gap:10px; align-items:flex-start; font-weight:650; color:rgba(21,23,28,.86); font-size:13.4px}
    .mini-icon{
      width:18px; height:18px; border-radius:6px;
      background: rgba(14,165,233,.14);
      border:1px solid rgba(14,165,233,.28);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto; margin-top:1px;
    }

    .compare{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      overflow:hidden;
    }
    .compare-top{
      padding:16px 16px 0;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .compare-top h3{margin:0; font-size:16px}
    .stars{
      display:flex; align-items:center; gap:10px; font-weight:900;
    }
    .star-row{
      display:flex; gap:4px;
    }
    .star{
      width:18px; height:18px;
      color: rgba(245,158,11,1);
      filter: drop-shadow(0 10px 16px rgba(245,158,11,.18));
    }
    .score{
      background: linear-gradient(135deg, rgba(255,47,122,.18), rgba(124,58,237,.14));
      border:1px solid rgba(255,47,122,.22);
      border-radius: 999px;
      padding:7px 12px;
      font-size:13px;
      color: rgba(21,23,28,.9);
      white-space:nowrap;
    }
    .table-wrap{
      overflow:auto;
      border-top:1px solid rgba(20,22,28,.08);
      margin-top:14px;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:720px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(20,22,28,.08);
      text-align:left;
      vertical-align:top;
      font-size:13.5px;
    }
    th{
      background: rgba(255,255,255,.78);
      position:sticky;
      top:0;
      z-index:2;
      white-space:nowrap;
      font-weight:900;
      color: rgba(21,23,28,.92);
    }
    tr:last-child td{border-bottom:none}
    .row-title{
      font-weight:850;
      color: rgba(21,23,28,.95);
      white-space:nowrap;
    }
    .cell{
      color: rgba(21,23,28,.86);
      font-weight:650;
    }
    .good{
      display:flex; align-items:center; gap:8px;
      color: rgba(21,23,28,.9);
      font-weight:750;
    }
    .bad{
      color: rgba(21,23,28,.65);
      font-weight:650;
      display:flex; align-items:center; gap:8px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(20,22,28,.10);
      background: rgba(255,255,255,.68);
      font-weight:800;
      font-size:12.5px;
      white-space:nowrap;
    }
    .pill-accent{
      border-color: rgba(255,47,122,.26);
      background: rgba(255,47,122,.08);
      color: rgba(185,12,72,1);
    }

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .timeline{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:18px; top:22px; bottom:22px;
      width:2px;
      background: linear-gradient(180deg, rgba(255,47,122,.75), rgba(124,58,237,.35));
      opacity:.55;
    }
    .t-item{
      display:flex;
      gap:12px;
      padding:10px 0 10px 0;
    }
    .t-dot{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(180deg, rgba(255,47,122,1), rgba(124,58,237,1));
      margin-top:6px;
      box-shadow: 0 0 0 6px rgba(255,47,122,.12);
      flex:0 0 auto;
    }
    .t-body{
      padding-left: 10px;
      flex:1 1 auto;
    }
    .t-body strong{display:block; font-size:14.2px}
    .t-body span{display:block; color:var(--muted); font-size:13.2px; margin-top:4px; line-height:1.65}

    .industry-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .chip{
      border-radius:16px;
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.68);
      padding:12px 12px;
      box-shadow: 0 12px 28px rgba(16,24,40,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 98px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:10px;
    }
    .chip:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 44px rgba(16,24,40,.10);
      border-color: rgba(255,47,122,.22);
    }
    .chip strong{font-size:13.8px; letter-spacing:.2px}
    .chip span{color:var(--muted); font-size:12.7px; line-height:1.55; font-weight:650}

    .list-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      padding:16px;
    }
    .seg{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-bottom:12px;
    }
    .seg button{
      border:1px solid rgba(20,22,28,.10);
      background: rgba(255,255,255,.72);
      border-radius:999px;
      padding:9px 12px;
      cursor:pointer;
      font-weight:850;
      font-size:13px;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .seg button:hover{transform: translateY(-1px); border-color: rgba(255,47,122,.24)}
    .seg button[aria-pressed="true"]{
      background: rgba(255,47,122,.10);
      border-color: rgba(255,47,122,.30);
      color: rgba(185,12,72,1);
    }
    .filters{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .match-item{
      border-radius:18px;
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.66);
      padding:14px 14px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 130px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:10px;
    }
    .match-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 44px rgba(16,24,40,.10);
      border-color: rgba(255,47,122,.22);
    }
    .match-item strong{font-size:14px}
    .match-item .meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }

    .acc{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      overflow:hidden;
    }
    .acc-item{
      border-bottom:1px solid rgba(20,22,28,.08);
    }
    .acc-item:last-child{border-bottom:none}
    .acc-btn{
      width:100%;
      text-align:left;
      padding:14px 16px;
      cursor:pointer;
      background: transparent;
      border:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      color: rgba(21,23,28,.95);
      font-weight:900;
      font-size:14.2px;
    }
    .acc-btn:focus{outline:none; box-shadow: inset var(--focus)}
    .acc-btn span{
      display:block;
      color: rgba(21,23,28,.95);
      line-height:1.45;
    }
    .acc-icon{
      width:26px; height:26px;
      border-radius:10px;
      border:1px solid rgba(20,22,28,.10);
      background: rgba(255,255,255,.68);
      flex: 0 0 auto;
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease;
      margin-top:2px;
    }
    .acc-item[aria-expanded="true"] .acc-icon{transform: rotate(45deg); border-color: rgba(255,47,122,.26)}
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
    }
    .acc-panel-inner{
      padding:0 16px 14px;
      color:var(--muted);
      font-size:13.6px;
      line-height:1.85;
    }

    .comments{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .quote{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      padding:16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 188px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:12px;
    }
    .quote:hover{transform: translateY(-2px); box-shadow: 0 24px 56px rgba(16,24,40,.10); border-color: rgba(255,47,122,.22)}
    .quote-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
    }
    .quote .who{
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .avatar{
      width:38px; height:38px;
      border-radius:14px;
      border:1px solid rgba(20,22,28,.08);
      background: linear-gradient(135deg, rgba(255,47,122,.14), rgba(124,58,237,.10));
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color: rgba(21,23,28,.88);
      flex:0 0 auto;
    }
    .who strong{display:block; font-size:13.8px}
    .who span{display:block; color:var(--muted2); font-size:12.7px; margin-top:4px; font-weight:700}
    .quote p{
      margin:0;
      color:rgba(21,23,28,.86);
      font-size:13.4px;
      line-height:1.8;
      font-weight:650;
    }

    .articles{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      padding:16px;
    }
    .article-item{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-bottom:1px solid rgba(20,22,28,.08);
    }
    .article-item:last-child{border-bottom:none}
    .article-item a{
      text-decoration:none;
      display:block;
    }
    .article-item strong{
      display:block;
      font-size:14.2px;
      margin-bottom:6px;
      letter-spacing:.1px;
    }
    .article-item span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
      font-weight:650;
    }
    .article-meta{
      white-space:nowrap;
      color:var(--muted2);
      font-size:12.7px;
      font-weight:800;
      padding-top:2px;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 270px;
    }
    .case-card:hover{transform: translateY(-2px); box-shadow: 0 24px 56px rgba(16,24,40,.10); border-color: rgba(255,47,122,.22)}
    .case-media{
      padding:12px;
      background: linear-gradient(135deg, rgba(255,47,122,.08), rgba(124,58,237,.06));
      border-bottom:1px solid rgba(20,22,28,.08);
    }
    .thumb{
      width:100%;
      border-radius:18px;
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,22,28,.08);
      overflow:hidden;
      position:relative;
    }
    .thumb img{
      width:100%;
      height: auto;
      display:block;
      object-fit:contain;
    }
    .case-body{
      padding:14px 14px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1 1 auto;
    }
    .case-body strong{font-size:14.5px; letter-spacing:.2px}
    .case-body p{margin:0; color:var(--muted); font-size:13.3px; line-height:1.75; font-weight:650}
    .case-foot{
      margin-top:auto;
      display:flex; justify-content:space-between; align-items:center; gap:10px;
    }

    .form-wrap{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .form-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 46px rgba(16,24,40,.08);
      padding:16px;
    }
    form{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .field{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .field label{
      font-weight:900;
      font-size:13.2px;
      color: rgba(21,23,28,.92);
    }
    input, select, textarea{
      width:100%;
      border:1px solid rgba(20,22,28,.12);
      background: rgba(255,255,255,.84);
      border-radius:14px;
      padding:12px 12px;
      font-size:14px;
      color:rgba(21,23,28,.92);
      outline:none;
      transition: box-shadow .16s ease, border-color .16s ease, transform .16s ease;
    }
    textarea{min-height: 112px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      box-shadow: var(--focus);
      border-color: rgba(255,47,122,.30);
    }
    .form-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      justify-content:flex-start;
      margin-top:4px;
    }
    .form-hint{
      color:var(--muted2);
      font-size:12.8px;
      line-height:1.6;
      font-weight:700;
      margin:0;
    }

    .footer{
      padding: 22px 0 28px;
      border-top:1px solid rgba(20,22,28,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.95));
      color: rgba(21,23,28,.92);
    }
    .footer-inner{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:14px;
      align-items:start;
    }
    .foot-card{
      border-radius: var(--radius2);
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 46px rgba(16,24,40,.06);
      padding:16px;
    }
    .foot-top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
      margin-bottom:12px;
    }
    .foot-brand{
      display:flex; align-items:center; gap:12px;
    }
    .foot-brand img{
      width:40px; height:40px; object-fit:contain;
      border-radius:14px;
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,47,122,.08);
      padding:6px;
    }
    .foot-brand strong{display:block; font-size:15px}
    .foot-brand span{display:block; color:var(--muted2); font-size:12.8px; margin-top:4px; font-weight:700}
    .links{
      display:flex; flex-direction:column; gap:10px;
      margin-top:10px;
    }
    .linkline{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
    }
    .linkline span{color:var(--muted2); font-size:13px; font-weight:800}
    .linkline a{
      text-decoration:none;
      color: rgba(185,12,72,1);
      font-weight:900;
      border:1px solid rgba(255,47,122,.22);
      background: rgba(255,47,122,.08);
      padding:7px 10px;
      border-radius:999px;
    }
    .linkline a:hover{
      border-color: rgba(255,47,122,.30);
      transform: translateY(-1px);
    }
    .kv{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .kv .box{
      border-radius:18px;
      border:1px solid rgba(20,22,28,.08);
      background: rgba(255,255,255,.74);
      padding:12px;
    }
    .kv strong{display:block; font-size:13.6px}
    .kv span{display:block; color:var(--muted2); font-size:12.8px; margin-top:6px; line-height:1.6; font-weight:700}
    .qr{
      display:flex; gap:12px; align-items:center;
    }
    .qr img{
      width:86px; height:86px; object-fit:contain;
      border-radius:16px;
      border:1px solid rgba(20,22,28,.10);
      background: rgba(255,255,255,.78);
      padding:6px;
    }
    .qr .txt{
      display:flex; flex-direction:column; gap:8px;
    }
    .qr .txt strong{font-size:14px}
    .qr .txt span{color:var(--muted2); font-size:12.9px; line-height:1.6; font-weight:700}
    .copyright{
      margin-top:12px;
      color:var(--muted2);
      font-size:12.5px;
      font-weight:750;
      display:flex;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }

    .float-contact{
      position:fixed;
      right:14px;
      bottom:14px;
      z-index:60;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      display:flex;
      align-items:center;
      gap:10px;
      padding:11px 12px;
      border-radius:16px;
      border:1px solid rgba(20,22,28,.12);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 44px rgba(16,24,40,.14);
      cursor:pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      text-decoration:none;
      font-weight:900;
      color: rgba(21,23,28,.92);
      max-width: 240px;
    }
    .float-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(255,47,122,.26);
      box-shadow: 0 26px 60px rgba(16,24,40,.18);
    }
    .float-btn small{
      color:var(--muted2);
      font-weight:800;
      display:block;
      line-height:1.2;
    }
    .float-ic{
      width:36px; height:36px;
      border-radius:14px;
      background: linear-gradient(135deg, rgba(255,47,122,1), rgba(124,58,237,1));
      color:#fff;
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 16px 34px rgba(255,47,122,.25);
      flex:0 0 auto;
    }

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

    .to-top{
      position:fixed;
      left:14px;
      bottom:14px;
      z-index:60;
      width:44px; height:44px;
      border-radius:16px;
      border:1px solid rgba(20,22,28,.12);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 44px rgba(16,24,40,.14);
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, opacity .18s ease;
      opacity:0;
      pointer-events:none;
    }
    .to-top.show{
      opacity:1;
      pointer-events:auto;
    }
    .to-top:hover{transform: translateY(-2px); border-color: rgba(255,47,122,.26)}
    .kbd{
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
      border:1px solid rgba(20,22,28,.12);
      background: rgba(255,255,255,.74);
      border-radius:10px;
      padding:4px 8px;
      color: rgba(21,23,28,.82);
      font-weight:900;
      font-size:12px;
      white-space:nowrap;
    }

    .section-divider{
      height:1px;
      background: linear-gradient(90deg, transparent, rgba(20,22,28,.10), transparent);
      margin: 10px 0 0;
    }

    .anchor{
      scroll-margin-top: 86px;
    }
    .sr-only{
      position:absolute;
      width:1px; height:1px;
      padding:0; margin:-1px;
      overflow:hidden; clip:rect(0,0,0,0);
      white-space:nowrap; border:0;
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero-copy{padding:22px 18px}
      .hero-title{font-size:30px}
      .process{grid-template-columns: 1fr}
      .grid-3{grid-template-columns: 1fr; }
      .industry-grid{grid-template-columns: repeat(2, 1fr)}
      .comments{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: 1fr}
      .two-col{grid-template-columns: 1fr}
      .filters{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .form-wrap{grid-template-columns: 1fr}
      .footer-inner{grid-template-columns: 1fr}
      .kpi-grid{grid-template-columns: 1fr 1fr}
      .nav{display:none}
      .burger{display:flex}
      .mobile-panel{display:block}
    }
    @media (prefers-reduced-motion: reduce){
      *{animation:none !important; transition:none !important; scroll-behavior:auto !important}
      .reveal{opacity:1; transform:none}
    }