:root{
      --bg0:#fff7f2;
      --bg1:#ffffff;
      --text:#191919;
      --muted:#4a4a4a;
      --muted2:#6b6b6b;
      --card:#ffffff;
      --card2:#fffaf6;
      --line:rgba(20,20,20,.10);
      --shadow:0 18px 50px rgba(17, 24, 39, .10);
      --shadow2:0 10px 30px rgba(17, 24, 39, .10);
      --shadow3:0 6px 18px rgba(17, 24, 39, .10);
      --accent:#ff6a1a;
      --accent2:#ff8a33;
      --accent3:#ff3d2e;
      --accentDeep:#e44b10;
      --ink:#141414;
      --nav:#ffffff;
      --footer:#121212;
      --footerText:#f3f3f3;
      --radius:18px;
      --radius2:24px;
      --max:1120px;
      --pad:18px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 8% -10%, rgba(255,106,26,.18), transparent 55%),
        radial-gradient(900px 500px at 80% 0%, rgba(255,61,46,.14), transparent 50%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 45%, #fff 100%);
    }

    .skip-link{
      position:absolute; left:-999px; top:0;
      background:#000; color:#fff; padding:10px 12px; border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{left:12px}

    .container{
      width:100%;
      max-width:var(--max);
      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(20,20,20,.08);
    }
    .nav-container{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width:220px;
    }
    .ai-page-logo{width:38px; height:auto; border-radius:10px}
    .brand-text{display:flex; flex-direction:column; line-height:1.1}
    .brand-name{font-weight:900; letter-spacing:.2px; font-size:16px}
    .brand-sub{color:var(--muted2); font-size:12px; margin-top:4px}

    .nav{
      display:flex; align-items:center; gap:18px;
      flex:1;
      justify-content:center;
      flex-wrap:nowrap;
      overflow:hidden;
    }
    .nav-link{
      color:#222; text-decoration:none;
      font-size:13px; font-weight:650;
      padding:10px 0;
      position:relative;
      white-space:nowrap;
    }
    .nav-link::after{
      content:""; position:absolute; left:0; right:0; bottom:6px;
      height:2px; border-radius:2px;
      background: linear-gradient(90deg, var(--accent), var(--accent3));
      transform:scaleX(0); transform-origin:left;
      transition:transform .22s ease;
      opacity:.95;
    }
    .nav-link:hover::after{transform:scaleX(1)}

    .nav-actions{display:flex; align-items:center; gap:10px}
    .icon-btn{
      border:1px solid rgba(20,20,20,.12);
      background:#fff;
      width:42px; height:42px;
      border-radius:12px;
      display:inline-flex; align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    }
    .icon-btn:active{transform: translateY(1px)}
    .icon-btn span{font-size:18px; color:#111}
    .icon-lines{
      width:18px; height:12px; display:block; position:relative;
    }
    .icon-lines::before, .icon-lines::after, .icon-lines{
      background:transparent;
    }
    .icon-lines::before, .icon-lines::after{
      content:"";
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px;
      background: linear-gradient(90deg, var(--accent), var(--accent3));
    }
    .icon-lines::before{top:0}
    .icon-lines::after{bottom:0}
    .icon-lines{border-top:2px solid rgba(0,0,0,.75); border-bottom:2px solid transparent}
    .icon-btn:focus{outline:3px solid rgba(255,106,26,.25); outline-offset:2px}

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:11px 16px;
      border-radius:14px;
      font-weight:800;
      text-decoration:none;
      border:1px solid transparent;
      cursor:pointer;
      transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{transform: translateY(1px)}
    .btn-primary{
      background: linear-gradient(135deg, var(--accent), var(--accent3));
      color:#fff;
      box-shadow: 0 14px 35px rgba(255, 72, 47, .22);
      border-color: rgba(255,255,255,.10);
    }
    .btn-primary:hover{box-shadow: 0 18px 44px rgba(255, 72, 47, .26)}
    .btn-secondary{
      background: #fff;
      color:#1b1b1b;
      border-color: rgba(20,20,20,.14);
      box-shadow: 0 10px 30px rgba(17,24,39,.06);
    }
    .btn-secondary:hover{border-color: rgba(255,106,26,.40)}
    .btn-ghost{
      background: rgba(255,255,255,.65);
      color:#141414;
      border-color: rgba(20,20,20,.12);
      box-shadow: 0 10px 30px rgba(17,24,39,.04);
    }
    .btn-ghost:hover{border-color: rgba(255,106,26,.45)}
    .btn-small{padding:9px 12px; border-radius:12px; font-size:13px}
    .btn-full{width:100%}
    .btn-link{padding:0; border:none; background:none; box-shadow:none}

    .hero-bg{
      position:absolute; left:0; right:0; top:0; height:520px;
      background:
        radial-gradient(500px 240px at 15% 0%, rgba(255,106,26,.22), transparent 62%),
        radial-gradient(500px 260px at 70% 10%, rgba(255,61,46,.20), transparent 62%),
        linear-gradient(180deg, rgba(255,106,26,.06), transparent 60%);
      pointer-events:none;
      z-index:-1;
    }

    .hero{
      padding:44px 0 22px;
      position:relative;
      overflow:hidden;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:26px;
      align-items:stretch;
    }

    .pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px}
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,106,26,.10);
      border:1px solid rgba(255,106,26,.22);
      font-weight:900;
      font-size:12px;
    }
    .pill-dot{
      width:8px; height:8px; border-radius:99px;
      background: linear-gradient(135deg, var(--accent), var(--accent3));
      box-shadow: 0 10px 20px rgba(255,106,26,.35);
    }
    .pill-outline{
      background: rgba(255,255,255,.55);
      border:1px solid rgba(20,20,20,.12);
      color:#191919;
    }

    .hero-title{
      margin:0;
      font-size:38px;
      line-height:1.14;
      letter-spacing:-.6px;
    }
    .hero-lead{
      margin:16px 0 0;
      font-size:15.5px;
      line-height:1.7;
      color:var(--muted);
      max-width:58ch;
    }

    .hero-actions{
      display:flex; gap:12px; flex-wrap:wrap;
      margin-top:20px;
      align-items:center;
    }

    .hero-meta{
      margin-top:22px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .meta-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.6);
      border-radius:16px;
      box-shadow: 0 10px 30px rgba(17,24,39,.04);
    }
    .meta-icon{
      width:36px; height:36px;
      display:flex; align-items:center; justify-content:center;
      border-radius:14px;
      background: rgba(255,106,26,.12);
      color: #191919;
      border: 1px solid rgba(255,106,26,.18);
      flex:0 0 auto;
    }
    .meta-title{font-weight:900; font-size:13.5px}
    .meta-desc{color:var(--muted2); font-size:12.5px; margin-top:4px}

    .hero-side{
      display:flex; flex-direction:column; gap:16px;
    }

    .data-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      align-content:start;
    }
    .data-card{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,20,20,.10);
      border-radius:18px;
      padding:14px 14px 13px;
      box-shadow: 0 12px 35px rgba(17,24,39,.05);
      position:relative;
      overflow:hidden;
      transform: translateY(0);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .data-card:hover{
      transform: translateY(-2px);
      border-color: rgba(255,106,26,.28);
      box-shadow: 0 18px 48px rgba(17,24,39,.08);
    }
    .data-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .badge{
      font-size:12px; font-weight:900;
      padding:6px 10px;
      border-radius:999px;
      background: rgba(255,106,26,.12);
      border:1px solid rgba(255,106,26,.22);
    }
    .badge-warm{background: rgba(255,61,46,.10); border-color: rgba(255,61,46,.22)}
    .badge-accent{background: rgba(255,138,51,.12); border-color: rgba(255,138,51,.22)}
    .badge-outline{background: rgba(255,255,255,.55); border-color: rgba(20,20,20,.12)}
    .spark{
      width:28px; height:28px; border-radius:12px;
      background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.8), rgba(255,106,26,.22) 55%, rgba(255,61,46,.14) 100%);
      border:1px solid rgba(255,106,26,.18);
      position:absolute; right:10px; top:10px;
      filter: saturate(1.1);
      opacity:.9;
    }
    .spark-2{background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.86), rgba(255,61,46,.22) 55%, rgba(255,106,26,.14) 100%)}
    .spark-3{background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.86), rgba(255,138,51,.22) 55%, rgba(255,61,46,.12) 100%)}
    .spark-4{background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.86), rgba(20,20,20,.10) 55%, rgba(255,106,26,.10) 100%)}

    .data-value{margin-top:12px; font-weight:950; font-size:16px; letter-spacing:-.2px}
    .data-sub{margin-top:6px; color:var(--muted2); font-size:12.8px; line-height:1.4}

    .trust-panel{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,20,20,.10);
      border-radius:18px;
      padding:16px 16px 14px;
      box-shadow: 0 12px 35px rgba(17,24,39,.05);
    }
    .trust-head{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .panel-title{margin:0; font-size:16px; font-weight:950}
    .panel-tag{
      font-weight:900; font-size:12px;
      padding:7px 10px; border-radius:999px;
      background: rgba(255,106,26,.12);
      border:1px solid rgba(255,106,26,.22);
    }
    .trust-list{list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:10px}
    .trust-list li{display:flex; gap:10px; align-items:flex-start; color:#222; font-weight:700; font-size:13px; line-height:1.4}
    .check{
      width:18px; height:18px;
      background: rgba(255,106,26,.14);
      color:#1b1b1b;
      border:1px solid rgba(255,106,26,.28);
      border-radius:6px;
      display:flex; align-items:center; justify-content:center;
      font-size:12px;
      flex:0 0 auto;
      margin-top:1px;
    }
    .link-cta{
      display:inline-flex;
      margin-top:12px;
      font-weight:900;
      color: #1a1a1a;
      text-decoration:none;
      gap:10px; align-items:center;
    }
    .link-cta::after{
      content:"→";
      display:inline-flex;
      width:26px; height:26px;
      border-radius:10px;
      background: rgba(255,106,26,.12);
      border:1px solid rgba(255,106,26,.22);
      align-items:center; justify-content:center;
      transition: transform .18s ease;
      font-weight:900;
    }
    .link-cta:hover::after{transform: translateX(2px)}

    .section{
      padding:58px 0;
    }
    .section.alt{
      padding:56px 0;
      background: linear-gradient(180deg, rgba(255,106,26,.05), rgba(255,61,46,.03) 45%, transparent 100%);
    }
    .section.alt2{
      padding:56px 0;
      background: radial-gradient(1200px 600px at 12% 0%, rgba(255,106,26,.10), transparent 60%);
    }
    .section.alt3{
      padding:56px 0;
      background: linear-gradient(180deg, rgba(255,106,26,.04), rgba(255,255,255,.0));
    }
    .section.alt4{padding:56px 0; background: linear-gradient(180deg, rgba(255,61,46,.05), rgba(255,255,255,0) 60%);}
    .section.alt5{padding:56px 0; background: radial-gradient(900px 420px at 70% 0%, rgba(255,61,46,.10), transparent 55%);}
    .section.alt6{padding:56px 0; background: linear-gradient(180deg, rgba(255,106,26,.05), rgba(255,255,255,0) 60%);}
    .section.alt7{padding:56px 0; background: radial-gradient(1200px 520px at 20% 0%, rgba(255,106,26,.10), transparent 55%);}
    .section.alt8{padding:56px 0; background: radial-gradient(980px 440px at 80% 0%, rgba(255,61,46,.10), transparent 58%);}

    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
      margin-bottom:22px;
    }
    .section-head.split{align-items:flex-start}
    .section-title{
      margin:0;
      font-size:28px;
      letter-spacing:-.4px;
    }
    .section-sub{
      margin:10px 0 0;
      color:var(--muted);
      line-height:1.7;
      max-width:72ch;
      font-size:14.8px;
    }
    .head-actions{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}

    .feature-wrap{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
      align-items:stretch;
    }
    .feature-card{
      background: rgba(255,255,255,.68);
      border:1px solid rgba(20,20,20,.10);
      border-radius:20px;
      padding:18px 18px 16px;
      box-shadow: 0 14px 40px rgba(17,24,39,.05);
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .feature-card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,26,.30);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
    }
    .feature-card-2{background: rgba(255,250,246,.75)}
    .feature-card-3{background: rgba(255,255,255,.75)}
    .feature-icon{
      width:44px; height:44px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,106,26,.12);
      border:1px solid rgba(255,106,26,.22);
      color:#1a1a1a;
    }
    .feature-title{margin-top:12px; font-size:16px; font-weight:950; letter-spacing:-.2px}
    .feature-desc{margin-top:8px; color:var(--muted); line-height:1.7; font-size:13.8px}
    .chip-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
    .chip{
      padding:8px 10px;
      border-radius:999px;
      background: rgba(20,20,20,.04);
      border:1px solid rgba(20,20,20,.10);
      font-size:12.5px;
      font-weight:850;
      color:#222;
    }
    .chip-warm{
      background: rgba(255,106,26,.10);
      border-color: rgba(255,106,26,.22);
    }
    .chip-ink{
      background: rgba(20,20,20,.05);
      border-color: rgba(20,20,20,.14);
    }
    .chip-accent{
      background: rgba(255,61,46,.10);
      border-color: rgba(255,61,46,.22);
    }
    .chip-outline{
      background: rgba(255,255,255,.65);
      border-color: rgba(20,20,20,.14);
    }

    .card-grid{
      display:grid;
      gap:14px;
    }
    .services-grid{
      grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .service-card{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,20,20,.10);
      border-radius:20px;
      padding:18px 18px 16px;
      box-shadow: 0 14px 40px rgba(17,24,39,.05);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .service-card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,26,.30);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
    }
    .service-top{display:flex; align-items:center; gap:12px}
    .service-icon{font-size:20px}
    .card-title{margin:0; font-size:16px; font-weight:980; letter-spacing:-.2px}
    .card-desc{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.8px}
    .card-link{
      display:inline-flex; margin-top:12px;
      text-decoration:none; color:#161616;
      font-weight:900; align-items:center; gap:10px;
    }
    .card-link::after{
      content:"→";
      width:26px; height:26px;
      border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,106,26,.12);
      border:1px solid rgba(255,106,26,.22);
      transition: transform .18s ease;
    }
    .card-link:hover::after{transform: translateX(2px)}

    .platform-intro{
      margin-top:18px;
      border:1px solid rgba(20,20,20,.10);
      border-radius:24px;
      background:
        radial-gradient(900px 420px at 10% 0%, rgba(255,106,26,.10), transparent 55%),
        radial-gradient(800px 420px at 90% 20%, rgba(255,61,46,.08), transparent 55%),
        rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:22px;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:start;
    }
    .intro-title{margin:0; font-size:18px; font-weight:1000; letter-spacing:-.2px}
    .intro-desc{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:14px}
    .intro-bullets{margin-top:16px; display:flex; flex-direction:column; gap:10px}
    .bullet{display:flex; align-items:center; gap:10px; font-weight:820; color:#222; font-size:13.6px}
    .dot{
      width:10px; height:10px; border-radius:99px;
      background: linear-gradient(135deg, var(--accent), var(--accent3));
      box-shadow: 0 14px 30px rgba(255,72,47,.22);
      border:1px solid rgba(255,255,255,.55);
    }
    .intro-right{display:flex; flex-direction:column; gap:14px}
    .mini-stats{display:flex; flex-direction:column; gap:12px}
    .mini-stat{
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,20,20,.10);
      border-radius:18px;
      padding:14px 14px;
    }
    .mini-value{font-weight:1000; letter-spacing:-.2px}
    .mini-label{margin-top:6px; color:var(--muted2); line-height:1.6; font-size:13px}
    .callout{
      background: rgba(255,106,26,.10);
      border:1px solid rgba(255,106,26,.22);
      border-radius:20px;
      padding:14px 14px;
    }
    .callout-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .callout-badge{
      background: rgba(255,255,255,.70);
      border:1px solid rgba(20,20,20,.12);
      font-weight:950;
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
    }
    .callout-text{color:#1a1a1a; font-weight:880; font-size:13px}
    .callout-actions{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}

    .model-cloud{
      margin-top:18px;
      border:1px dashed rgba(20,20,20,.14);
      border-radius:24px;
      padding:18px;
      background: rgba(255,255,255,.45);
    }
    .model-head{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap}
    .model-sub{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:13.8px; max-width:55ch}
    .tags-grid{
      margin-top:14px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .tag{
      padding:9px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,20,20,.10);
      font-size:12.6px;
      font-weight:850;
      color:#1a1a1a;
    }
    .tag-strong{
      background: rgba(255,106,26,.10);
      border-color: rgba(255,106,26,.22);
    }

    .two-col{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      align-items:start;
    }
    .imageless-mock{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
      overflow:hidden;
      position:relative;
    }
    .timeline-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .timeline-title{font-weight:1000; letter-spacing:-.2px; font-size:16px}
    .timeline-sub{color:var(--muted2); font-weight:780; font-size:13px; margin-top:4px}

    .timeline-steps{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .t-step{
      display:flex; gap:14px; align-items:flex-start;
      padding:12px 12px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(20,20,20,.10);
      border-radius:18px;
    }
    .t-num{
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,106,26,.10);
      border:1px solid rgba(255,106,26,.22);
      font-weight:1100;
    }
    .t-title{font-weight:1000}
    .t-desc{margin-top:6px; color:var(--muted2); font-size:13.2px; line-height:1.6}

    .inline-cta{margin-top:16px; display:flex; gap:10px; flex-wrap:wrap}

    .side-panel{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
      position:relative;
      overflow:hidden;
    }
    .side-panel-head{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .side-title{margin:0; font-size:16px; font-weight:1000}
    .side-tag{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,106,26,.22);
      background: rgba(255,106,26,.10);
      font-weight:950;
      font-size:12px;
    }
    .side-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .side-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.66);
    }
    .side-item-icon{
      width:40px; height:40px;
      border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,61,46,.10);
      border:1px solid rgba(255,61,46,.18);
      flex:0 0 auto;
      font-size:18px;
    }
    .side-item-title{font-weight:1000}
    .side-item-desc{margin-top:6px; color:var(--muted2); font-size:13.2px; line-height:1.6}

    .side-bottom{margin-top:14px}
    .muted-note{margin-top:10px; color:var(--muted2); line-height:1.6; font-size:13px; font-weight:720}

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .solution-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .solution-card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,26,.30);
      box-shadow: 0 24px 70px rgba(17,24,39,.10);
    }
    .solution-top{display:flex; align-items:center; gap:12px}
    .solution-icon{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,106,26,.10);
      border:1px solid rgba(255,106,26,.22);
      font-size:18px;
      flex:0 0 auto;
    }
    .mini-bullets{margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.8; font-weight:720; font-size:13.2px}
    .mini-bullets li{margin:6px 0}

    .network-wrap{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:16px;
      align-items:stretch;
    }
    .network-left{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .map-mock{
      position:relative;
      border-radius:20px;
      border:1px solid rgba(20,20,20,.10);
      background:
        radial-gradient(900px 460px at 10% 0%, rgba(255,106,26,.12), transparent 55%),
        radial-gradient(850px 460px at 90% 10%, rgba(255,61,46,.10), transparent 55%),
        rgba(255,255,255,.60);
      overflow:hidden;
      min-height:240px;
    }
    .map-grid{
      position:absolute; inset:0;
      background:
        linear-gradient(to right, rgba(20,20,20,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(20,20,20,.06) 1px, transparent 1px);
      background-size: 36px 36px;
      opacity:.7;
    }
    .map-points{position:absolute; inset:0}
    .mp{
      position:absolute;
      width:10px; height:10px;
      border-radius:50%;
      background: linear-gradient(135deg, var(--accent), var(--accent3));
      box-shadow: 0 16px 40px rgba(255,72,47,.25);
      border:2px solid rgba(255,255,255,.9);
      transform: translate(-50%,-50%);
      opacity:.92;
    }
    .mp1{left:18%; top:40%}
    .mp2{left:28%; top:62%}
    .mp3{left:46%; top:48%}
    .mp4{left:58%; top:36%}
    .mp5{left:72%; top:52%}
    .mp6{left:84%; top:30%}
    .map-lines .ml{
      position:absolute;
      left:18%; top:40%;
      width:60%; height:2px;
      background: linear-gradient(90deg, rgba(255,106,26,.0), rgba(255,106,26,.55), rgba(255,61,46,.40), rgba(255,61,46,.0));
      transform-origin:left center;
      opacity:.55;
      transform: rotate(10deg);
      border-radius:2px;
    }
    .map-lines .ml2{left:28%; top:62%; width:55%; transform: rotate(-16deg); opacity:.50}
    .map-lines .ml3{left:46%; top:48%; width:48%; transform: rotate(6deg); opacity:.45}

    .network-note-title{font-weight:1000; font-size:16px}
    .network-note-desc{margin-top:8px; color:var(--muted2); line-height:1.7; font-weight:720; font-size:13.6px}

    .network-right{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:16px;
    }
    .network-cards{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .net-card{
      padding:14px 14px;
      border-radius:20px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.66);
    }
    .net-title{font-weight:1000; letter-spacing:-.2px}
    .net-desc{margin-top:8px; color:var(--muted2); font-size:13.4px; line-height:1.6; font-weight:720}
    .network-cta{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-start}

    .process-grid{
      display:grid;
      grid-template-columns: repeat(5, minmax(0,1fr));
      gap:12px;
      margin-top:10px;
    }
    .process-step{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 40px rgba(17,24,39,.05);
      padding:16px 14px 14px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      position:relative;
      overflow:hidden;
    }
    .process-step:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,26,.30);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
    }
    .process-num{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,106,26,.10);
      border:1px solid rgba(255,106,26,.22);
      font-weight:1100;
      margin-bottom:12px;
    }
    .process-title{font-weight:1000; letter-spacing:-.2px}
    .process-desc{margin-top:8px; color:var(--muted2); line-height:1.6; font-size:13.4px; font-weight:720}

    .note-banner{
      margin-top:18px;
      border-radius:24px;
      border:1px solid rgba(255,106,26,.24);
      background: linear-gradient(135deg, rgba(255,106,26,.13), rgba(255,61,46,.08));
      padding:16px 16px;
      box-shadow: 0 20px 60px rgba(255,72,47,.10);
      display:flex; gap:14px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
    }
    .note-icon{
      width:44px; height:44px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,255,255,.60);
      border:1px solid rgba(255,106,26,.22);
      font-size:18px;
      flex:0 0 auto;
    }
    .note-title{font-weight:1000}
    .note-desc{margin-top:6px; color:var(--muted2); font-weight:720; line-height:1.7; font-size:13.6px}
    .note-actions{display:flex; gap:10px}

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .case-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      overflow:hidden;
      display:flex; flex-direction:column;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
      min-height:340px;
    }
    .case-card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,26,.30);
      box-shadow: 0 24px 70px rgba(17,24,39,.10);
    }
    .case-media{
      padding:14px 14px 0;
    }
    .case-media img{
      width:100%; height:auto;
      border-radius:20px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
      display:block;
    }
    .case-body{padding:14px 16px 16px; display:flex; flex-direction:column; gap:10px; flex:1}
    .case-top{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}
    .case-tag{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,106,26,.10);
      border:1px solid rgba(255,106,26,.22);
      font-weight:950;
      font-size:12px;
    }
    .case-time{color:var(--muted2); font-weight:780; font-size:12.5px}
    .case-title{margin:0; font-size:16px; font-weight:1000; letter-spacing:-.2px}
    .case-desc{margin:0; color:var(--muted); line-height:1.7; font-weight:720; font-size:13.7px}
    .case-actions{display:flex; gap:10px; margin-top:auto; flex-wrap:wrap}

    .compare-top{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
      margin-top:8px;
    }
    .rating-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .rating-row{display:flex; gap:14px; align-items:flex-start}
    .rating-stars{
      color: var(--accent3);
      font-size:24px;
      letter-spacing:2px;
      line-height:1;
      margin-top:2px;
      flex:0 0 auto;
    }
    .rating-title{font-weight:1000; font-size:16px}
    .rating-score{margin-top:8px; color:#1a1a1a; font-weight:950}
    .score-num{
      color: var(--accentDeep);
      font-weight:1100;
      font-size:22px;
      letter-spacing:-.3px;
    }
    .rating-note{margin-top:10px; color:var(--muted2); line-height:1.7; font-weight:720; font-size:13.6px}

    .compare-side{
      display:flex; flex-direction:column; gap:12px;
    }
    .compare-side-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .compare-side-title{font-weight:1000; font-size:16px}
    .compare-bullets{margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.8; font-weight:720; font-size:13.6px}
    .compare-bullets li{margin:6px 0}

    .compare-table-wrap{
      margin-top:14px;
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .table-head{display:flex; justify-content:space-between; align-items:flex-start; gap:14px; flex-wrap:wrap}
    .table-title{margin:0; font-weight:1000; font-size:16px}
    .table-sub{margin-top:8px; color:var(--muted2); line-height:1.7; font-weight:720; font-size:13.6px}
    .table-scroll{overflow:auto; padding-bottom:6px}
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:780px;
      margin-top:10px;
      font-size:14px;
    }
    .compare-table th, .compare-table td{
      padding:14px 12px;
      border-bottom:1px solid rgba(20,20,20,.08);
      vertical-align:top;
    }
    .compare-table thead th{
      position:sticky;
      top:0;
      background: rgba(255,255,255,.82);
      border-bottom:1px solid rgba(20,20,20,.10);
      text-align:left;
      font-weight:1000;
    }
    .compare-table tbody tr:last-child td{border-bottom:0}
    .score-pill{
      display:inline-flex; align-items:center;
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.12);
      background: rgba(255,255,255,.65);
      font-weight:920;
      margin-right:8px;
      margin-top:8px;
      font-size:12.5px;
      color:#1a1a1a;
    }
    .score-pill.good{
      background: rgba(255,106,26,.10);
      border-color: rgba(255,106,26,.22);
    }
    .table-foot{
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      margin-top:12px;
      padding-top:10px;
      border-top:1px solid rgba(20,20,20,.08);
    }
    .table-foot-note{color:var(--muted); font-weight:850}
    .table-foot-actions{display:flex; gap:10px; flex-wrap:wrap}

    .match-wrap{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .form-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .form-head{margin-bottom:14px}
    .form-title{margin:0; font-size:16px; font-weight:1000}
    .form-desc{margin-top:8px; color:var(--muted2); font-weight:720; line-height:1.7; font-size:13.6px}
    .form-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
      align-items:start;
    }
    .field{display:flex; flex-direction:column; gap:8px}
    .field-full{grid-column: 1 / -1}
    .field-label{font-weight:900; font-size:13px}
    input, select, textarea{
      width:100%;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,20,20,.14);
      background: rgba(255,255,255,.80);
      color:#161616;
      font-weight:750;
      outline:none;
      transition: border-color .18s ease, box-shadow .18s ease, transform .12s ease;
    }
    textarea{resize:vertical; min-height:120px}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,106,26,.55);
      box-shadow: 0 0 0 4px rgba(255,106,26,.15);
    }
    .form-foot{
      grid-column: 1 / -1;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:2px;
    }
    .form-tips{
      display:flex; gap:10px; align-items:center;
      color:var(--muted2);
      font-weight:800;
      font-size:13px;
    }
    .tip-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--accent), var(--accent3));
      box-shadow: 0 14px 30px rgba(255,72,47,.22);
    }
    .form-safe{
      margin-top:14px;
      padding-top:14px;
      border-top:1px dashed rgba(20,20,20,.12);
      display:flex; flex-direction:column; gap:10px;
    }
    .safe-row{display:flex; gap:10px; align-items:center; color:var(--muted2); font-weight:780; font-size:13px}
    .safe-icon{
      width:28px; height:28px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
    }

    .price-hint{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.52));
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
      position:sticky;
      top:88px;
    }
    .price-head{margin-bottom:14px}
    .price-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .price-card{
      border-radius:20px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
      padding:14px;
    }
    .price-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .price-k{font-weight:1000}
    .price-rate{
      padding:7px 10px;
      border-radius:999px;
      background: rgba(20,20,20,.04);
      border:1px solid rgba(20,20,20,.12);
      font-weight:950;
      font-size:12px;
      color:#1a1a1a;
    }
    .price-rate-warm{
      background: rgba(255,106,26,.10);
      border-color: rgba(255,106,26,.22);
    }
    .price-rate-ink{
      background: rgba(20,20,20,.05);
      border-color: rgba(20,20,20,.14);
    }
    .price-rate-outline{
      background: rgba(255,255,255,.65);
      border-color: rgba(20,20,20,.14);
    }
    .price-mid{margin-top:10px; color:var(--muted2); font-weight:740; line-height:1.6; font-size:13.2px}
    .price-foot{margin-top:10px; font-weight:850; color:#222; line-height:1.6; font-size:13px}

    .price-cta{margin-top:14px; display:flex; flex-direction:column; gap:10px}

    .schedule-card{
      margin-top:14px;
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .schedule-head{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
    .schedule-tag{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,106,26,.22);
      background: rgba(255,106,26,.10);
      font-weight:950;
      font-size:12px;
    }
    .schedule-steps{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .sch{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      padding:12px 12px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
      border-radius:18px;
    }
    .sch-left{font-weight:1000; color:#1a1a1a}
    .sch-right{color:var(--muted2); font-weight:740; line-height:1.6; font-size:13.4px; max-width:60%}

    .training-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .training-overview{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .training-tag{
      display:inline-flex;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,61,46,.10);
      border:1px solid rgba(255,61,46,.22);
      font-weight:950;
      font-size:12px;
    }
    .training-title{margin-top:12px; font-weight:1100; font-size:18px; letter-spacing:-.2px}
    .training-desc{margin-top:10px; color:var(--muted2); line-height:1.7; font-weight:720; font-size:13.8px}

    .course-list{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .course-item{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 40px rgba(17,24,39,.05);
      padding:14px;
      display:flex; gap:14px; align-items:flex-start;
    }
    .course-num{
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,106,26,.10);
      border:1px solid rgba(255,106,26,.22);
      font-weight:1100;
      flex:0 0 auto;
    }
    .course-name{font-weight:1100}
    .course-desc{margin-top:6px; color:var(--muted2); font-weight:720; line-height:1.6; font-size:13.6px}
    .training-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

    .training-right{
      display:flex; flex-direction:column; gap:14px;
    }
    .kpi-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .kpi-title{font-weight:1100; font-size:16px}
    .kpi-chips{margin-top:12px; display:flex; flex-wrap:wrap; gap:10px}
    .kpi-list{margin:14px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .kpi-list li{display:flex; gap:10px; align-items:flex-start; font-weight:780; color:#222; line-height:1.5; font-size:13.4px}

    .qr-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .qr-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
    .qr-title{font-weight:1100; font-size:16px}
    .qr-sub{margin-top:8px; color:var(--muted2); font-weight:720; line-height:1.6; font-size:13.4px}
    .qr-img-wrap{
      margin-top:12px;
      border-radius:20px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
      padding:12px;
      display:flex; align-items:center; justify-content:center;
    }
    .qr-img-wrap img{
      width:100%;
      max-width:210px;
      height:auto;
      display:block;
    }
    .qr-foot{margin-top:14px}

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .help-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .help-card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,26,.30);
      box-shadow: 0 24px 70px rgba(17,24,39,.10);
    }
    .help-top{display:flex; align-items:center; gap:12px}
    .help-icon{
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,61,46,.10);
      border:1px solid rgba(255,61,46,.22);
      font-size:18px;
      flex:0 0 auto;
    }
    .faq-wrap{
      display:flex;
      flex-direction:column;
      gap:12px;
      margin-top:6px;
    }
    .faq-item{
      border-radius:22px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 14px 40px rgba(17,24,39,.05);
      overflow:hidden;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .faq-item:has(.faq-q:hover){
      border-color: rgba(255,106,26,.30);
    }
    .faq-q{
      width:100%;
      display:flex; align-items:center; justify-content:space-between; gap:14px;
      padding:14px 16px;
      background: transparent;
      border:none;
      text-align:left;
      cursor:pointer;
    }
    .faq-q span:first-child{
      font-weight:950;
      color:#1a1a1a;
      line-height:1.4;
      font-size:14px;
    }
    .faq-icon{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,20,20,.12);
      background: rgba(255,255,255,.65);
      display:flex; align-items:center; justify-content:center;
      font-weight:1100;
      color:#1a1a1a;
      flex:0 0 auto;
    }
    .faq-a{
      padding:0 16px 14px;
    }
    .faq-a-inner{
      color:var(--muted);
      font-weight:720;
      line-height:1.8;
      font-size:13.8px;
      border-top:1px dashed rgba(20,20,20,.12);
      padding-top:12px;
    }
    .faq-bottom-cta{
      margin-top:14px;
      border-radius:24px;
      border:1px solid rgba(255,106,26,.24);
      background: linear-gradient(135deg, rgba(255,106,26,.13), rgba(255,61,46,.08));
      padding:16px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      box-shadow: 0 20px 60px rgba(255,72,47,.10);
    }
    .faq-bottom-title{font-weight:1100; font-size:16px}
    .faq-bottom-desc{margin-top:8px; color:var(--muted2); font-weight:720; line-height:1.7; font-size:13.6px}

    .bible-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .bible-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .bible-card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,26,.30);
      box-shadow: 0 24px 70px rgba(17,24,39,.10);
    }
    .bible-icon{
      width:46px; height:46px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,106,26,.10);
      border:1px solid rgba(255,106,26,.22);
      font-size:18px;
    }

    .articles-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .articles-head{display:flex; align-items:flex-start; justify-content:space-between; gap:14px; flex-wrap:wrap}
    .articles-title{font-weight:1100; font-size:16px}
    .articles-sub{margin-top:8px; color:var(--muted2); font-weight:720; line-height:1.6; font-size:13.4px}
    .articles-badge{
      padding:7px 10px;
      border-radius:999px;
      border:1px solid rgba(255,106,26,.22);
      background: rgba(255,106,26,.10);
      font-weight:1000;
      font-size:12px;
      white-space:nowrap;
    }
    .articles-list{margin-top:12px; display:flex; flex-direction:column; gap:10px}
    .article-row{
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
    }
    .article-link{
      text-decoration:none;
      color:#141414;
      font-weight:950;
      line-height:1.4;
      max-width:62ch;
    }
    .article-meta{color:var(--muted2); font-weight:800; font-size:12.8px}
    .articles-bottom{
      margin-top:14px;
      padding-top:14px;
      border-top:1px dashed rgba(20,20,20,.12);
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .small-muted{color:var(--muted2); font-weight:780}
    .articles-bottom-actions{display:flex; gap:10px; flex-wrap:wrap}

    .contact-wrap{
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }
    .contact-cards{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .contact-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
      overflow:hidden;
    }
    .contact-card-3{display:flex; flex-direction:column; gap:14px}
    .contact-title{font-weight:1100; font-size:16px}
    .contact-row{
      display:flex; justify-content:space-between; gap:10px;
      padding:10px 0;
      border-bottom:1px dashed rgba(20,20,20,.10);
      font-weight:720;
    }
    .contact-row:last-child{border-bottom:none}
    .contact-k{color:var(--muted2); font-weight:850; font-size:13px}
    .contact-v{color:#141414; font-weight:950; font-size:13.2px; text-align:right; max-width:64%}

    .quick-links{display:flex; flex-direction:column; gap:10px; margin-top:10px}
    .quick-link{
      text-decoration:none;
      padding:11px 12px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
      font-weight:950;
      color:#141414;
      transition: transform .18s ease, border-color .18s ease;
    }
    .quick-link:hover{transform: translateY(-2px); border-color: rgba(255,106,26,.30)}
    .contact-qr-mini{display:flex; align-items:center; justify-content:flex-start; gap:12px; margin-top:auto}
    .contact-qr-mini img{
      width:92px; height:auto; border-radius:16px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
      display:block;
    }
    .qr-label{font-weight:950}

    .contact-form-panel{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.48);
      padding:0;
    }

    .partner-row{
      margin-top:14px;
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .partner-head{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; align-items:flex-start}
    .partner-title{font-weight:1100; font-size:16px}
    .partner-sub{margin-top:8px; color:var(--muted2); font-weight:720; line-height:1.6; font-size:13.4px}
    .partner-links{
      margin-top:12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .partner-links a{
      text-decoration:none;
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
      color:#141414;
      font-weight:950;
      font-size:13px;
      transition: transform .18s ease, border-color .18s ease;
    }
    .partner-links a:hover{transform: translateY(-2px); border-color: rgba(255,106,26,.30)}

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:stretch;
    }
    .join-card{
      border-radius:24px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 55px rgba(17,24,39,.06);
      padding:18px;
    }
    .join-head{display:flex; align-items:flex-start; gap:12px}
    .join-icon{
      width:46px; height:46px; border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,106,26,.10);
      border:1px solid rgba(255,106,26,.22);
      font-size:18px;
      flex:0 0 auto;
    }
    .join-title{font-weight:1100; font-size:16px}
    .join-sub{margin-top:8px; color:var(--muted2); font-weight:720; line-height:1.6; font-size:13.4px}
    .join-list{margin:14px 0 0; padding-left:18px; color:var(--muted); line-height:1.9; font-weight:720; font-size:13.6px}
    .join-list li{margin:6px 0}
    .join-actions{margin-top:16px}
    .join-card-2{background: rgba(255,255,255,.52)}
    .join-steps{margin-top:14px; display:flex; flex-direction:column; gap:12px}
    .j-step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:20px;
      border:1px solid rgba(20,20,20,.10);
      background: rgba(255,255,255,.65);
    }
    .j-left{
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(255,61,46,.10);
      border:1px solid rgba(255,61,46,.22);
      font-weight:1100;
      flex:0 0 auto;
    }
    .j-title{font-weight:1100}
    .j-desc{margin-top:6px; color:var(--muted2); font-weight:720; line-height:1.6; font-size:13.4px}

    .site-footer{
      margin-top:10px;
      background: var(--footer);
      color: var(--footerText);
      padding:34px 0 26px;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footer-inner{display:flex; flex-direction:column; gap:16px}
    .footer-top{
      display:flex; justify-content:space-between; align-items:flex-start; gap:18px; flex-wrap:wrap;
    }
    .footer-brand{display:flex; gap:12px; align-items:flex-start}
    .footer-brand .ai-page-logo{width:40px}
    .footer-name{font-weight:1100}
    .footer-sub{margin-top:6px; color:rgba(243,243,243,.75); font-weight:780; font-size:12.8px; line-height:1.6}
    .footer-links{display:flex; gap:18px; flex-wrap:wrap}
    .footer-col{
      min-width:160px;
      display:flex; flex-direction:column; gap:10px;
    }
    .footer-col-title{font-weight:1000; margin-bottom:2px}
    .footer-col a{
      color: rgba(243,243,243,.86);
      text-decoration:none;
      font-weight:800;
      font-size:13px;
    }
    .footer-col a:hover{color:#fff; text-decoration:underline}
    .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);
    }
    .footer-small{color:rgba(243,243,243,.78); font-weight:780; font-size:12.8px; line-height:1.6}
    .footer-right{display:flex; gap:14px; flex-wrap:wrap}
    .footer-right a{
      color: rgba(243,243,243,.86);
      text-decoration:none;
      font-weight:950;
      font-size:13px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
    }
    .footer-right a:hover{border-color: rgba(255,106,26,.45); color:#fff}

    .to-top{
      position:fixed;
      right:16px; bottom:18px;
      width:46px; height:46px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.12);
      background: rgba(255,255,255,.76);
      box-shadow: 0 18px 50px rgba(17,24,39,.12);
      cursor:pointer;
      opacity:0; transform: translateY(10px);
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
      z-index:60;
    }
    .to-top.show{
      opacity:1; transform: translateY(0);
      pointer-events:auto;
    }
    .to-top span{font-size:18px; color:#141414}
    .to-top:hover{
      border-color: rgba(255,106,26,.35);
      background: rgba(255,255,255,.90);
    }

    .float-kefu{
      position:fixed;
      left:16px; bottom:18px;
      z-index:60;
      display:flex; align-items:center; gap:10px;
      padding:11px 14px;
      border-radius:18px;
      border:1px solid rgba(20,20,20,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(17,24,39,.12);
      text-decoration:none;
      color:#141414;
      font-weight:1000;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .float-kefu:hover{
      transform: translateY(-2px);
      border-color: rgba(255,106,26,.35);
      background: rgba(255,255,255,.94);
    }
    .float-kefu-icon{width:30px; height:30px; border-radius:14px; display:flex; align-items:center; justify-content:center; background: rgba(255,106,26,.12); border:1px solid rgba(255,106,26,.22)}
    .float-kefu-text{font-size:13.5px}

    .mobile-menu{
      display:none;
    }

    @media (max-width: 980px){
      .nav{display:none}
      .mobile-menu{display:block; position:fixed; inset:0; background: rgba(0,0,0,.28); z-index:80; opacity:0; pointer-events:none; transition: opacity .18s ease}
      .mobile-menu.open{opacity:1; pointer-events:auto}
      .mobile-menu-inner{
        position:absolute; right:0; top:0; bottom:0;
        width:min(380px, 86vw);
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(10px);
        border-left:1px solid rgba(20,20,20,.10);
        padding:16px;
        transform: translateX(12px);
        transition: transform .18s ease;
      }
      .mobile-menu.open .mobile-menu-inner{transform: translateX(0)}
      .mobile-menu-head{
        display:flex; align-items:center; justify-content:space-between; gap:12px;
        margin-bottom:10px;
      }
      .mobile-menu-title{font-weight:1100; font-size:16px}
      .mobile-menu-close.icon-btn{width:42px; height:42px}
      .mobile-link{
        display:block;
        text-decoration:none;
        padding:12px 12px;
        border-radius:18px;
        border:1px solid rgba(20,20,20,.10);
        background: rgba(255,255,255,.65);
        font-weight:950;
        color:#141414;
        margin-top:10px;
      }
      .mobile-cta{
        margin-top:14px;
        display:inline-flex;
        width:100%;
        justify-content:center;
        background: linear-gradient(135deg, var(--accent), var(--accent3));
        color:#fff;
        padding:12px 14px;
        border-radius:18px;
        text-decoration:none;
        font-weight:1100;
        border:1px solid rgba(255,255,255,.10);
      }
      .hero-inner{grid-template-columns: 1fr; gap:16px}
      .hero-title{font-size:30px}
      .hero-meta{grid-template-columns: 1fr; }
      .data-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
      .feature-wrap{grid-template-columns: 1fr}
      .services-grid{grid-template-columns: 1fr}
      .platform-intro{grid-template-columns: 1fr}
      .two-col{grid-template-columns: 1fr}
      .grid-3{grid-template-columns: 1fr}
      .network-wrap{grid-template-columns: 1fr}
      .process-grid{grid-template-columns: 1fr; }
      .case-grid{grid-template-columns: 1fr}
      .compare-top{grid-template-columns: 1fr}
      .match-wrap{grid-template-columns: 1fr}
      .price-hint{position:relative; top:auto}
      .training-grid{grid-template-columns: 1fr}
      .help-grid{grid-template-columns: 1fr}
      .bible-grid{grid-template-columns: 1fr 1fr}
      .contact-cards{grid-template-columns: 1fr}
      .join-grid{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .float-kefu-text{display:none}
      .to-top{right:14px}
    }

    @media (prefers-reduced-motion: reduce){
      *{scroll-behavior:auto !important}
      .data-card, .service-card, .feature-card, .solution-card, .case-card, .help-card, .bible-card{transition:none !important}
      .btn{transition:none !important}
    }

    .reveal{opacity:0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease}
    .reveal.is-revealed{opacity:1; transform: translateY(0)}