:root{
      --bg0:#f7fbfb;
      --bg1:#ffffff;
      --text:#1f2937;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(15, 23, 42, .10);
      --line2:rgba(15, 23, 42, .14);
      --brand1:#0ea5a6;
      --brand2:#22c55e;
      --brand3:#06b6d4;
      --teal:#0ea5a6;
      --teal2:#22d3ee;
      --cyan:#06b6d4;
      --indigo:#6366f1;
      --shadow: 0 10px 30px rgba(2, 132, 199, .12);
      --shadow2: 0 18px 60px rgba(8, 145, 178, .14);
      --card:#ffffff;
      --soft:#f3fbff;
      --soft2:#eefcff;
      --radius:18px;
      --radius2:24px;
      --container: 1140px;
      --padX: 20px;
      --focus: rgba(34,211,238,.35);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", "Noto Sans", sans-serif;
      background:
        radial-gradient(1200px 700px at 10% -10%, rgba(14,165,233,.16), transparent 55%),
        radial-gradient(900px 520px at 90% 0%, rgba(34,197,94,.10), transparent 55%),
        linear-gradient(180deg, var(--bg0), #ffffff 45%, #f8fafc 100%);
      color:var(--text);
    }

    .skip-link{
      position:absolute; left:12px; top:-44px;
      background:#0b1220; color:#fff;
      padding:10px 12px; border-radius:12px;
      z-index:9999; transition: top .2s ease;
      text-decoration:none; font-weight:600; font-size:14px;
    }
    .skip-link:focus{ top:12px; outline:none; box-shadow:0 0 0 4px var(--focus); }

    .container{
      width:100%;
      max-width:var(--container);
      padding:0 var(--padX);
      margin:0 auto;
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(10px);
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .header-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width: 240px;
    }
    .brand-link{display:flex; align-items:center; text-decoration:none; color:inherit}
    .ai-page-logo{width:40px; height:auto; border-radius:12px; box-shadow:0 6px 18px rgba(14,165,233,.18)}
    .brand-meta{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:860; letter-spacing:.2px}
    .brand-sub{font-size:12px; color:var(--muted2); margin-top:4px}

    .nav-desktop{
      display:flex; align-items:center; gap:18px;
      flex:1; justify-content:center;
      flex-wrap:wrap;
    }
    .nav-link{
      text-decoration:none; color:var(--muted);
      font-weight:650; font-size:14px;
      padding:10px 10px; border-radius:12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }
    .nav-link:hover{ background: rgba(14,165,233,.10); color:#0f172a; transform: translateY(-1px); }

    .header-actions{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius:14px;
      border:1px solid transparent;
      padding:10px 14px;
      text-decoration:none;
      font-weight:800; letter-spacing:.2px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
      color:inherit;
      white-space:nowrap;
    }
    .btn:focus{ outline:none; box-shadow:0 0 0 4px var(--focus); }
    .btn:hover{ transform: translateY(-1px); }

    .btn-primary{
      color:white;
      background: linear-gradient(135deg, #0ea5a6, #06b6d4 55%, #6366f1);
      box-shadow: 0 12px 28px rgba(6,182,212,.22);
      border-color: rgba(255,255,255,.18);
    }
    .btn-primary:hover{ box-shadow: 0 18px 45px rgba(6,182,212,.28); }

    .btn-ghost{
      background: rgba(255,255,255,.75);
      border-color: rgba(15,23,42,.14);
      color:#0f172a;
    }
    .btn-ghost:hover{ border-color: rgba(6,182,212,.30); box-shadow: 0 12px 26px rgba(2, 132, 199, .10); }

    .btn-soft{
      background: rgba(14,165,233,.10);
      border-color: rgba(14,165,233,.18);
      color:#0f172a;
    }
    .btn-soft:hover{ background: rgba(14,165,233,.14); border-color: rgba(14,165,233,.26); }

    .btn-lg{ padding:12px 18px; border-radius:16px; font-size:15px; }
    .btn-sm{ padding:9px 12px; border-radius:12px; font-size:13px; }
    .btn-block{ width:100%; }

    .btn-primary.btn-sm{ box-shadow: 0 10px 24px rgba(6,182,212,.18); }

    .nav-toggle{
      display:none;
      width:42px; height:42px; border-radius:14px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .nav-toggle:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(2,132,199,.12); }
    .toggle-line{
      display:block; width:18px; height:2px; background:#0f172a; margin:3px 0; border-radius:2px;
    }

    .mobile-menu{
      display:none;
      border-top:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
    }
    .mobile-menu.open{ display:block; }

    .mobile-menu-inner{ padding:14px 0 18px; }
    .mobile-links{
      display:flex; flex-direction:column; gap:6px;
      padding:10px 0;
    }
    .mobile-link{
      text-decoration:none; color:#0f172a; font-weight:780; font-size:15px;
      padding:12px 12px; border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.8);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .mobile-link:hover{ transform: translateY(-1px); box-shadow:0 14px 32px rgba(2,132,199,.10); }
    .mobile-actions{ display:flex; gap:10px; flex-direction:column; margin-top:8px; }

    .hero{
      position:relative;
      padding:46px 0 26px;
      overflow:hidden;
    }
    .hero-bg{
      position:absolute; inset:-140px -120px auto -120px;
      height:520px;
      background:
        radial-gradient(800px 420px at 25% 35%, rgba(34,211,238,.25), transparent 60%),
        radial-gradient(700px 380px at 80% 10%, rgba(99,102,241,.16), transparent 55%),
        linear-gradient(135deg, rgba(14,165,233,.10), rgba(34,197,94,.06));
      filter: saturate(1.2);
      pointer-events:none;
    }

    .hero-inner{
      display:grid;
      grid-template-columns: 1.25fr .85fr;
      gap:22px;
      align-items:start;
    }
    .hero-left{ padding-top:10px; }
    .hero-pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      box-shadow: 0 10px 28px rgba(2,132,199,.08);
      font-weight:860;
      color:#0f172a;
      font-size:13px;
    }
    .pill-dot{
      width:9px; height:9px; border-radius:50%;
      background: linear-gradient(135deg, var(--teal), var(--indigo));
      box-shadow: 0 0 0 6px rgba(6,182,212,.12);
    }

    .hero-title{
      margin:16px 0 10px;
      font-size:40px;
      letter-spacing:-.8px;
      line-height:1.06;
      font-weight:930;
    }
    .hero-lead{
      margin:10px 0 18px;
      color:var(--muted);
      font-size:16px;
      line-height:1.65;
      max-width: 640px;
    }

    .hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
    .hero-fast{
      display:grid; gap:12px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top:18px;
    }
    .fast-card{
      background: rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:12px 12px;
      box-shadow: 0 12px 28px rgba(2,132,199,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height:104px;
    }
    .fast-card:hover{
      transform: translateY(-3px);
      border-color: rgba(6,182,212,.28);
      box-shadow: 0 18px 44px rgba(2,132,199,.14);
    }
    .fast-top{ display:flex; align-items:center; gap:10px; }
    .icon-badge{
      width:34px; height:34px; border-radius:14px;
      background: linear-gradient(135deg, rgba(14,165,166,.14), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      color:#0f172a;
    }
    .fast-title{ font-weight:920; font-size:14px; }
    .fast-desc{ margin-top:8px; color:var(--muted); font-size:12.8px; line-height:1.45; }

    .hero-right{ position:relative; }
    .metrics-grid{
      display:grid; gap:12px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .metric-card{
      background: rgba(255,255,255,.72);
      border:1px solid rgba(15,23,42,.10);
      border-radius:18px;
      padding:14px 14px;
      box-shadow: 0 12px 28px rgba(2,132,199,.08);
      transition: transform .18s ease, border-color .18s ease;
      min-height:88px;
    }
    .metric-card:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); }
    .metric-value{
      font-weight:950; font-size:26px; letter-spacing:-.6px;
      background: linear-gradient(135deg, #0ea5a6, #06b6d4 55%, #6366f1);
      -webkit-background-clip:text; background-clip:text; color:transparent;
    }
    .metric-label{
      margin-top:6px; color:var(--muted); font-size:13px; font-weight:720; line-height:1.3;
    }

    .quote-card{
      margin-top:14px;
      background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(243,253,255,.74));
      border:1px solid rgba(15,23,42,.10);
      border-radius:22px;
      padding:16px 16px;
      box-shadow: var(--shadow);
    }
    .quote-head{ display:flex; justify-content:space-between; align-items:center; gap:10px; }
    .quote-tag{
      font-weight:900; font-size:12px;
      padding:8px 10px; border-radius:999px;
      background: rgba(14,165,233,.10); border:1px solid rgba(14,165,233,.18);
    }
    .quote-status{ font-weight:850; color:#0f172a; font-size:12.5px; }
    .quote-text{ margin:12px 0 14px; color:var(--muted); line-height:1.6; font-weight:650; }
    .quote-actions{ display:flex; gap:10px; flex-wrap:wrap; }

    .section{
      padding:56px 0;
    }
    .section-alt{
      background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(236,254,255,.70) 40%, rgba(255,255,255,1) 100%);
      border-top:1px solid rgba(15,23,42,.05);
      border-bottom:1px solid rgba(15,23,42,.05);
    }
    .section-alt2{
      background: linear-gradient(180deg, rgba(238,253,255,.60), rgba(255,255,255,1));
    }
    .section-alt3{
      background:
        radial-gradient(1200px 520px at 15% 0%, rgba(6,182,212,.12), transparent 60%),
        radial-gradient(900px 460px at 85% 20%, rgba(99,102,241,.10), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,252,1));
      border-top:1px solid rgba(15,23,42,.05);
      border-bottom:1px solid rgba(15,23,42,.05);
    }

    .section-head{ margin-bottom:20px; }
    .section-title{
      margin:0;
      font-size:28px;
      letter-spacing:-.4px;
      font-weight:930;
    }
    .section-sub{
      margin:8px 0 0;
      color:var(--muted);
      line-height:1.65;
      font-size:15px;
      max-width:820px;
      font-weight:650;
    }

    .two-col{
      display:grid; gap:16px;
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    .two-col-tight{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }

    .panel{
      border-radius: var(--radius2);
      border:1px solid rgba(15,23,42,.10);
      padding:18px 18px;
      background: var(--card);
      box-shadow: 0 18px 60px rgba(2,132,199,.08);
    }
    .panel-glass{
      background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(243,253,255,.70));
      box-shadow: var(--shadow2);
    }
    .panel-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(239,246,255,.72));
      box-shadow: 0 18px 60px rgba(99,102,241,.06);
    }

    .panel-title{
      margin:0 0 10px;
      font-size:16px;
      font-weight:930;
      letter-spacing:-.2px;
    }

    .feature-list{ list-style:none; padding:0; margin:10px 0 0; display:flex; flex-direction:column; gap:10px;}
    .li-dot{
      width:10px; height:10px; border-radius:4px;
      background: linear-gradient(135deg, rgba(14,165,166,.9), rgba(99,102,241,.7));
      display:inline-block; margin-right:10px; box-shadow:0 0 0 6px rgba(6,182,212,.12);
      transform: translateY(1px);
    }
    .feature-list li{
      display:flex; align-items:flex-start;
      color:var(--muted);
      font-weight:680;
      line-height:1.55;
      font-size:14px;
    }

    .panel-actions{ margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; }

    .divider{
      height:1px; background: rgba(15,23,42,.10);
      margin:14px 0;
    }

    .chip-grid{ display:flex; flex-wrap:wrap; gap:10px; }
    .chip{
      display:inline-flex; align-items:center;
      padding:10px 12px; border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      color:#0f172a; font-weight:860; font-size:13px;
    }

    .cap-grid{ display:grid; gap:12px; grid-template-columns: 1fr; }
    .cap-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .cap-item:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); box-shadow: 0 18px 44px rgba(2,132,199,.10); }
    .cap-icon{
      width:40px; height:40px; border-radius:16px;
      background: linear-gradient(135deg, rgba(14,165,166,.14), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      color:#0f172a;
      flex:0 0 auto;
    }
    .cap-title{ font-weight:930; letter-spacing:-.2px; }
    .cap-desc{ margin-top:4px; color:var(--muted); font-weight:680; font-size:13px; line-height:1.45; }

    .network-foot{ margin-top:10px; }
    .small-note{
      display:flex; align-items:center; gap:10px;
      color:var(--muted2);
      font-weight:700;
      font-size:13px;
      line-height:1.45;
      background: rgba(14,165,233,.08);
      border:1px solid rgba(14,165,233,.16);
      border-radius:16px;
      padding:12px 12px;
    }
    .spark{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, #0ea5a6, #06b6d4);
      box-shadow: 0 0 0 6px rgba(6,182,212,.12);
    }

    .service-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      align-items:stretch;
    }
    .service-card{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:18px 16px;
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:196px;
      display:flex; flex-direction:column;
    }
    .service-card:hover{
      transform: translateY(-3px);
      border-color: rgba(6,182,212,.26);
      box-shadow: 0 28px 80px rgba(2,132,199,.12);
    }
    .service-top{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
    .service-icon{
      width:44px; height:44px; border-radius:18px;
      background: linear-gradient(135deg, rgba(14,165,166,.14), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      color:#0f172a;
      flex:0 0 auto;
    }
    .service-title{ font-weight:950; letter-spacing:-.3px; font-size:15px; }
    .service-desc{ margin:0; color:var(--muted); line-height:1.6; font-weight:680; }
    .link-more{
      margin-top:auto;
      color:#0f172a;
      font-weight:900;
      text-decoration:none;
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.74);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .link-more:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); box-shadow: 0 18px 44px rgba(2,132,199,.10); }

    .steps{
      display:grid; gap:14px;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      align-items:stretch;
    }
    .step{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.75);
      padding:16px 14px;
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      transition: transform .18s ease, border-color .18s ease;
      display:flex; gap:12px;
      align-items:flex-start;
      min-height:156px;
    }
    .step:hover{ transform: translateY(-3px); border-color: rgba(6,182,212,.26); }
    .step-no{
      width:46px; height:46px;
      border-radius:18px;
      background: linear-gradient(135deg, rgba(14,165,166,.16), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:980; color:#0f172a;
      flex:0 0 auto;
      box-shadow: 0 14px 32px rgba(6,182,212,.08);
    }
    .step-title{ margin:2px 0 6px; font-weight:950; letter-spacing:-.2px; font-size:14.5px; }
    .step-desc{ margin:0; color:var(--muted); line-height:1.55; font-weight:680; font-size:13.2px; }

    .callout{
      margin-top:16px;
      border-radius:24px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(700px 260px at 20% 0%, rgba(6,182,212,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(243,253,255,.78));
      padding:18px 18px;
      box-shadow: var(--shadow2);
      display:flex; justify-content:space-between; align-items:center; gap:14px;
      flex-wrap:wrap;
    }
    .callout-title{ font-weight:980; letter-spacing:-.4px; font-size:16px; }
    .callout-sub{ margin-top:6px; color:var(--muted); font-weight:680; line-height:1.55; }
    .callout-right{ display:flex; gap:12px; flex-wrap:wrap; }

    .industry-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .industry-card{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:18px 16px;
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:240px;
      display:flex; flex-direction:column;
    }
    .industry-card:hover{ transform: translateY(-3px); border-color: rgba(6,182,212,.26); box-shadow: 0 28px 80px rgba(2,132,199,.12); }
    .industry-top{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
    .industry-icon{
      width:44px; height:44px; border-radius:18px;
      background: linear-gradient(135deg, rgba(14,165,166,.14), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
    }
    .industry-title{ font-weight:980; letter-spacing:-.3px; }
    .industry-desc{ margin:0; color:var(--muted); line-height:1.6; font-weight:680; }
    .industry-list{ list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:8px; }
    .industry-list li{ color:#0f172a; font-weight:800; font-size:13.5px; }
    .industry-list li::before{
      content:"";
      width:8px; height:8px; border-radius:3px;
      background: linear-gradient(135deg, rgba(14,165,166,.9), rgba(99,102,241,.7));
      display:inline-block; margin-right:10px; transform: translateY(1px);
    }
    .industry-card .industry-list li{ display:flex; align-items:flex-start; }

    .network-layout{
      display:grid; gap:16px;
      grid-template-columns: 1.15fr .85fr;
      align-items:start;
    }
    .map-panel{
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(900px 340px at 20% 10%, rgba(6,182,212,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(243,253,255,.72));
      box-shadow: var(--shadow2);
      padding:18px;
      overflow:hidden;
    }
    .map-header{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap; }
    .map-title{ font-weight:980; letter-spacing:-.4px; font-size:16px; }
    .map-badges{ display:flex; gap:8px; flex-wrap:wrap; }
    .mini-badge{
      padding:8px 10px; border-radius:999px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(15,23,42,.10);
      font-weight:860; font-size:12.5px; color:#0f172a;
    }

    .map-canvas{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.55);
      height:230px;
      position:relative;
      overflow:hidden;
    }
    .gridlines{
      position:absolute; inset:0;
      background:
        linear-gradient(rgba(15,23,42,.06) 1px, transparent 1px) 0 0/26px 26px,
        linear-gradient(90deg, rgba(15,23,42,.06) 1px, transparent 1px) 0 0/26px 26px;
      opacity:.8;
    }
    .pulse-dot{
      position:absolute;
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(135deg, #0ea5a6, #6366f1);
      box-shadow: 0 0 0 10px rgba(6,182,212,.12);
      animation: pulse 2.6s ease-in-out infinite;
    }
    .pulse-dot::after{
      content:"";
      position:absolute; inset:-14px;
      border:1px solid rgba(6,182,212,.35);
      border-radius:50%;
      animation: ripple 2.6s ease-in-out infinite;
    }
    .dot-1{ left:16%; top:46%; animation-delay:0s;}
    .dot-2{ left:38%; top:30%; animation-delay:.4s;}
    .dot-3{ left:63%; top:55%; animation-delay:.7s;}
    .dot-4{ left:80%; top:28%; animation-delay:1.0s;}

    @keyframes pulse{
      0%,100%{ transform: translateY(0) scale(1); opacity:1; }
      50%{ transform: translateY(-6px) scale(1.05); opacity:.92; }
    }
    @keyframes ripple{
      0%{ transform: scale(.65); opacity:.9; }
      70%{ transform: scale(1.05); opacity:.12; }
      100%{ transform: scale(1.15); opacity:0; }
    }

    .map-foot{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:10px;
      margin-top:12px;
    }
    .map-foot-item{
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.62);
      padding:12px 12px;
    }
    .map-foot-strong{
      font-weight:980;
      font-size:18px;
      letter-spacing:-.4px;
      background: linear-gradient(135deg, #0ea5a6, #06b6d4 55%, #6366f1);
      -webkit-background-clip:text; background-clip:text; color:transparent;
    }
    .map-foot-text{ margin-top:6px; color:var(--muted); font-weight:700; font-size:13px; line-height:1.35; }

    .service-steps{ display:flex; flex-direction:column; gap:12px; margin-top:6px; }
    .service-step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      transition: transform .18s ease, border-color .18s ease;
    }
    .service-step:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); }
    .service-step-icon{
      width:38px; height:38px;
      border-radius:16px;
      border:1px solid rgba(6,182,212,.18);
      background: linear-gradient(135deg, rgba(14,165,166,.14), rgba(99,102,241,.10));
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .service-step-title{ font-weight:950; letter-spacing:-.2px; }
    .service-step-desc{ margin-top:4px; color:var(--muted); font-weight:680; line-height:1.55; font-size:13px; }

    .process-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      align-items:stretch;
    }
    .process-card{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:18px 16px;
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column;
      min-height:270px;
    }
    .process-card:hover{
      transform: translateY(-3px);
      border-color: rgba(6,182,212,.26);
      box-shadow: 0 28px 80px rgba(2,132,199,.12);
    }
    .process-head{ display:flex; align-items:flex-start; gap:12px; }
    .process-icon{
      width:46px; height:46px; border-radius:20px;
      background: linear-gradient(135deg, rgba(14,165,166,.14), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .process-title{ font-weight:980; letter-spacing:-.3px; font-size:15.5px; }
    .process-subtitle{ margin-top:6px; color:var(--muted); font-weight:700; font-size:13px; line-height:1.4; }
    .process-list{ list-style:none; padding:0; margin:14px 0 0; display:flex; flex-direction:column; gap:10px; }
    .process-list li{
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.62);
      color:#0f172a; font-weight:820; font-size:13.5px;
    }

    .process-tail{
      margin-top:16px;
      display:flex; justify-content:center;
    }
    .process-tail-card{
      width:100%;
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(900px 280px at 20% 0%, rgba(6,182,212,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(243,253,255,.78));
      box-shadow: var(--shadow2);
      padding:18px 18px;
      display:flex; justify-content:space-between; align-items:center; gap:14px;
      flex-wrap:wrap;
    }
    .process-tail-title{ font-weight:980; letter-spacing:-.4px; font-size:16px; }
    .process-tail-sub{ margin-top:6px; color:var(--muted); font-weight:680; line-height:1.55; }
    .process-tail-actions{ display:flex; gap:12px; flex-wrap:wrap; }

    .case-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .case-card{
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      overflow:hidden;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column;
      min-height:320px;
    }
    .case-card:hover{
      transform: translateY(-3px);
      border-color: rgba(6,182,212,.26);
      box-shadow: 0 28px 80px rgba(2,132,199,.12);
    }
    .case-media{ padding:14px 14px 0; }
    .case-mock{
      height:140px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.08);
      background:
        radial-gradient(500px 220px at 20% 20%, rgba(14,165,233,.30), transparent 55%),
        radial-gradient(420px 180px at 80% 0%, rgba(99,102,241,.18), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,.7), rgba(240,253,255,.55));
    }
    .gradient-a{ background:
      radial-gradient(500px 220px at 20% 20%, rgba(14,165,233,.36), transparent 55%),
      radial-gradient(420px 180px at 80% 0%, rgba(99,102,241,.22), transparent 55%),
      linear-gradient(135deg, rgba(255,255,255,.7), rgba(240,253,255,.55));
    }
    .gradient-b{ background:
      radial-gradient(520px 240px at 10% 10%, rgba(34,197,94,.18), transparent 60%),
      radial-gradient(440px 180px at 85% 20%, rgba(6,182,212,.24), transparent 58%),
      linear-gradient(135deg, rgba(255,255,255,.7), rgba(236,253,255,.55));
    }
    .gradient-c{ background:
      radial-gradient(520px 240px at 15% 15%, rgba(99,102,241,.22), transparent 60%),
      radial-gradient(440px 180px at 85% 35%, rgba(14,165,233,.22), transparent 58%),
      linear-gradient(135deg, rgba(255,255,255,.7), rgba(238,252,255,.55));
    }

    .case-body{ padding:14px 16px 16px; display:flex; flex-direction:column; gap:10px; }
    .case-meta{ display:flex; gap:8px; flex-wrap:wrap; }
    .case-pill{
      padding:8px 10px; border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      font-weight:900; font-size:12.5px;
      color:#0f172a;
    }
    .case-pill.soft{ background: rgba(14,165,233,.10); border-color: rgba(14,165,233,.18); }
    .case-title{ margin:2px 0 0; font-weight:980; letter-spacing:-.35px; font-size:16px; }
    .case-desc{ margin:0; color:var(--muted); line-height:1.6; font-weight:680; font-size:14px; }
    .case-actions{ margin-top:auto; }

    .case-bar{
      margin-top:14px;
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      padding:18px;
      display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
    }
    .case-bar-title{ font-weight:980; letter-spacing:-.4px; }
    .case-bar-sub{ margin-top:6px; color:var(--muted); font-weight:680; line-height:1.55; }
    .case-bar-right{ display:flex; gap:12px; flex-wrap:wrap; }

    .compare-top{
      display:grid; gap:14px;
      grid-template-columns: .95fr 1.05fr;
      align-items:start;
    }
    .rating-card{
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(780px 280px at 20% 0%, rgba(6,182,212,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(243,253,255,.76));
      box-shadow: var(--shadow2);
      padding:18px;
    }
    .rating-head{ display:flex; justify-content:space-between; gap:12px; align-items:flex-start; flex-wrap:wrap; }
    .rating-brand{ font-weight:950; letter-spacing:-.3px; color:#0f172a; }
    .stars{ display:flex; gap:4px; font-size:18px; color: #f59e0b; }
    .star{ text-shadow: 0 10px 24px rgba(245,158,11,.15); }
    .rating-score{ margin-top:14px; display:flex; align-items:baseline; gap:12px; }
    .score-big{
      font-size:44px; font-weight:990; letter-spacing:-1px;
      background: linear-gradient(135deg, #0ea5a6, #06b6d4 55%, #6366f1);
      -webkit-background-clip:text; background-clip:text; color:transparent;
    }
    .score-sub{ color:var(--muted); font-weight:820; }
    .rating-note{ margin-top:10px; color:var(--muted); font-weight:680; line-height:1.55; }

    .compare-cta{
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      padding:18px;
      display:flex; flex-direction:column; justify-content:center;
      min-height:190px;
    }
    .compare-cta-title{ font-weight:990; letter-spacing:-.4px; font-size:18px; }
    .compare-cta-sub{ margin-top:8px; color:var(--muted); font-weight:700; line-height:1.55; }
    .compare-cta-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .compare-table-wrap{
      margin-top:14px;
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      padding:10px;
    }
    .compare-table-scroll{ overflow:auto; border-radius:18px; }
    .compare-table{
      width:100%;
      border-collapse:collapse;
      min-width:860px;
    }
    .compare-table th, .compare-table td{
      padding:14px 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
      vertical-align:top;
    }
    .compare-table thead th{
      text-align:left;
      font-weight:980;
      color:#0f172a;
      background: linear-gradient(180deg, rgba(14,165,233,.10), rgba(255,255,255,.2));
      position:sticky;
      top:0;
      z-index:1;
    }
    .compare-table tbody td{
      color:var(--muted);
      font-weight:680;
      line-height:1.5;
    }
    .ok{ font-weight:980; color:#065f46; }
    .warn{ font-weight:980; color:#7c2d12; }

    .compare-legend{
      display:flex; gap:16px; flex-wrap:wrap;
      padding:10px 12px 4px;
    }
    .legend-item{ color:var(--muted); font-weight:700; font-size:13.5px; display:flex; align-items:center; gap:10px; }
    .ok-dot, .warn-dot{
      width:10px; height:10px; border-radius:4px; display:inline-block;
      box-shadow: 0 0 0 6px rgba(2,132,199,.10);
    }
    .ok-dot{ background: linear-gradient(135deg, rgba(34,197,94,.9), rgba(14,165,233,.7)); }
    .warn-dot{ background: linear-gradient(135deg, rgba(245,158,11,.9), rgba(124,45,18,.7)); }

    .match-layout{
      display:grid; gap:16px;
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    .panel-glass .para{ color:var(--muted); font-weight:680; line-height:1.65; }
    .form-grid{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
      margin-top:8px;
    }
    .field{ display:flex; flex-direction:column; gap:8px; }
    .field-full{ grid-column:1 / -1; }
    label{ font-weight:900; color:#0f172a; font-size:13.5px; }
    input, select, textarea{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.14);
      background: rgba(255,255,255,.86);
      padding:12px 12px;
      color:#0f172a;
      font-weight:700;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
    }
    textarea{ resize:vertical; min-height:120px; }
    input::placeholder, textarea::placeholder{ color:rgba(75,85,99,.75); font-weight:650; }
    input:focus, select:focus, textarea:focus{
      border-color: rgba(6,182,212,.40);
      box-shadow:0 0 0 4px var(--focus);
      background:#fff;
    }
    .form-actions{ grid-column:1 / -1; margin-top:2px; display:flex; flex-direction:column; gap:10px; }
    .form-hint{
      display:flex; align-items:center; gap:10px;
      color:var(--muted2); font-weight:700; font-size:13px; line-height:1.45;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
    }
    .hint-dot{ width:10px; height:10px; border-radius:50%; background: linear-gradient(135deg, #0ea5a6, #06b6d4); box-shadow:0 0 0 6px rgba(6,182,212,.12); }
    .form-status{
      min-height:22px;
      font-weight:820; color:#065f46;
      opacity:0;
      transform: translateY(-4px);
      transition: opacity .2s ease, transform .2s ease;
    }
    .form-status.show{ opacity:1; transform: translateY(0); }

    .result-list{ display:flex; flex-direction:column; gap:12px; margin-top:10px; }
    .result-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
    }
    .result-icon{
      width:38px; height:38px; border-radius:16px;
      background: linear-gradient(135deg, rgba(14,165,166,.14), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .result-title{ font-weight:980; letter-spacing:-.3px; }
    .result-desc{ margin-top:4px; color:var(--muted); font-weight:680; line-height:1.55; font-size:13.5px; }

    .pricing-layout{
      display:grid; gap:16px;
      grid-template-columns: 1.1fr .9fr;
      align-items:start;
    }
    .table-note{
      color:var(--muted2);
      font-weight:700;
      font-size:13px;
      line-height:1.5;
      padding:10px 12px;
      border-radius:16px;
      border:1px dashed rgba(15,23,42,.14);
      background: rgba(255,255,255,.7);
      margin-top:8px;
    }
    .table-scroll{ overflow:auto; margin-top:12px; border-radius:16px; }
    .price-table{
      width:100%;
      min-width:680px;
      border-collapse:collapse;
    }
    .price-table th, .price-table td{
      padding:14px 12px;
      border-bottom:1px solid rgba(15,23,42,.08);
      text-align:left;
      vertical-align:top;
    }
    .price-table thead th{
      background: linear-gradient(180deg, rgba(14,165,233,.10), rgba(255,255,255,.2));
      font-weight:980;
      color:#0f172a;
    }
    .price-pill{
      display:inline-flex; align-items:center;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(34,197,94,.30);
      background: rgba(34,197,94,.12);
      color:#065f46;
      font-weight:980;
      font-size:12.5px;
    }
    .price-pill.alt{
      border-color: rgba(245,158,11,.36);
      background: rgba(245,158,11,.14);
      color:#7c2d12;
    }
    .price-pill.alt2{
      border-color: rgba(99,102,241,.32);
      background: rgba(99,102,241,.12);
      color:#3730a3;
    }

    .timeline{ margin-top:12px; display:flex; flex-direction:column; gap:12px; }
    .time-item{ display:flex; gap:12px; align-items:flex-start; }
    .time-dot{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(135deg, #0ea5a6, #6366f1);
      box-shadow: 0 0 0 6px rgba(6,182,212,.12);
      margin-top:7px;
      flex:0 0 auto;
    }
    .time-title{ font-weight:980; letter-spacing:-.3px; }
    .time-desc{ margin-top:5px; color:var(--muted); font-weight:680; line-height:1.55; font-size:13.5px; }

    .mini-network{
      margin-top:14px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:14px;
    }
    .mini-network-title{ font-weight:980; letter-spacing:-.3px; }
    .mini-network-sub{ margin-top:6px; color:var(--muted); font-weight:680; line-height:1.6; }
    .mini-network-actions{ margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; }

    .training-layout{
      display:grid; gap:16px;
      grid-template-columns: 1.05fr .95fr;
      align-items:start;
    }
    .two-col-tight{ margin-top:10px; }
    .list-card{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:14px;
    }
    .list-card-title{ font-weight:980; letter-spacing:-.3px; margin-bottom:10px; }
    .check-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
    .check-list li{
      display:flex; align-items:flex-start; gap:10px;
      color:#0f172a; font-weight:840;
    }
    .check-list li::before{
      content:"";
      width:10px; height:10px; border-radius:4px;
      background: linear-gradient(135deg, rgba(14,165,166,.9), rgba(99,102,241,.7));
      box-shadow:0 0 0 6px rgba(6,182,212,.12);
      margin-top:4px;
      flex:0 0 auto;
    }

    .audience-grid{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
      margin-top:10px;
    }
    .aud-item{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:14px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .aud-item:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); box-shadow: 0 18px 44px rgba(2,132,199,.10); }
    .aud-title{ font-weight:980; letter-spacing:-.3px; }
    .aud-desc{ margin-top:6px; color:var(--muted); font-weight:680; line-height:1.55; font-size:13.5px; }

    .quote-mini{
      margin-top:14px;
      border-radius:22px;
      padding:14px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(520px 220px at 20% 10%, rgba(6,182,212,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(243,253,255,.76));
    }
    .quote-mini-top{ display:flex; gap:10px; align-items:center; }
    .quote-mini-tag{
      font-weight:980; font-size:12.5px;
      padding:8px 10px; border-radius:999px;
      background: rgba(14,165,233,.10); border:1px solid rgba(14,165,233,.18);
    }
    .quote-mini-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, #0ea5a6, #06b6d4);
      box-shadow: 0 0 0 6px rgba(6,182,212,.12);
    }
    .quote-mini-text{ margin-top:10px; color:var(--muted); font-weight:720; line-height:1.6; }

    .help-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .help-card{
      border-radius:24px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:18px 16px;
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:210px;
      display:flex; flex-direction:column;
    }
    .help-card:hover{ transform: translateY(-3px); border-color: rgba(6,182,212,.26); box-shadow: 0 28px 80px rgba(2,132,199,.12); }
    .help-featured{
      background:
        radial-gradient(520px 240px at 15% 0%, rgba(6,182,212,.18), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(243,253,255,.76));
    }
    .help-title{ font-weight:980; letter-spacing:-.3px; margin-bottom:10px; }
    .help-desc{ margin:8px 0 14px; color:var(--muted); font-weight:680; line-height:1.6; }
    .help-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
    .help-list li{
      color:#0f172a; font-weight:850; line-height:1.5;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.62);
    }
    .help-actions{ margin-top:auto; display:flex; gap:12px; flex-wrap:wrap; }
    
    .faq-grid{
      display:grid; gap:14px;
      grid-template-columns: 260px 1fr;
      align-items:start;
    }
    .faq-filters{
      position:sticky;
      top:92px;
    }
    .tag-cloud{
      display:flex; flex-direction:column; gap:10px;
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      padding:14px;
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
    }
    .tag-btn{
      width:100%;
      text-align:left;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.68);
      font-weight:880;
      color:var(--muted);
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
    }
    .tag-btn:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); background: rgba(14,165,233,.08); color:#0f172a; }
    .tag-btn.active{
      background: linear-gradient(135deg, rgba(14,165,166,.16), rgba(99,102,241,.10));
      border-color: rgba(6,182,212,.34);
      color:#0f172a;
      box-shadow: 0 18px 44px rgba(2,132,199,.10);
    }

    .faq-list{
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      padding:6px;
    }
    .faq-item{
      border-radius:20px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.70);
      margin:10px;
      overflow:hidden;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .faq-item:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.22); box-shadow: 0 18px 44px rgba(2,132,199,.10); }
    .faq-item.open{ border-color: rgba(6,182,212,.30); background: rgba(255,255,255,.82); }
    .faq-q{
      width:100%;
      border:none;
      background: transparent;
      padding:14px 14px;
      display:flex; align-items:center; gap:12px;
      font-weight:950; letter-spacing:-.2px;
      cursor:pointer;
      color:#0f172a;
      text-align:left;
      transition: background .2s ease;
    }
    .faq-q:focus{ outline:none; box-shadow: inset 0 0 0 4px var(--focus); }
    .faq-icon{
      width:30px; height:30px; border-radius:14px;
      background: rgba(14,165,233,.10);
      border:1px solid rgba(14,165,233,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      flex:0 0 auto;
    }
    .faq-chev{
      margin-left:auto;
      width:12px; height:12px; border-right:2px solid rgba(15,23,42,.55);
      border-bottom:2px solid rgba(15,23,42,.55);
      transform: rotate(45deg);
      transition: transform .2s ease;
      flex:0 0 auto;
    }
    .faq-item.open .faq-chev{ transform: rotate(-135deg); }
    .faq-a{
      padding:0 14px 14px 56px;
      color:var(--muted);
      font-weight:700;
      line-height:1.65;
    }

    .wiki-grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .wiki-card{
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      padding:18px 16px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:160px;
    }
    .wiki-card:hover{ transform: translateY(-3px); border-color: rgba(6,182,212,.26); box-shadow: 0 28px 80px rgba(2,132,199,.12); }
    .wiki-top{ display:flex; align-items:center; gap:12px; }
    .wiki-icon{
      width:44px; height:44px; border-radius:18px;
      background: linear-gradient(135deg, rgba(14,165,166,.14), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
    }
    .wiki-title{ font-weight:980; letter-spacing:-.3px; }
    .wiki-desc{ margin:12px 0 0; color:var(--muted); font-weight:680; line-height:1.6; }
    .wiki-wide{
      grid-column: span 2;
      background:
        radial-gradient(650px 260px at 15% 0%, rgba(6,182,212,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(243,253,255,.76));
    }
    .wiki-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .news-layout{
      display:grid; gap:16px;
      grid-template-columns: 1.1fr .9fr;
      align-items:start;
    }
    .news-list{
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      padding:16px;
    }
    .news-head-title{ font-weight:980; letter-spacing:-.35px; font-size:16px; }
    .news-head-sub{ margin-top:6px; color:var(--muted); font-weight:680; line-height:1.55; font-size:13.5px; }
    .news-ul{ list-style:none; padding:0; margin:14px 0 0; display:flex; flex-direction:column; gap:10px; }
    .news-link{
      text-decoration:none;
      display:flex; align-items:center; gap:10px;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.08);
      background: rgba(255,255,255,.68);
      color:#0f172a;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      font-weight:860;
    }
    .news-link:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.22); box-shadow: 0 18px 44px rgba(2,132,199,.10); }
    .news-dot{
      width:10px; height:10px; border-radius:4px;
      background: linear-gradient(135deg, rgba(14,165,166,.9), rgba(99,102,241,.7));
      box-shadow: 0 0 0 6px rgba(6,182,212,.12);
      flex:0 0 auto;
    }
    .news-text{ flex:1; color:#0f172a; font-weight:900; line-height:1.4; }
    .news-arrow{ color:var(--muted2); font-weight:980; }

    .news-side .panel{ padding:18px 18px; }
    .quick-links{ display:flex; flex-direction:column; gap:10px; margin-top:12px; }
    .quick-link{
      text-decoration:none;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      display:flex; flex-direction:column; gap:6px;
    }
    .quick-link:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); box-shadow: 0 18px 44px rgba(2,132,199,.10); }
    .quick-title{ font-weight:980; letter-spacing:-.3px; }
    .quick-desc{ color:var(--muted); font-weight:680; line-height:1.45; font-size:13.5px; }

    .news-extra{
      margin-top:14px;
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      padding:16px;
      display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .news-extra-title{ font-weight:980; letter-spacing:-.35px; }
    .news-extra-links{ display:flex; gap:10px; flex-wrap:wrap; }
    .news-extra-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      color:#0f172a;
      font-weight:900;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .news-extra-links a:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); box-shadow: 0 18px 44px rgba(2,132,199,.10); }

    .contact-layout{
      display:grid; gap:16px;
      grid-template-columns: .95fr 1.05fr;
      align-items:start;
    }
    .contact-cards{
      display:grid; gap:12px;
      grid-template-columns: 1fr 1fr;
      margin-top:10px;
    }
    .contact-card{
      border-radius:20px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.76);
      padding:14px;
    }
    .contact-label{ font-weight:980; letter-spacing:-.3px; color:#0f172a; font-size:13.5px; }
    .contact-value{ margin-top:6px; display:block; color:#0f172a; font-weight:920; text-decoration:none; }
    .contact-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

    .qr-wrap{ display:flex; gap:14px; align-items:center; margin-top:12px; }
    .qr-frame{
      width:124px; height:124px; border-radius:26px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.72);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 18px 44px rgba(2,132,199,.10);
      flex:0 0 auto;
      padding:10px;
    }
    .qr-img{ width:100%; height:auto; border-radius:18px; }
    .qr-meta{ flex:1; }
    .qr-title{ font-weight:980; letter-spacing:-.3px; font-size:16px; }
    .qr-desc{ margin-top:6px; color:var(--muted); font-weight:680; line-height:1.6; }
    .qr-tags{ margin-top:10px; display:flex; gap:8px; flex-wrap:wrap; }

    .media-grid{
      margin-top:12px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
    }
    .media-item{
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      overflow:hidden;
      padding:10px;
    }
    .media-square{ grid-column: span 1; }
    .media-img{ width:100%; height:auto; display:block; object-fit:contain; border-radius:16px; }

    .media-note{
      margin-top:10px;
      color:var(--muted2);
      font-weight:700;
      line-height:1.55;
      font-size:13.5px;
      padding:10px 12px;
      border-radius:16px;
      border:1px dashed rgba(15,23,42,.14);
      background: rgba(255,255,255,.70);
    }
    .contact-bottom{ margin-top:14px; }
    .contact-bottom-card{
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background:
        radial-gradient(720px 260px at 15% 0%, rgba(6,182,212,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(243,253,255,.76));
      box-shadow: var(--shadow2);
      padding:18px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .contact-bottom-title{ font-weight:990; letter-spacing:-.4px; font-size:16px; }
    .contact-bottom-sub{ margin-top:6px; color:var(--muted); font-weight:680; line-height:1.55; }

    .join-grid{
      display:grid; gap:16px;
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    .join-card{ border-radius:26px; border:1px solid rgba(15,23,42,.10); background: rgba(255,255,255,.78); box-shadow: 0 18px 60px rgba(2,132,199,.06); padding:18px; }
    .join-steps{ display:flex; flex-direction:column; gap:12px; margin-top:10px; }
    .join-step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:22px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.72);
      transition: transform .18s ease, border-color .18s ease;
    }
    .join-step:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); }
    .join-step-no{
      width:36px; height:36px; border-radius:16px;
      background: linear-gradient(135deg, rgba(14,165,166,.16), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      font-weight:990;
      flex:0 0 auto;
    }
    .join-step-title{ font-weight:980; letter-spacing:-.3px; }
    .join-step-desc{ margin-top:4px; color:var(--muted); font-weight:680; line-height:1.55; font-size:13.5px; }

    .link-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
    .link-pill{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.70);
      color:#0f172a;
      font-weight:900;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .link-pill:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.26); box-shadow: 0 18px 44px rgba(2,132,199,.10); }

    .partner-reassure{
      margin-top:14px;
      border-radius:26px;
      border:1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 60px rgba(2,132,199,.06);
      padding:18px;
      display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
    }
    .partner-title{ font-weight:990; letter-spacing:-.4px; font-size:16px; }
    .partner-sub{ margin-top:6px; color:var(--muted); font-weight:680; line-height:1.55; }

    .site-footer{
      background:
        radial-gradient(900px 380px at 10% 0%, rgba(6,182,212,.18), transparent 60%),
        linear-gradient(180deg, #071827, #061322 55%, #050f1e 100%);
      color: #e5e7eb;
      border-top:1px solid rgba(255,255,255,.08);
      padding:34px 0 26px;
    }
    .footer-inner{ }
    .footer-top{
      display:grid; gap:18px;
      grid-template-columns: 1.1fr .9fr .8fr;
      align-items:start;
      margin-bottom:16px;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:center;
    }
    .footer-logo{
      width:42px; height:auto;
      border-radius:14px;
      box-shadow: 0 18px 50px rgba(6,182,212,.18);
      background: rgba(255,255,255,.08);
    }
    .footer-brand-name{ font-weight:980; letter-spacing:-.3px; font-size:16px; }
    .footer-brand-sub{ color: rgba(229,231,235,.82); font-weight:700; margin-top:6px; font-size:13px; }
    .footer-desc{
      margin-top:12px;
      color: rgba(229,231,235,.78);
      font-weight:650;
      line-height:1.6;
      max-width:430px;
    }
    .footer-title{ font-weight:980; letter-spacing:-.3px; margin-bottom:12px; }
    .friend-links{
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .friend-links a{
      text-decoration:none;
      color: rgba(229,231,235,.86);
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      font-weight:800;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .friend-links a:hover{ transform: translateY(-2px); border-color: rgba(34,211,238,.40); background: rgba(14,165,233,.14); }
    .footer-links{ display:flex; flex-direction:column; gap:10px; }
    .footer-links a{
      text-decoration:none;
      color: rgba(229,231,235,.82);
      font-weight:820;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.06);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .footer-links a:hover{ transform: translateY(-2px); border-color: rgba(34,211,238,.40); background: rgba(14,165,233,.14); }
    .footer-actions{ margin-top:14px; display:flex; gap:12px; flex-wrap:wrap; }

    .footer-bottom{
      display:flex; justify-content:space-between; align-items:center; gap:14px; flex-wrap:wrap;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .copyright{ color: rgba(229,231,235,.80); font-weight:720; }
    .footer-right-meta{ color: rgba(229,231,235,.78); font-weight:720; display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
    .meta-dot{ opacity:.6; }

    .to-top{
      position:fixed;
      right:18px; bottom:84px;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.88);
      box-shadow: 0 18px 44px rgba(2,132,199,.12);
      color:#0f172a;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      opacity:0; transform: translateY(8px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
      z-index:60;
    }
    .to-top.show{ opacity:1; transform: translateY(0); pointer-events:auto; }
    .to-top:hover{ border-color: rgba(6,182,212,.30); }

    .float-customer{
      position:fixed;
      left:14px; bottom:14px;
      z-index:70;
      display:flex; gap:10px; align-items:center;
    }
    .float-btn, .float-qrcode{
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:18px;
      border:1px solid rgba(15,23,42,.12);
      background: rgba(255,255,255,.92);
      box-shadow: 0 18px 44px rgba(2,132,199,.14);
      color:#0f172a;
      text-decoration:none;
      font-weight:950;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      max-width: 42vw;
    }
    .float-btn:hover, .float-qrcode:hover{ transform: translateY(-2px); border-color: rgba(6,182,212,.30); box-shadow: 0 24px 70px rgba(2,132,199,.18); }
    .float-icon{
      width:34px; height:34px; border-radius:16px;
      background: linear-gradient(135deg, rgba(14,165,166,.16), rgba(99,102,241,.10));
      border:1px solid rgba(6,182,212,.18);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .qr-mini{
      width:16px; height:16px; border-radius:6px;
      background:
        linear-gradient(135deg, rgba(14,165,166,.28), rgba(99,102,241,.18));
      border:1px solid rgba(6,182,212,.28);
      position:relative;
      flex:0 0 auto;
    }
    .qr-mini::before, .qr-mini::after{
      content:""; position:absolute; inset:2px;
      border:1px dashed rgba(6,182,212,.55);
      border-radius:4px;
    }
    .float-text{
      white-space:nowrap;
      overflow:hidden; text-overflow:ellipsis;
      max-width: 120px;
    }

    @media (prefers-reduced-motion: reduce){
      *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
    }

    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-fast{ grid-template-columns: 1fr; }
      .service-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .steps{ grid-template-columns: 1fr; }
      .industry-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .network-layout{ grid-template-columns: 1fr; }
      .process-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .case-grid{ grid-template-columns: 1fr; }
      .compare-top{ grid-template-columns: 1fr; }
      .match-layout{ grid-template-columns: 1fr; }
      .pricing-layout{ grid-template-columns: 1fr; }
      .training-layout{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .faq-filters{ position:static; }
      .wiki-grid{ grid-template-columns: 1fr 1fr; }
      .wiki-wide{ grid-column: span 2; }
      .news-layout{ grid-template-columns: 1fr; }
      .contact-layout{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .float-customer{ left:10px; right:10px; justify-content:flex-start; }
      .float-btn, .float-qrcode{ max-width: none; }
      .nav-desktop{ display:none; }
      .nav-toggle{ display:flex; }
      .mobile-menu{ display:none; }
    }

    @media (max-width: 520px){
      :root{ --padX: 14px; }
      .hero-title{ font-size:30px; }
      .form-grid{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .two-col-tight{ grid-template-columns: 1fr; }
      .audience-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr; }
      .map-foot{ grid-template-columns: 1fr; }
      .metrics-grid{ grid-template-columns: 1fr 1fr; }
      .compare-table{ min-width: 760px; }
      .float-customer{ flex-direction:column; gap:10px; }
      .to-top{ right:12px; bottom: 170px; }
    }