:root{
      --bg:#fbfaf8;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#5b6677;
      --subtle:#7b8799;
      --border:rgba(15,23,42,.12);
      --shadow:0 18px 50px rgba(16,24,40,.10);
      --shadow2:0 10px 26px rgba(16,24,40,.12);
      --primary:#ff4d6d;
      --primary2:#ff7a18;
      --accent:#136ef5;
      --accent2:#0ea5e9;
      --good:#0ea5e9;
      --warn:#f59e0b;
      --ring:rgba(255,77,109,.28);
      --radius:18px;
      --radius2:26px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB",
        "Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans SC", Arial, sans-serif;
      background: radial-gradient(900px 500px at 12% -5%, rgba(255,77,109,.14), transparent 60%),
                  radial-gradient(650px 420px at 85% 0%, rgba(19,110,245,.13), transparent 55%),
                  linear-gradient(#ffffff, var(--bg));
      color:var(--text);
      overflow-x:hidden;
    }
    a{color:inherit}
    .skip-link{
      position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
    }
    .skip-link:focus{
      left:14px;top:14px;width:auto;height:auto;padding:10px 12px;background:#fff;border:1px solid var(--border);
      border-radius:12px;z-index:9999;
    }

    .container{max-width:var(--container);margin:0 auto;padding:0 18px}
    .site-header{
      position:sticky;top:0;z-index:50;background:rgba(255,255,255,.72);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(15,23,42,.08);
      transition: box-shadow .25s ease, background .25s ease;
    }
    .site-header.scrolled{
      box-shadow:0 10px 30px rgba(16,24,40,.08);
      background:rgba(255,255,255,.86);
    }
    .header-wrap{
      display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 0;
    }
    .brand{display:flex;align-items:center;gap:12px;min-width:260px}
    .brand-link{display:flex;align-items:center;gap:12px;text-decoration:none}
    .ai-page-logo{width:42px;height:auto;display:block}
    .brand-meta{display:flex;flex-direction:column;gap:2px;line-height:1.1}
    .brand-name{font-weight:820;letter-spacing:.2px}
    .brand-sub{font-size:12.5px;color:var(--muted)}
    .nav{display:flex;align-items:center;gap:14px}
    .nav-toggle{
      display:none;
      border:1px solid rgba(15,23,42,.14);
      background:rgba(255,255,255,.7);
      padding:10px 12px;border-radius:14px;
      color:var(--text);
      cursor:pointer;
      align-items:center;gap:10px;
      transition: transform .12s ease, background .2s ease, border-color .2s ease;
    }
    .nav-toggle:active{transform:scale(.98)}
    .nav-toggle-icon{
      width:18px;height:12px;display:inline-block;position:relative;
    }
    .nav-toggle-icon::before,.nav-toggle-icon::after,.nav-toggle-icon{
      background:transparent;
    }
    .nav-toggle-icon::before{
      content:"";position:absolute;left:0;right:0;top:0;height:2px;background:linear-gradient(90deg,var(--primary),var(--primary2));
      border-radius:999px;
      box-shadow:0 5px 0 rgba(31,41,55,.85), 0 10px 0 rgba(31,41,55,.45);
    }
    .nav-toggle-text{font-weight:700}
    .nav-panel{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
    .nav-link{
      text-decoration:none;
      font-weight:650;
      font-size:13.5px;
      color:rgba(31,41,55,.86);
      padding:10px 10px;border-radius:12px;
      transition: background .2s ease, transform .12s ease, color .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{background:rgba(19,110,245,.08);color:rgba(19,110,245,.98)}
    .header-actions{display:flex;align-items:center;gap:10px;justify-content:flex-end;min-width:240px}
    .btn{
      border:1px solid rgba(15,23,42,.14);
      background:#fff;
      color:var(--text);
      border-radius:14px;
      padding:10px 14px;
      font-weight:750;
      cursor:pointer;
      text-decoration:none;
      display:inline-flex;align-items:center;justify-content:center;
      gap:10px;
      transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      user-select:none;
      line-height:1.2;
    }
    .btn:active{transform:scale(.98)}
    .btn-primary{
      border-color:rgba(255,77,109,.35);
      background: linear-gradient(135deg, rgba(255,77,109,1), rgba(255,122,24,1));
      color:#fff;
      box-shadow:0 14px 30px rgba(255,77,109,.22);
    }
    .btn-primary:hover{box-shadow:0 18px 40px rgba(255,77,109,.28)}
    .btn-ghost{
      background:rgba(255,255,255,.62);
      border-color:rgba(15,23,42,.16);
    }
    .btn-ghost:hover{background:rgba(255,255,255,.9);border-color:rgba(19,110,245,.22)}
    .btn-large{padding:12px 16px;border-radius:16px}
    .btn-wide{width:100%}

    .header-underline{
      height:1px;background:linear-gradient(90deg, rgba(255,77,109,.25), rgba(19,110,245,.22));
      opacity:.9;
    }

    .hero{
      padding:36px 0 20px;
      position:relative;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:22px;
      align-items:stretch;
      min-height:420px;
    }
    .hero-copy{padding:10px 0 0}
    .pill-row{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:14px}
    .pill{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 12px;border-radius:999px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.20);
      color:rgba(255,77,109,.98);
      font-weight:760;
      font-size:12.5px;
    }
    .pill-outline{
      background: rgba(19,110,245,.06);
      border-color: rgba(19,110,245,.18);
      color: rgba(19,110,245,.98);
    }
    .hero-title{
      margin:10px 0 10px;
      font-size:40px;
      line-height:1.08;
      letter-spacing:-.6px;
      font-weight:900;
    }
    .hero-desc{
      margin:0;
      color:rgba(31,41,55,.78);
      font-size:15.5px;
      line-height:1.75;
      max-width:620px;
    }
    .hero-cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:18px}
    .hero-quick{
      display:grid;grid-template-columns:1fr 1fr;gap:12px;
      margin-top:18px;
    }
    .quick-item{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:12px 14px;
      box-shadow:0 10px 26px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .quick-item:hover{transform: translateY(-2px);box-shadow:0 14px 34px rgba(16,24,40,.10)}
    .quick-top{display:flex;align-items:center;gap:10px;margin-bottom:6px}
    .quick-dot{width:10px;height:10px;border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--primary2));box-shadow:0 0 0 6px rgba(255,77,109,.12)}
    .quick-label{font-weight:820;font-size:13px;color:rgba(31,41,55,.84)}
    .quick-value{font-size:13.5px;color:rgba(31,41,55,.72);line-height:1.4}

    .hero-visual{
      position:relative;
      border-radius: var(--radius2);
      background: linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,.35));
      border:1px solid rgba(15,23,42,.10);
      overflow:hidden;
      box-shadow: var(--shadow2);
      padding:16px;
      display:flex;
      align-items:stretch;
      justify-content:center;
      min-height:420px;
    }
    .visual-grid{
      position:absolute;inset:-2px;
      background:
        linear-gradient(transparent 23px, rgba(19,110,245,.10) 24px, transparent 24px),
        linear-gradient(90deg, transparent 23px, rgba(255,77,109,.12) 24px, transparent 24px);
      background-size:24px 24px;
      opacity:.55;
      mask-image: radial-gradient(closest-side at 50% 35%, black, transparent 78%);
      pointer-events:none;
    }
    .visual-ring{
      position:absolute;border-radius:50%;
      border:1px solid rgba(255,77,109,.18);
      box-shadow: 0 0 0 1px rgba(255,77,109,.07) inset;
      pointer-events:none;
      opacity:.9;
    }
    .ring-a{width:320px;height:320px;left:-120px;top:-120px;border-color:rgba(255,77,109,.22)}
    .ring-b{width:280px;height:280px;right:-110px;bottom:-120px;border-color:rgba(19,110,245,.22)}
    .visual-stats{
      position:relative;
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
      align-content:start;
      margin-top:10px;
      width:100%;
      max-width:390px;
    }
    .stat-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:16px;
      padding:12px 14px;
      box-shadow:0 10px 26px rgba(16,24,40,.06);
      transition: transform .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .stat-card::before{
      content:"";
      position:absolute;inset:-1px;
      background: radial-gradient(600px 140px at 10% 0%, rgba(255,77,109,.20), transparent 55%),
                  radial-gradient(500px 140px at 90% 0%, rgba(19,110,245,.18), transparent 52%);
      opacity:.65;
      pointer-events:none;
    }
    .stat-card > *{position:relative}
    .stat-card:hover{transform: translateY(-2px);box-shadow:0 16px 40px rgba(16,24,40,.12)}
    .stat-top{display:flex;align-items:center;gap:10px;margin-bottom:4px}
    .stat-icon{
      width:34px;height:34px;border-radius:12px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.20);
      color: rgba(255,77,109,.98);
      font-weight:900;
      flex:0 0 auto;
    }
    .stat-title{font-weight:860;color:rgba(31,41,55,.86)}
    .stat-value{font-size:16px;font-weight:900;letter-spacing:-.2px}
    .stat-note{font-size:12.5px;color:rgba(31,41,55,.62);margin-top:4px}

    .hero-scrollhint{
      position:absolute;left:16px;bottom:16px;
      display:flex;align-items:center;gap:10px;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(15,23,42,.10);
      border-radius:999px;
      padding:10px 12px;
      box-shadow:0 10px 26px rgba(16,24,40,.06);
      color:rgba(31,41,55,.72);
      font-weight:720;
      font-size:12.5px;
      backdrop-filter: blur(8px);
    }
    .scrollhint-dot{
      width:10px;height:10px;border-radius:50%;
      background:linear-gradient(135deg,var(--accent),var(--accent2));
      box-shadow:0 0 0 8px rgba(19,110,245,.12);
      animation: pulse 2.4s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform:scale(1);opacity:.95}
      50%{transform:scale(1.25);opacity:.75}
    }

    .section{padding:34px 0}
    .section-soft{
      background: linear-gradient(180deg, rgba(19,110,245,.05), rgba(255,255,255,0));
      border-top:1px solid rgba(15,23,42,.06);
      border-bottom:1px solid rgba(15,23,42,.06);
    }
    .section-tight{padding:18px 0 34px}
    .section-head{display:flex;flex-direction:column;gap:8px;margin-bottom:18px}
    .section-title{
      margin:0;
      font-size:26px;letter-spacing:-.4px;
      font-weight:920;
    }
    .section-sub{margin:0;color:rgba(31,41,55,.72);line-height:1.7}
    .accent{color:rgba(255,77,109,1);font-weight:900}

    .metrics{
      display:grid;grid-template-columns:repeat(4, 1fr);gap:14px;
    }
    .metric-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:16px 16px 15px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease;
      min-height:140px;
    }
    .metric-card:hover{transform: translateY(-3px);box-shadow:0 20px 50px rgba(16,24,40,.10)}
    .metric-icon{
      width:44px;height:44px;border-radius:16px;display:flex;align-items:center;justify-content:center;
      font-size:20px;
      background: linear-gradient(135deg, rgba(255,77,109,.12), rgba(19,110,245,.10));
      border:1px solid rgba(15,23,42,.10);
      margin-bottom:10px;
    }
    .metric-title{font-weight:900;letter-spacing:-.2px;margin-bottom:6px}
    .metric-desc{color:rgba(31,41,55,.70);line-height:1.6;font-size:13.5px}

    .service-grid{display:grid;grid-template-columns:repeat(2, 1fr);gap:14px}
    .service-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      position:relative;overflow:hidden;
      min-height:300px;
    }
    .service-card::after{
      content:"";
      position:absolute;right:-60px;top:-80px;width:220px;height:220px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,77,109,.18), transparent 60%);
      pointer-events:none;
      opacity:.9;
    }
    .service-card-alt::after{
      background: radial-gradient(circle at 30% 30%, rgba(19,110,245,.18), transparent 60%);
    }
    .service-card:hover{transform: translateY(-3px);box-shadow:0 20px 50px rgba(16,24,40,.10);border-color:rgba(19,110,245,.18)}
    .service-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:8px;position:relative}
    .service-badge{
      padding:7px 10px;border-radius:999px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.22);
      font-weight:860;
      font-size:12.5px;color:rgba(255,77,109,.98);
      white-space:nowrap;
    }
    .service-card-alt .service-badge{
      background: rgba(19,110,245,.08);
      border-color: rgba(19,110,245,.20);
      color: rgba(19,110,245,.98);
    }
    .service-mono{font-weight:860;color:rgba(31,41,55,.60);font-size:12.5px}
    .service-title{margin:6px 0 8px; font-size:18px; letter-spacing:-.25px; font-weight:950;position:relative}
    .service-desc{margin:0 0 12px;color:rgba(31,41,55,.72);line-height:1.7;font-size:13.5px;position:relative}
    .service-list{margin:0;padding-left:18px;color:rgba(31,41,55,.78);display:grid;gap:6px;font-size:13.2px;position:relative}
    .service-tiles{
      display:grid;grid-template-columns:repeat(4, 1fr);gap:14px;margin-top:14px;
    }
    .tile{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:14px 14px 13px;
      box-shadow:0 12px 28px rgba(16,24,40,.05);
      transition: transform .18s ease, box-shadow .18s ease;
      min-height:92px;
    }
    .tile:hover{transform: translateY(-2px);box-shadow:0 18px 44px rgba(16,24,40,.09)}
    .tile-title{font-weight:920;margin-bottom:6px}
    .tile-desc{color:rgba(31,41,55,.70);line-height:1.6;font-size:13.3px}

    .solution-grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:14px}
    .solution-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
      min-height:210px;
      position:relative;overflow:hidden;
    }
    .solution-card::before{
      content:"";position:absolute;inset:-2px;
      background: radial-gradient(600px 180px at 20% 0%, rgba(255,77,109,.18), transparent 55%);
      opacity:.85;pointer-events:none;
    }
    .solution-card-2::before{background: radial-gradient(600px 180px at 20% 0%, rgba(19,110,245,.18), transparent 55%)}
    .solution-card-3::before{background: radial-gradient(600px 180px at 20% 0%, rgba(255,122,24,.20), transparent 55%)}
    .solution-card-4::before{background: radial-gradient(600px 180px at 20% 0%, rgba(14,165,233,.18), transparent 55%)}
    .solution-head{display:flex;align-items:center;gap:10px;position:relative}
    .solution-ico{
      width:42px;height:42px;border-radius:16px;display:flex;align-items:center;justify-content:center;
      background: rgba(255,255,255,.7);
      border:1px solid rgba(15,23,42,.10);
      font-size:18px;
      flex:0 0 auto;
    }
    .solution-title{margin:0;font-size:17px;letter-spacing:-.25px;font-weight:950}
    .solution-desc{position:relative;margin:10px 0 12px;color:rgba(31,41,55,.72);line-height:1.7;font-size:13.5px}
    .solution-tags{display:flex;flex-wrap:wrap;gap:8px;position:relative}
    .tag{
      display:inline-flex;align-items:center;
      padding:7px 10px;border-radius:999px;
      background: rgba(19,110,245,.06);
      border:1px solid rgba(19,110,245,.15);
      font-weight:780;
      font-size:12.3px;color:rgba(19,110,245,.95);
      white-space:nowrap;
    }
    .solution-card .tag{background: rgba(255,77,109,.06);border-color: rgba(255,77,109,.16);color: rgba(255,77,109,.98)}
    .solution-card-2 .tag,.solution-card-4 .tag{background: rgba(19,110,245,.06);border-color: rgba(19,110,245,.16);color: rgba(19,110,245,.98)}
    .solution-card-3 .tag{background: rgba(255,122,24,.08);border-color: rgba(255,122,24,.18);color: rgba(255,122,24,.98)}

    .steps{display:grid;grid-template-columns:repeat(4, 1fr);gap:14px}
    .step{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:20px;
      padding:16px 14px;
      box-shadow:0 12px 28px rgba(16,24,40,.05);
      transition: transform .18s ease, box-shadow .18s ease;
      min-height:180px;
      display:flex;gap:12px;align-items:flex-start;
      position:relative;overflow:hidden;
    }
    .step::after{
      content:"";position:absolute;inset:-2px;
      background: radial-gradient(420px 140px at 20% 0%, rgba(255,77,109,.16), transparent 55%);
      opacity:.8;pointer-events:none;
    }
    .step:nth-child(2)::after{background: radial-gradient(420px 140px at 20% 0%, rgba(19,110,245,.16), transparent 55%)}
    .step:nth-child(3)::after{background: radial-gradient(420px 140px at 20% 0%, rgba(14,165,233,.16), transparent 55%)}
    .step:nth-child(4)::after{background: radial-gradient(420px 140px at 20% 0%, rgba(255,122,24,.18), transparent 55%)}
    .step:hover{transform: translateY(-3px);box-shadow:0 20px 50px rgba(16,24,40,.10)}
    .step-num{
      width:44px;height:44px;border-radius:16px;flex:0 0 auto;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.20);
      display:flex;align-items:center;justify-content:center;
      font-weight:950;
      position:relative;
    }
    .step:nth-child(2) .step-num{background: rgba(19,110,245,.08);border-color: rgba(19,110,245,.20)}
    .step:nth-child(3) .step-num{background: rgba(14,165,233,.08);border-color: rgba(14,165,233,.20)}
    .step:nth-child(4) .step-num{background: rgba(255,122,24,.10);border-color: rgba(255,122,24,.22)}
    .step-body{position:relative}
    .step-title{margin:0 0 8px;font-size:16px;letter-spacing:-.2px;font-weight:950}
    .step-desc{margin:0;color:rgba(31,41,55,.70);line-height:1.65;font-size:13.4px}

    .network-strip{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.45));
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      padding:16px;
      display:flex;gap:16px;align-items:center;justify-content:space-between;flex-wrap:wrap;
    }
    .network-head{min-width:240px}
    .network-title{margin:0;font-size:18px;font-weight:950;letter-spacing:-.2px}
    .network-sub{margin-top:6px;color:rgba(31,41,55,.70);line-height:1.6}
    .network-tags{display:flex;flex-wrap:wrap;gap:10px;justify-content:flex-end}
    .net-item{
      padding:10px 12px;border-radius:999px;
      background: rgba(19,110,245,.06);
      border:1px solid rgba(19,110,245,.15);
      color:rgba(19,110,245,.98);
      font-weight:850;
      font-size:12.5px;
      white-space:nowrap;
    }

    .process-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:14px;align-items:stretch}
    .process-left, .process-right{min-height:320px}
    .process-hero{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      height:100%;
      display:flex;flex-direction:column;gap:12px;
    }
    .process-kicker{
      display:inline-flex;align-items:center;gap:10px;
      width:max-content;
      padding:8px 12px;border-radius:999px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.20);
      color:rgba(255,77,109,.98);
      font-weight:860;font-size:12.5px;
    }
    .process-title{font-size:22px;letter-spacing:-.35px;font-weight:950}
    .process-bullets{margin:0;padding:0;list-style:none;display:grid;gap:10px}
    .process-bullets li{display:flex;gap:10px;align-items:flex-start;color:rgba(31,41,55,.74);line-height:1.6;font-weight:650}
    .bullet-ico{
      width:22px;height:22px;border-radius:8px;display:flex;align-items:center;justify-content:center;
      background: rgba(19,110,245,.10);
      border:1px solid rgba(19,110,245,.20);
      color:rgba(19,110,245,.98);
      flex:0 0 auto;
      font-size:12px;
    }
    .process-actions{margin-top:auto;display:flex;gap:12px;flex-wrap:wrap}
    .timeline{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      height:100%;
      display:grid;gap:12px;
    }
    .tl-item{
      padding:12px 14px;border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .tl-item:hover{transform: translateY(-2px);box-shadow:0 18px 44px rgba(16,24,40,.10)}
    .tl-time{font-weight:950;margin-bottom:6px}
    .tl-text{color:rgba(31,41,55,.70);line-height:1.7;font-size:13.5px}
    .small-callout{
      margin-top:12px;
      padding:14px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.45));
      box-shadow:0 12px 28px rgba(16,24,40,.06);
    }
    .small-callout-title{font-weight:950;margin-bottom:6px}
    .small-callout-desc{color:rgba(31,41,55,.70);line-height:1.7;font-size:13.5px}

    .case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .case-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      min-height:270px;
      transition: transform .18s ease, box-shadow .18s ease;
      position:relative;overflow:hidden;
    }
    .case-card::after{
      content:"";position:absolute;right:-90px;top:-120px;width:260px;height:260px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,77,109,.18), transparent 60%);
      pointer-events:none;opacity:.9;
    }
    .case-card-2::after{background: radial-gradient(circle at 30% 30%, rgba(19,110,245,.18), transparent 60%)}
    .case-card-3::after{background: radial-gradient(circle at 30% 30%, rgba(255,122,24,.20), transparent 60%)}
    .case-card:hover{transform: translateY(-3px);box-shadow:0 20px 50px rgba(16,24,40,.10)}
    .case-top{display:flex;justify-content:space-between;gap:10px;position:relative}
    .case-type{
      padding:8px 10px;border-radius:999px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.20);
      font-weight:860;font-size:12.5px;color:rgba(255,77,109,.98);
      white-space:nowrap;
    }
    .case-card-2 .case-type{background: rgba(19,110,245,.08);border-color: rgba(19,110,245,.20);color: rgba(19,110,245,.98)}
    .case-card-3 .case-type{background: rgba(255,122,24,.10);border-color: rgba(255,122,24,.22);color: rgba(255,122,24,.98)}
    .case-score{
      font-weight:850;color:rgba(31,41,55,.60);font-size:12.5px;
    }
    .case-title{margin:10px 0 8px;font-size:18px;font-weight:980;letter-spacing:-.25px;position:relative}
    .case-desc{margin:0 0 14px;color:rgba(31,41,55,.70);line-height:1.7;font-size:13.5px;position:relative}
    .case-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px;position:relative}
    .meta-chip{
      padding:7px 10px;border-radius:999px;
      background: rgba(19,110,245,.06);
      border:1px solid rgba(19,110,245,.15);
      color: rgba(19,110,245,.98);
      font-weight:820;font-size:12.2px;
    }
    .case-card-2 .meta-chip{background: rgba(255,77,109,.06);border-color: rgba(255,77,109,.16);color: rgba(255,77,109,.98)}
    .case-card-3 .meta-chip{background: rgba(14,165,233,.06);border-color: rgba(14,165,233,.16);color: rgba(14,165,233,.98)}
    .case-link{
      position:relative;
      display:inline-flex;
      font-weight:900;
      color:rgba(19,110,245,.98);
      text-decoration:none;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(19,110,245,.18);
      background: rgba(19,110,245,.06);
      transition: transform .18s ease, background .2s ease, border-color .2s ease;
    }
    .case-link:hover{transform: translateY(-2px);background: rgba(19,110,245,.10);border-color: rgba(19,110,245,.28)}
    .case-articles{margin-top:14px;background: rgba(255,255,255,.60);border:1px solid rgba(15,23,42,.10);border-radius:22px;box-shadow:0 12px 28px rgba(16,24,40,.05);padding:16px}
    .article-head{display:flex;align-items:baseline;justify-content:space-between;gap:10px;margin-bottom:10px}
    .article-title{font-weight:980;letter-spacing:-.25px}
    .article-hint{color:rgba(31,41,55,.65);font-size:13px}
    .article-list{display:grid;gap:10px}
    .article-item{
      display:flex;align-items:center;gap:10px;
      padding:12px 12px;border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      text-decoration:none;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .article-item:hover{transform: translateY(-2px);box-shadow:0 18px 44px rgba(16,24,40,.10);border-color: rgba(19,110,245,.18)}
    .article-dot{width:10px;height:10px;border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--primary2));box-shadow:0 0 0 8px rgba(255,77,109,.10)}
    .article-text{font-weight:800;color:rgba(31,41,55,.76);line-height:1.5;font-size:13.5px}

    .compare-grid{display:grid;grid-template-columns:.78fr 1.22fr;gap:14px;align-items:start}
    .compare-score{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
    }
    .score-ring{
      width:220px;height:220px;margin:4px auto 10px;
      border-radius:50%;
      background: conic-gradient(from 210deg, rgba(255,77,109,1), rgba(255,122,24,1), rgba(19,110,245,1));
      display:flex;align-items:center;justify-content:center;
      position:relative;
      box-shadow:0 18px 50px rgba(255,77,109,.18);
    }
    .score-ring-inner{
      width:168px;height:168px;border-radius:50%;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(15,23,42,.10);
      display:flex;flex-direction:column;align-items:center;justify-content:center;
      gap:2px;
    }
    .score-number{font-size:48px;font-weight:980;letter-spacing:-1px}
    .score-outof{font-weight:900;color:rgba(31,41,55,.60)}
    .score-stars{display:flex;justify-content:center;gap:6px;margin-top:6px}
    .star{color:rgba(255,77,109,1);font-size:18px}
    .star-dim{color:rgba(255,77,109,.25)}
    .score-desc{margin:10px 0 14px;color:rgba(31,41,55,.70);line-height:1.7;font-weight:650}
    .btn-wide{margin-top:0}
    .compare-table-wrap{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
    }
    .table-title{font-weight:980;letter-spacing:-.25px;margin-bottom:10px}
    .table-scroll{overflow:auto;border-radius:18px;border:1px solid rgba(15,23,42,.08);background: rgba(255,255,255,.55)}
    table{width:100%;border-collapse:collapse;min-width:680px}
    th,td{padding:12px 12px;border-bottom:1px solid rgba(15,23,42,.08);text-align:left;vertical-align:top}
    th{background: rgba(19,110,245,.06);color:rgba(31,41,55,.86);font-weight:950}
    td{color:rgba(31,41,55,.74);font-weight:650}
    tr:last-child td{border-bottom:none}
    .good{display:inline-flex;align-items:center;gap:8px;font-weight:950;color:rgba(14,165,233,1)}
    .warn{display:inline-flex;align-items:center;gap:8px;font-weight:950;color:rgba(245,158,11,1)}
    .table-footer-note{margin-top:10px;color:rgba(31,41,55,.62);font-size:12.8px;line-height:1.6}

    .match-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:14px}
    .match-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:18px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      height:100%;
    }
    .match-kicker{display:inline-flex;align-items:center;gap:10px;padding:8px 12px;border-radius:999px;background: rgba(19,110,245,.08);border:1px solid rgba(19,110,245,.18);color: rgba(19,110,245,.98);font-weight:860;font-size:12.5px}
    .match-title{margin:12px 0 10px;font-weight:990;font-size:22px;letter-spacing:-.35px}
    .match-list{
      display:flex;flex-wrap:wrap;gap:10px;margin-top:10px
    }
    .match-pill{
      padding:10px 12px;border-radius:999px;
      background: rgba(255,77,109,.06);
      border:1px solid rgba(255,77,109,.16);
      color: rgba(255,77,109,.98);
      font-weight:850;font-size:12.8px;
    }
    .match-foot{margin-top:14px;padding-top:12px;border-top:1px dashed rgba(15,23,42,.12);color:rgba(31,41,55,.70);line-height:1.6}
    .strong{color:rgba(31,41,55,.92);font-weight:900}
    .muted{color:rgba(31,41,55,.62)}
    .match-right{display:grid;grid-template-columns:1.1fr .9fr;gap:14px;align-items:start}
    .form-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
    }
    .form-head{margin-bottom:12px}
    .form-title{font-weight:990;font-size:18px;letter-spacing:-.25px}
    .form-sub{color:rgba(31,41,55,.66);margin-top:6px;line-height:1.6;font-weight:650;font-size:13px}
    .form-grid{
      display:grid;grid-template-columns:1fr 1fr;gap:12px;
    }
    .field{display:flex;flex-direction:column;gap:7px}
    .label-text{font-weight:850;color:rgba(31,41,55,.78);font-size:13px}
    input,select,textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.82);
      padding:12px 12px;
      color:var(--text);
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease, transform .12s ease;
      font-weight:650;
      font-size:14px;
    }
    textarea{resize:vertical;min-height:120px;max-height:260px}
    input:focus,select:focus,textarea:focus{
      border-color: rgba(19,110,245,.45);
      box-shadow:0 0 0 4px rgba(19,110,245,.12);
    }
    .field-textarea textarea{min-height:140px}
    .form-actions{margin-top:14px;display:flex;flex-direction:column;gap:10px}
    .form-footnote{color:rgba(31,41,55,.60);font-size:12.8px;line-height:1.6}
    .form-side{display:flex;flex-direction:column;gap:14px}
    .side-card{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.05);
    }
    .side-title{font-weight:980;letter-spacing:-.25px;margin-bottom:8px}
    .side-desc{color:rgba(31,41,55,.70);line-height:1.7;font-weight:650;font-size:13.4px;margin-bottom:12px}
    .side-qr{
      width:148px;height:148px;border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.8);
      padding:10px;display:flex;align-items:center;justify-content:center;
      margin:0 auto 10px;
      overflow:hidden;
    }
    .side-qr img{width:100%;height:auto;display:block}
    .side-row{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;color:rgba(31,41,55,.72);font-weight:750}
    .dot-sep{opacity:.5}
    .side-link{text-decoration:none;font-weight:900;color:rgba(19,110,245,.98)}
    .tag-cloud{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.05);
    }
    .cloud-title{font-weight:980;margin-bottom:10px}
    .cloud-tags{display:flex;flex-wrap:wrap;gap:10px}
    .cloud-tag{
      text-decoration:none;
      padding:9px 12px;border-radius:999px;
      background: rgba(19,110,245,.06);
      border:1px solid rgba(19,110,245,.15);
      color: rgba(19,110,245,.98);
      font-weight:850;
      font-size:12.8px;
      transition: transform .18s ease, background .2s ease, border-color .2s ease;
    }
    .cloud-tag:hover{transform: translateY(-2px);background: rgba(19,110,245,.10);border-color: rgba(19,110,245,.24)}

    .token-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .token-card, .price-table{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
    }
    .token-title{font-weight:990;letter-spacing:-.25px;margin-bottom:10px}
    .token-steps{margin:0;padding-left:18px;display:grid;gap:10px;color:rgba(31,41,55,.72);font-weight:700}
    .token-steps li{line-height:1.6}
    .li-idx{
      display:inline-flex;align-items:center;justify-content:center;
      width:24px;height:24px;border-radius:10px;margin-right:10px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.20);
      color: rgba(255,77,109,.98);
      font-weight:950;font-size:12px;
      vertical-align:middle;
    }
    .token-note{
      margin-top:14px;
      padding:12px 12px;
      border-radius:18px;
      border:1px dashed rgba(15,23,42,.16);
      background: rgba(255,255,255,.55);
      color:rgba(31,41,55,.70);
      line-height:1.6;
      font-weight:650;
      display:flex;gap:10px;align-items:flex-start;
    }
    .note-ico{
      width:28px;height:28px;border-radius:12px;display:flex;align-items:center;justify-content:center;
      background: rgba(19,110,245,.08);
      border:1px solid rgba(19,110,245,.20);
      color: rgba(19,110,245,.98);
      font-weight:950;
      flex:0 0 auto;
    }

    .price-head{margin-bottom:12px}
    .price-title{font-weight:990;letter-spacing:-.25px}
    .price-sub{margin-top:6px;color:rgba(31,41,55,.66);line-height:1.6;font-weight:650;font-size:13px}
    .price-cards{display:grid;grid-template-columns:1fr;gap:12px;margin-top:10px}
    .price-item{
      padding:14px;border-radius:18px;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(15,23,42,.08);
    }
    .price-item-2{border-color: rgba(19,110,245,.18)}
    .price-item-3{border-color: rgba(255,122,24,.18)}
    .price-label{font-weight:980;margin-bottom:6px}
    .price-value{font-size:16px;font-weight:980;letter-spacing:-.2px;margin-bottom:6px}
    .price-memo{color:rgba(31,41,55,.68);line-height:1.6;font-weight:650;font-size:13.3px}
    .price-compare{margin-top:12px;padding-top:12px;border-top:1px solid rgba(15,23,42,.08)}
    .mini-table-title{font-weight:980;margin-bottom:10px}
    .mini-list{display:grid;gap:10px}
    .mini-row{
      display:flex;gap:12px;align-items:flex-start;justify-content:space-between;
      padding:10px 12px;border-radius:16px;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(15,23,42,.08);
    }
    .mini-key{font-weight:900;color:rgba(31,41,55,.78)}
    .mini-val{color:rgba(31,41,55,.70);line-height:1.6;font-weight:700}

    .training-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .training-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      height:100%;
    }
    .training-kicker{
      display:inline-flex;align-items:center;gap:10px;
      padding:8px 12px;border-radius:999px;
      background: rgba(255,77,109,.08);
      border:1px solid rgba(255,77,109,.18);
      color: rgba(255,77,109,.98);
      font-weight:860;font-size:12.5px;
      margin-bottom:10px;
    }
    .training-title{font-size:22px;letter-spacing:-.35px;font-weight:990;margin-bottom:14px}
    .training-list{display:grid;gap:12px;margin-bottom:14px}
    .training-item{
      padding:12px 12px;border-radius:18px;
      background: rgba(255,255,255,.55);
      border:1px solid rgba(15,23,42,.08);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .training-item:hover{transform: translateY(-2px);box-shadow:0 18px 44px rgba(16,24,40,.10)}
    .ti-title{font-weight:980;margin-bottom:6px}
    .ti-desc{color:rgba(31,41,55,.70);line-height:1.6;font-weight:700;font-size:13.4px}
    .training-actions{display:flex;gap:12px;flex-wrap:wrap}

    .cert-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      height:100%;
      display:flex;flex-direction:column;
    }
    .cert-top{display:flex;gap:12px;align-items:flex-start;margin-bottom:10px}
    .cert-ico{
      width:46px;height:46px;border-radius:18px;display:flex;align-items:center;justify-content:center;
      background: rgba(19,110,245,.08);
      border:1px solid rgba(19,110,245,.20);
      color: rgba(19,110,245,.98);
      font-weight:950;
      flex:0 0 auto;
      font-size:18px;
    }
    .cert-title{font-weight:990;letter-spacing:-.25px;font-size:18px}
    .cert-sub{margin-top:6px;color:rgba(31,41,55,.66);line-height:1.6;font-weight:650;font-size:13px}
    .cert-list{margin:8px 0 14px;padding-left:18px;color:rgba(31,41,55,.74);line-height:1.7;font-weight:700;display:grid;gap:8px}
    .cert-divider{height:1px;background:rgba(15,23,42,.08);margin:6px 0 12px}
    .cert-rail{display:grid;gap:12px}
    .rail-item{padding:12px;border-radius:18px;background: rgba(255,255,255,.55);border:1px solid rgba(15,23,42,.08)}
    .rail-k{font-weight:980;margin-bottom:6px}
    .rail-v{color:rgba(31,41,55,.70);line-height:1.6;font-weight:700;font-size:13.4px}
    .cert-cta{margin-top:auto;padding-top:12px}
    .cert-cta .btn{margin-top:10px}

    .help-grid{display:grid;grid-template-columns: .85fr 1.15fr;gap:14px}
    .help-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      height:100%;
    }
    .help-title{font-weight:990;letter-spacing:-.25px;margin-bottom:12px}
    .help-items{display:grid;gap:10px}
    .help-item{
      text-decoration:none;
      display:flex;align-items:center;justify-content:space-between;gap:10px;
      padding:12px 12px;border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .help-item:hover{transform: translateY(-2px);box-shadow:0 18px 44px rgba(16,24,40,.10);border-color: rgba(19,110,245,.18)}
    .help-ico{
      width:38px;height:38px;border-radius:16px;
      background: rgba(255,77,109,.08);
      border:1px solid rgba(255,77,109,.18);
      display:flex;align-items:center;justify-content:center;
      font-weight:980;color: rgba(255,77,109,.98);
      flex:0 0 auto;
    }
    .help-text{font-weight:900;color:rgba(31,41,55,.78);flex:1}
    .help-arrow{color:rgba(31,41,55,.55);font-weight:950}
    .help-foot{margin-top:14px}
    .two-col{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .wiki-card, .news-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.05);
      height:100%;
    }
    .wiki-head,.news-head{margin-bottom:12px}
    .wiki-title,.news-title{font-weight:990;letter-spacing:-.25px;font-size:18px}
    .wiki-sub,.news-sub{margin-top:6px;color:rgba(31,41,55,.66);line-height:1.6;font-weight:650;font-size:13px}
    .wiki-list{display:grid;gap:10px}
    .wiki-row{
      padding:12px 12px;border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      display:flex;justify-content:space-between;gap:12px;align-items:flex-start;
    }
    .wiki-k{font-weight:980;color:rgba(31,41,55,.82)}
    .wiki-v{color:rgba(31,41,55,.70);line-height:1.6;font-weight:700;font-size:13.4px;text-align:right}
    .wiki-link{display:inline-flex;text-decoration:none;margin-top:12px;font-weight:950;color:rgba(19,110,245,.98);padding:10px 12px;border-radius:14px;border:1px solid rgba(19,110,245,.18);background: rgba(19,110,245,.06)}
    .news-list{display:grid;gap:10px}
    .news-item{
      text-decoration:none;
      padding:12px 12px;border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      display:flex;gap:12px;align-items:flex-start;justify-content:space-between;
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .news-item:hover{transform: translateY(-2px);box-shadow:0 18px 44px rgba(16,24,40,.10);border-color: rgba(255,77,109,.18)}
    .news-date{font-weight:950;color:rgba(255,77,109,.98);flex:0 0 auto}
    .news-text{color:rgba(31,41,55,.72);line-height:1.6;font-weight:780;font-size:13.4px;text-align:left}
    .partner-row{
      margin-top:14px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.05);
    }
    .partner-title{font-weight:990;letter-spacing:-.25px;margin-bottom:10px}
    .partner-tags{display:flex;flex-wrap:wrap;gap:10px}
    .tag-cloud .cloud-tag{display:inline-flex}

    .faq-grid{display:grid;grid-template-columns: 1.15fr .85fr;gap:14px}
    .faq-list{background: rgba(255,255,255,.72);border:1px solid rgba(15,23,42,.10);border-radius:22px;padding:12px;box-shadow:0 12px 28px rgba(16,24,40,.06)}
    .faq-item{border-bottom:1px solid rgba(15,23,42,.08)}
    .faq-item:last-child{border-bottom:none}
    .faq-q{
      width:100%;
      text-align:left;
      background:transparent;
      border:none;
      padding:14px 10px;
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      cursor:pointer;
      font-weight:950;
      color:rgba(31,41,55,.82);
      letter-spacing:-.1px;
    }
    .faq-icon{
      width:40px;height:40px;border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.55);
      position:relative;flex:0 0 auto;
    }
    .faq-icon::before, .faq-icon::after{
      content:"";position:absolute;left:50%;top:50%;
      width:16px;height:2px;background: rgba(31,41,55,.55);
      transform: translate(-50%,-50%);
      border-radius:99px;
      transition: transform .2s ease, opacity .2s ease;
    }
    .faq-icon::after{transform: translate(-50%,-50%) rotate(90deg);opacity:1}
    .faq-q[aria-expanded="true"] .faq-icon::after{opacity:0;transform: translate(-50%,-50%) rotate(90deg)}
    .faq-a{
      padding:0 10px 14px 10px;
      color:rgba(31,41,55,.70);
      line-height:1.75;
      font-weight:700;
      font-size:13.8px;
    }
    .faq-side-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      height:100%;
      display:flex;flex-direction:column;gap:12px;
    }
    .faq-side-title{font-weight:990;font-size:18px;letter-spacing:-.25px}
    .faq-side-desc{color:rgba(31,41,55,.70);line-height:1.7;font-weight:700}
    .faq-side-actions{display:grid;gap:10px;margin-top:auto}
    .faq-side-divider{height:1px;background:rgba(15,23,42,.08)}
    .faq-side-foot{display:grid;gap:6px}
    .small-k{font-weight:980}
    .small-v{color:rgba(31,41,55,.70);line-height:1.6;font-weight:700;font-size:13.4px}

    .contact-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:14px;align-items:start}
    .contact-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
    }
    .contact-title{font-weight:990;letter-spacing:-.25px;font-size:18px;margin-bottom:10px}
    .contact-row{display:flex;gap:12px;justify-content:space-between;align-items:flex-start;padding:10px 0;border-bottom:1px solid rgba(15,23,42,.08)}
    .contact-row:last-of-type{border-bottom:none}
    .contact-k{color:rgba(31,41,55,.62);font-weight:800}
    .contact-v{font-weight:900;color:rgba(31,41,55,.78);text-align:right}
    .contact-link{color:rgba(19,110,245,.98);text-decoration:none}
    .contact-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
    .contact-quick{margin-top:14px}
    .quick-card{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.05);
    }
    .quick-card-title{font-weight:990;margin-bottom:10px}
    .quick-bullets{margin:0;padding-left:18px;color:rgba(31,41,55,.72);line-height:1.8;font-weight:700;display:grid;gap:6px}
    .contact-right{}
    .contact-form-mini{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
    }
    .mini-title{font-weight:990;letter-spacing:-.25px;font-size:18px;margin-bottom:8px}
    .mini-desc{color:rgba(31,41,55,.70);line-height:1.7;font-weight:700;margin-bottom:12px}
    .mini-actions{display:grid;gap:10px}
    .mini-divider{height:1px;background:rgba(15,23,42,.08);margin:14px 0}
    .mini-qr{
      width:170px;height:170px;margin:0 auto;
      border-radius:22px;border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.85);
      padding:12px;display:flex;align-items:center;justify-content:center;
      overflow:hidden;
    }
    .mini-qr img{width:100%;height:auto;display:block}
    .mini-muted{color:rgba(31,41,55,.62);line-height:1.6;font-weight:700;text-align:center;margin-top:10px;font-size:13.4px}

    .links-strip{
      margin-top:14px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.05);
    }
    .links-head{font-weight:990;letter-spacing:-.25px;margin-bottom:10px}
    .links-list{
      display:flex;flex-wrap:wrap;gap:10px;
    }
    .links-list a{
      text-decoration:none;
      padding:10px 12px;border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.55);
      font-weight:850;color:rgba(31,41,55,.78);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .links-list a:hover{transform: translateY(-2px);box-shadow:0 18px 44px rgba(16,24,40,.10);border-color: rgba(19,110,245,.18)}

    .agent-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .agent-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      min-height:260px;
    }
    .agent-title{font-weight:990;letter-spacing:-.25px;font-size:18px;margin-bottom:12px}
    .agent-list{margin:0;padding-left:18px;color:rgba(31,41,55,.72);line-height:1.85;font-weight:700;display:grid;gap:8px}
    .agent-card-2{
      background: linear-gradient(135deg, rgba(255,255,255,.75), rgba(255,255,255,.45));
    }
    .agent-subtitle{color:rgba(31,41,55,.70);font-weight:750;line-height:1.7;margin-bottom:12px}
    .agent-tags{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:14px}
    .agent-cta{display:grid;gap:10px}

    .review-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:14px}
    .review-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px;
      box-shadow:0 12px 28px rgba(16,24,40,.06);
      min-height:220px;
      transition: transform .18s ease, box-shadow .18s ease;
      position:relative;overflow:hidden;
    }
    .review-card::after{
      content:"";position:absolute;right:-80px;top:-130px;width:240px;height:240px;border-radius:50%;
      background: radial-gradient(circle at 30% 30%, rgba(255,77,109,.16), transparent 60%);
      opacity:.9;pointer-events:none;
    }
    .review-card-2::after{background: radial-gradient(circle at 30% 30%, rgba(19,110,245,.16), transparent 60%)}
    .review-card:hover{transform: translateY(-3px);box-shadow:0 20px 50px rgba(16,24,40,.10)}
    .review-top{display:flex;align-items:flex-start;gap:12px;position:relative}
    .review-avatar{
      width:46px;height:46px;border-radius:18px;
      background: rgba(255,77,109,.10);
      border:1px solid rgba(255,77,109,.20);
      display:flex;align-items:center;justify-content:center;
      font-weight:980;color: rgba(255,77,109,.98);
      flex:0 0 auto;
      font-size:16px;
    }
    .review-card-2 .review-avatar{background: rgba(19,110,245,.08);border-color: rgba(19,110,245,.20);color: rgba(19,110,245,.98)}
    .review-name{font-weight:980;letter-spacing:-.2px}
    .review-role{color:rgba(31,41,55,.62);font-weight:750;margin-top:4px;font-size:13px}
    .review-text{position:relative;margin-top:12px;color:rgba(31,41,55,.72);line-height:1.75;font-weight:700;font-size:13.8px}
    .review-tagrow{position:relative;margin-top:14px;display:flex;flex-wrap:wrap;gap:8px}
    .review-tag{
      padding:8px 10px;border-radius:999px;
      background: rgba(19,110,245,.06);
      border:1px solid rgba(19,110,245,.15);
      color: rgba(19,110,245,.98);
      font-weight:850;font-size:12.4px;
    }
    .review-card-2 .review-tag{background: rgba(255,77,109,.06);border-color: rgba(255,77,109,.16);color: rgba(255,77,109,.98)}

    .cta-band{
      background: linear-gradient(135deg, rgba(255,77,109,.12), rgba(19,110,245,.10));
      border:1px solid rgba(15,23,42,.10);
      border-radius:26px;
      padding:18px;
      box-shadow:0 18px 50px rgba(16,24,40,.08);
      display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
    }
    .cta-kicker{
      display:inline-flex;align-items:center;gap:10px;
      padding:8px 12px;border-radius:999px;
      background: rgba(255,255,255,.66);
      border:1px solid rgba(15,23,42,.10);
      font-weight:900;color:rgba(31,41,55,.78);
      margin-bottom:10px;
    }
    .cta-title{font-weight:990;font-size:22px;letter-spacing:-.35px;margin-bottom:8px}
    .cta-sub{color:rgba(31,41,55,.70);line-height:1.7;font-weight:700}
    .cta-right{display:flex;gap:12px;flex-wrap:wrap}

    .site-footer{
      background: linear-gradient(180deg, rgba(17,24,39,.02), rgba(17,24,39,.06));
      border-top:1px solid rgba(15,23,42,.08);
      padding:26px 0 34px;
    }
    .footer-inner{display:flex;flex-direction:column;gap:16px}
    .footer-top{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
    .footer-brand{display:flex;gap:12px;align-items:flex-start;min-width:280px}
    .footer-logo-link{text-decoration:none}
    .footer-logo{width:42px;height:auto;display:block}
    .footer-brand-text{display:flex;flex-direction:column;gap:6px}
    .footer-name{font-weight:980;letter-spacing:-.2px}
    .footer-desc{color:rgba(31,41,55,.66);line-height:1.6;font-weight:700;font-size:13.4px;max-width:420px}
    .footer-links{display:flex;gap:16px;flex-wrap:wrap}
    .footer-col{min-width:160px}
    .footer-col-title{font-weight:990;margin-bottom:10px}
    .footer-link{
      display:block;
      text-decoration:none;
      color:rgba(31,41,55,.72);
      padding:8px 0;
      font-weight:750;
      line-height:1.4;
    }
    .footer-link:hover{color:rgba(19,110,245,.98)}
    .footer-muted{color:rgba(31,41,55,.55)}
    .footer-bottom{
      padding-top:14px;border-top:1px solid rgba(15,23,42,.08);
      display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap;
      color:rgba(31,41,55,.62);
      font-weight:750;
    }
    .footer-mini{margin-left:14px;text-decoration:none;color:rgba(31,41,55,.68);font-weight:850}
    .footer-mini:hover{color:rgba(19,110,245,.98)}

    .fab{
      position:fixed;right:14px;bottom:14px;z-index:60;
      background: linear-gradient(135deg, rgba(255,77,109,1), rgba(255,122,24,1));
      color:#fff;
      border:none;
      border-radius:18px;
      padding:12px 14px;
      box-shadow:0 18px 50px rgba(255,77,109,.28);
      cursor:pointer;
      display:flex;align-items:center;gap:10px;
      transition: transform .15s ease, box-shadow .2s ease;
      user-select:none;
    }
    .fab:active{transform:scale(.98)}
    .fab:hover{box-shadow:0 22px 70px rgba(255,77,109,.34)}
    .fab-ico{width:26px;height:26px;border-radius:12px;background: rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center;font-weight:950}
    .fab-text{font-weight:950}
    .kefu-pop{
      position:fixed;inset:0;z-index:80;
      background: rgba(17,24,39,.45);
      display:flex;align-items:center;justify-content:center;
      padding:18px;
    }
    .kefu-pop-inner{
      width:min(520px, 100%);
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255,255,255,.5);
      border-radius:26px;
      box-shadow: 0 30px 90px rgba(0,0,0,.25);
      overflow:hidden;
    }
    .kefu-head{
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      padding:14px 16px;border-bottom:1px solid rgba(15,23,42,.10);
      background: linear-gradient(135deg, rgba(255,77,109,.14), rgba(19,110,245,.12));
    }
    .kefu-title{font-weight:990;letter-spacing:-.25px}
    .kefu-close{
      width:40px;height:40px;border-radius:16px;border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.8);cursor:pointer;font-size:22px;line-height:1;
    }
    .kefu-body{padding:16px}
    .kefu-qr{
      width:200px;height:200px;margin:0 auto;
      border-radius:24px;border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.9);
      padding:12px;display:flex;align-items:center;justify-content:center;
    }
    .kefu-qr img{width:100%;height:auto;display:block}
    .kefu-hint{margin-top:12px;color:rgba(31,41,55,.70);line-height:1.7;font-weight:750;text-align:center}
    .kefu-actions{padding:0 16px 16px;display:grid;grid-template-columns:1fr 1fr;gap:10px}

    .modal{
      position:fixed;inset:0;z-index:90;
      background: rgba(17,24,39,.45);
      display:flex;align-items:center;justify-content:center;
      padding:18px;
    }
    .modal-backdrop{position:absolute;inset:0}
    .modal-panel{
      position:relative;
      width:min(980px, 100%);
      background: rgba(255,255,255,.92);
      border:1px solid rgba(255,255,255,.5);
      border-radius:26px;
      box-shadow: 0 30px 90px rgba(0,0,0,.25);
      overflow:hidden;
    }
    .modal-head{
      padding:14px 16px;
      border-bottom:1px solid rgba(15,23,42,.10);
      display:flex;justify-content:space-between;gap:12px;align-items:flex-start;
      background: linear-gradient(135deg, rgba(255,77,109,.16), rgba(19,110,245,.12));
    }
    .modal-title{font-weight:990;letter-spacing:-.25px;font-size:18px}
    .modal-sub{margin-top:6px;color:rgba(31,41,55,.66);font-weight:750;line-height:1.6}
    .modal-close{
      width:44px;height:44px;border-radius:18px;border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.85);
      cursor:pointer;font-size:22px;line-height:1;
    }
    .modal-body{padding:16px}
    .modal-grid{display:grid;grid-template-columns: .95fr 1.05fr;gap:14px;align-items:start}
    .modal-info{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:14px;
      box-shadow:0 12px 28px rgba(16,24,40,.05);
    }
    .info-row{display:flex;gap:12px;align-items:flex-start;padding:12px 12px;border-radius:18px;border:1px solid rgba(15,23,42,.08);background: rgba(255,255,255,.55);margin-bottom:10px}
    .info-ico{
      width:44px;height:44px;border-radius:18px;
      background: rgba(19,110,245,.08);
      border:1px solid rgba(19,110,245,.20);
      display:flex;align-items:center;justify-content:center;
      color: rgba(19,110,245,.98);
      font-weight:980;flex:0 0 auto;
      font-size:18px;
    }
    .info-title{font-weight:990;margin-bottom:6px}
    .info-desc{color:rgba(31,41,55,.70);line-height:1.6;font-weight:720;font-size:13.4px}
    .modal-links{display:grid;gap:10px;margin-top:12px}
    .mini-link{
      text-decoration:none;
      padding:12px 12px;border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      font-weight:920;color:rgba(31,41,55,.78);
      transition: transform .18s ease, box-shadow .18s ease, border-color .2s ease;
    }
    .mini-link:hover{transform: translateY(-2px);box-shadow:0 18px 44px rgba(16,24,40,.10);border-color: rgba(19,110,245,.18)}
    .modal-form .form-card{box-shadow:none;border:none;background:transparent;padding:0}

    body.modal-open{overflow:hidden}

    .backtop{position:fixed;left:14px;bottom:14px;z-index:60}
    .backtop-btn{
      width:46px;height:46px;border-radius:18px;border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.78);
      cursor:pointer;
      box-shadow:0 14px 30px rgba(16,24,40,.10);
      font-weight:990;
      color: rgba(31,41,55,.78);
      transition: transform .15s ease, background .2s ease;
    }
    .backtop-btn:active{transform:scale(.98)}
    .backtop-btn:hover{background: rgba(255,255,255,.95)}

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.in-view{
      opacity:1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce){
      .reveal{transition:none}
      .reveal.in-view{transform:none}
      .scrollhint-dot{animation:none}
      *{scroll-behavior:auto !important}
    }

    @media (max-width: 980px){
      .hero-inner{grid-template-columns:1fr;min-height:auto}
      .hero-visual{min-height:360px}
      .metrics{grid-template-columns:repeat(2, 1fr)}
      .service-grid{grid-template-columns:1fr}
      .service-tiles{grid-template-columns:repeat(2,1fr)}
      .solution-grid{grid-template-columns:repeat(2,1fr)}
      .steps{grid-template-columns:repeat(2, 1fr)}
      .process-grid{grid-template-columns:1fr}
      .case-grid{grid-template-columns:1fr}
      .compare-grid{grid-template-columns:1fr}
      .match-grid{grid-template-columns:1fr}
      .match-right{grid-template-columns:1fr}
      .token-grid{grid-template-columns:1fr}
      .training-grid{grid-template-columns:1fr}
      .help-grid{grid-template-columns:1fr}
      .two-col{grid-template-columns:1fr}
      .faq-grid{grid-template-columns:1fr}
      .contact-grid{grid-template-columns:1fr}
      .agent-grid{grid-template-columns:1fr}
      .review-grid{grid-template-columns:1fr}
      .modal-grid{grid-template-columns:1fr}
      .kefu-actions{grid-template-columns:1fr}
      .backtop{display:none}
      table{min-width:620px}
    }

    @media (max-width: 860px){
      .nav-toggle{display:flex}
      .nav-panel{
        position:absolute;
        right:18px;top:64px;
        width:min(360px, calc(100% - 36px));
        background: rgba(255,255,255,.92);
        border:1px solid rgba(15,23,42,.10);
        border-radius:22px;
        padding:12px;
        box-shadow:0 30px 90px rgba(0,0,0,.18);
        display:none;
      }
      .nav-panel.open{display:flex;flex-direction:column;align-items:flex-start;gap:6px}
      .nav-link{width:100%}
      .header-actions .btn-ghost{display:none}
      .header-actions{min-width:auto}
      .brand{min-width:auto}
      .hero-title{font-size:30px}
      .hero-quick{grid-template-columns:1fr}
      .service-tiles{grid-template-columns:1fr}
    }