:root{
      --bg: #f6fbf8;
      --paper: #ffffff;
      --text: #121826;
      --muted:#5b6475;
      --border: rgba(16,24,40,.10);
      --shadow: 0 18px 50px rgba(16,24,40,.10);
      --shadow-soft: 0 10px 28px rgba(16,24,40,.10);
      --green:#12c26a;
      --green-2:#3de07e;
      --green-dark:#0ea65a;
      --accent:#1b8f5a;
      --blue:#0b6bff;
      --card:#ffffff;
      --chip:#eafff4;
      --warning:#ffb020;
      --danger:#ff4d4f;
      --radius: 18px;
      --radius-sm: 12px;
      --container: 1160px;
    }
    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC","Noto Sans SC","Microsoft YaHei", Arial, "Helvetica Neue", sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 360px at 15% 0%, rgba(18,194,106,.18) 0%, rgba(18,194,106,0) 60%),
        radial-gradient(780px 280px at 85% 10%, rgba(61,224,126,.14) 0%, rgba(61,224,126,0) 60%),
        linear-gradient(180deg, #f7fffb 0%, var(--bg) 45%, #f6f7fb 100%);
    }
    a{ color:inherit; text-decoration:none; }
    .container{
      width: min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }
    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
      background:#0b1320; color:#fff; border-radius:10px; z-index:9999;
    }

    .site-header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(246,251,248,.75);
      border-bottom: 1px solid rgba(16,24,40,.08);
    }
    .nav-container{
      display:flex; align-items:center; justify-content:space-between;
      padding: 14px 0;
      gap: 16px;
    }
    .brand{
      display:flex; align-items:center; gap: 12px;
      min-width: 260px;
    }
    .brand-link{
      display:flex; align-items:center; justify-content:center;
      width: 44px; height: 44px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(18,194,106,.18), rgba(18,194,106,.06));
      border: 1px solid rgba(18,194,106,.25);
      box-shadow: 0 10px 24px rgba(18,194,106,.10);
      overflow:hidden;
    }
    .brand-meta{ line-height:1.2; }
    .brand-name{ font-weight: 860; letter-spacing:.2px; }
    .brand-sub{ font-size: 12px; color: var(--muted); margin-top: 4px; }

    .nav{ display:flex; align-items:center; gap: 12px; }
    .nav-toggle{
      display:none;
      border:1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.6);
      border-radius: 14px;
      padding: 10px 12px;
      color: var(--text);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    }
    .nav-toggle:active{ transform: translateY(1px); }
    .nav-toggle-icon{
      width: 18px; height: 12px; display:inline-block; position:relative;
    }
    .nav-toggle-icon::before,.nav-toggle-icon::after{
      content:""; position:absolute; left:0; right:0; height:2px; border-radius:2px; background: rgba(16,24,40,.75);
    }
    .nav-toggle-icon::before{ top:0; }
    .nav-toggle-icon::after{ bottom:0; }
    .nav-toggle-icon{
      background: linear-gradient(180deg, rgba(16,24,40,.75) 0 0);
      border-radius:2px;
    }
    .nav-toggle-icon{
      background: transparent;
    }
    .nav-toggle-icon span{ display:none; }
    .nav-toggle-icon::before{ box-shadow: 0 5px 0 rgba(16,24,40,.55); }
    .nav-toggle-label{ margin-left:10px; font-weight:700; font-size:14px; }

    .nav-links{
      display:flex; align-items:center; gap: 18px; flex-wrap:nowrap;
    }
    .nav-link{
      font-size:14px; color: rgba(18,24,38,.86);
      padding: 8px 10px; border-radius: 12px;
      transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background: rgba(18,194,106,.10);
      box-shadow: 0 10px 22px rgba(18,194,106,.10);
      transform: translateY(-1px);
    }
    .nav-cta{
      border: 1px solid rgba(18,194,106,.35);
      background: linear-gradient(180deg, rgba(18,194,106,.18), rgba(18,194,106,.08));
      padding: 8px 14px;
      font-weight: 750;
    }

    .mobile-menu{
      display:none;
      border-top: 1px solid rgba(16,24,40,.08);
      background: rgba(246,251,248,.95);
    }
    .mobile-menu-inner{
      display:flex; flex-direction:column;
      padding: 12px 0 18px;
      gap: 8px;
    }
    .mobile-link{
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      color: rgba(18,24,38,.9);
      font-weight: 650;
      transition: transform .15s ease, box-shadow .2s ease;
    }
    .mobile-link:active{ transform: translateY(1px); }
    .mobile-strong{
      border-color: rgba(18,194,106,.35);
      background: linear-gradient(180deg, rgba(18,194,106,.22), rgba(18,194,106,.10));
    }

    .hero{
      position:relative;
      padding: 38px 0 22px;
      overflow:hidden;
    }
    .hero-inner{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items:start;
    }
    .hero-left{ padding: 18px 0 6px; }
    .hero-pill{
      display:inline-flex; align-items:center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(18,194,106,.14);
      border: 1px solid rgba(18,194,106,.28);
      color: rgba(12,100,60,.95);
      font-weight: 760;
      letter-spacing:.2px;
      box-shadow: 0 18px 40px rgba(18,194,106,.10);
      margin-bottom: 14px;
    }
    .hero-title{
      margin: 0;
      font-size: clamp(26px, 4.2vw, 44px);
      line-height:1.12;
      letter-spacing: -0.5px;
      font-weight: 920;
      color: #0f172a;
    }
    .hero-desc{
      margin: 14px 0 18px;
      font-size: 15.5px;
      line-height:1.8;
      color: rgba(18,24,38,.78);
      max-width: 54ch;
    }
    .hero-actions{
      display:flex; gap: 12px; flex-wrap:wrap;
      margin: 16px 0 18px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap: 10px;
      border-radius: 14px;
      padding: 12px 16px;
      border: 1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.7);
      color: rgba(18,24,38,.92);
      font-weight: 760;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{ transform: translateY(1px); }
    .btn:hover{ box-shadow: 0 18px 40px rgba(16,24,40,.12); border-color: rgba(16,24,40,.16); }
    .btn-primary{
      background: linear-gradient(180deg, rgba(18,194,106,.95) 0%, rgba(14,166,90,.95) 100%);
      border-color: rgba(18,194,106,.55);
      color: #052114;
      box-shadow: 0 22px 55px rgba(18,194,106,.22);
    }
    .btn-primary:hover{
      background: linear-gradient(180deg, rgba(61,224,126,.98) 0%, rgba(14,166,90,.98) 100%);
      box-shadow: 0 28px 70px rgba(18,194,106,.28);
    }
    .btn-ghost{
      background: rgba(255,255,255,.65);
      border-color: rgba(18,194,106,.25);
    }
    .btn-sm{ padding: 10px 12px; border-radius: 12px; font-weight: 720; font-size: 13px; }
    .btn-block{ width:100%; }

    .hero-fast{
      display:grid; grid-template-columns: repeat(3, 1fr);
      gap: 10px; margin-top: 18px;
    }
    .fast-item{
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.68);
      box-shadow: 0 18px 48px rgba(16,24,40,.06);
      min-height: 84px;
      display:flex; flex-direction:column; justify-content:center;
    }
    .fast-top{ font-weight: 880; letter-spacing:.2px; }
    .fast-bottom{ margin-top: 6px; color: rgba(18,24,38,.72); font-size: 12.8px; line-height:1.5; }

    .hero-right{
      position:relative;
      padding: 10px 0 0;
    }
    .glow-frame{
      position:absolute; inset: -30px -20px auto -20px;
      height: 220px;
      background: radial-gradient(closest-side, rgba(18,194,106,.22), rgba(18,194,106,0) 70%);
      pointer-events:none;
      filter: blur(2px);
    }
    .data-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
      position:relative;
    }
    .data-card{
      border-radius: 18px;
      border: 1px solid rgba(16,24,40,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.58));
      padding: 14px 14px;
      box-shadow: 0 18px 44px rgba(16,24,40,.08);
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .data-card:hover{
      transform: translateY(-3px);
      box-shadow: 0 26px 70px rgba(16,24,40,.12);
      border-color: rgba(18,194,106,.25);
    }
    .data-kicker{ font-size: 12px; color: rgba(18,24,38,.66); font-weight: 740; }
    .data-value{ margin-top: 6px; font-weight: 940; font-size: 16.5px; letter-spacing:.2px; }
    .data-note{ margin-top: 8px; font-size: 12.8px; color: rgba(18,24,38,.70); line-height:1.55; }

    .hero-side{ margin-top: 12px; }
    .side-card{
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 22px 65px rgba(16,24,40,.10);
      padding: 14px 14px;
      overflow:hidden;
    }
    .side-title{ font-weight: 900; letter-spacing:.2px; margin-bottom: 10px; }
    .side-list{ display:flex; flex-direction:column; gap: 9px; }
    .side-link{
      padding: 10px 10px;
      border-radius: 14px;
      border: 1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.68);
      transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; align-items:center; justify-content:space-between; gap: 10px;
    }
    .side-link:hover{ transform: translateY(-2px); box-shadow: 0 18px 45px rgba(16,24,40,.10); border-color: rgba(18,194,106,.24); }
    .side-link span{ color: rgba(18,24,38,.86); font-weight: 720; font-size: 13.5px; line-height:1.3; }
    .side-link em{
      font-style:normal;
      font-weight: 900;
      color: rgba(14,166,90,.95);
      background: rgba(18,194,106,.12);
      border: 1px solid rgba(18,194,106,.22);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      white-space:nowrap;
    }
    .side-more{ margin-top: 10px; }
    .link-inline{
      color: rgba(14,166,90,.98);
      font-weight: 780;
      position:relative;
      padding-bottom: 2px;
      border-bottom: 1px dashed rgba(14,166,90,.40);
      transition: color .2s ease, border-color .2s ease;
    }
    .link-inline:hover{ color: rgba(8,120,65,.98); border-color: rgba(8,120,65,.55); }

    .hero-wave{
      position:absolute; left:0; right:0; bottom:-30px; height: 110px;
      background: radial-gradient(900px 80px at 25% 20%, rgba(18,194,106,.20), rgba(18,194,106,0) 70%),
                  radial-gradient(820px 70px at 75% 10%, rgba(61,224,126,.18), rgba(61,224,126,0) 70%);
      pointer-events:none;
      opacity:.85;
    }

    .section{ padding: 54px 0; }
    .section-soft{ padding: 60px 0; }
    .section-head{ margin-bottom: 22px; }
    .section-title{
      margin: 0;
      font-size: clamp(20px, 2.6vw, 30px);
      line-height:1.2;
      letter-spacing: -0.3px;
      font-weight: 930;
      color:#0f172a;
    }
    .section-sub{
      margin: 10px 0 0;
      color: rgba(18,24,38,.72);
      line-height:1.8;
      font-size: 14.8px;
      max-width: 78ch;
    }

    .capabilities{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }
    .cap-card{
      border-radius: 18px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding: 16px 14px;
      box-shadow: 0 22px 60px rgba(16,24,40,.07);
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
      min-height: 120px;
    }
    .cap-card:hover{
      transform: translateY(-3px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 30px 80px rgba(16,24,40,.12);
    }
    .cap-icon{
      width: 38px; height: 38px;
      display:flex; align-items:center; justify-content:center;
      border-radius: 14px;
      background: rgba(18,194,106,.12);
      border: 1px solid rgba(18,194,106,.22);
      color: rgba(12,100,60,.95);
      font-weight: 950;
      margin-bottom: 10px;
    }
    .cap-title{ font-weight: 920; letter-spacing:.2px; }
    .cap-desc{ margin-top: 8px; color: rgba(18,24,38,.72); line-height:1.7; font-size: 13.6px; }

    .service-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .service-card{
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 26px 74px rgba(16,24,40,.08);
      padding: 18px 16px;
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .service-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.20);
    }
    .service-card:hover{
      transform: translateY(-4px);
      border-color: rgba(18,194,106,.28);
      box-shadow: 0 34px 95px rgba(16,24,40,.12);
    }
    .service-tag{
      display:inline-flex; align-items:center;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(18,194,106,.12);
      border: 1px solid rgba(18,194,106,.22);
      color: rgba(12,100,60,.98);
      font-weight: 880;
      font-size: 13px;
    }
    .service-title{
      margin-top: 12px;
      font-size: 18px;
      font-weight: 940;
      letter-spacing:-0.2px;
    }
    .bullets{
      margin: 12px 0 0;
      padding: 0;
      list-style:none;
      display:flex; flex-direction:column; gap: 8px;
      color: rgba(18,24,38,.74);
      line-height:1.6;
      font-size: 13.8px;
    }
    .bullets li::before{
      content:"";
      width: 8px; height: 8px; border-radius: 3px;
      background: rgba(18,194,106,.55);
      display:inline-block; margin-right: 10px;
      vertical-align: middle;
      box-shadow: 0 10px 18px rgba(18,194,106,.18);
    }
    .service-foot{
      margin-top: 14px;
      display:flex; gap: 14px; flex-wrap:wrap; align-items:center;
    }

    .chips-row{
      margin-top: 18px;
      display:flex; flex-wrap:wrap; gap: 10px;
    }
    .chip{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(18,194,106,.20);
      background: rgba(234,255,244,.75);
      color: rgba(12,100,60,.98);
      font-weight: 820;
      font-size: 13px;
    }

    .timeline{
      display:grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 10px;
      align-items:stretch;
    }
    .step{
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 22px 60px rgba(16,24,40,.07);
      padding: 14px 14px;
      min-height: 168px;
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
      position:relative;
      overflow:hidden;
    }
    .step::after{
      content:"";
      position:absolute; inset:-1px auto auto -1px;
      width: 180px; height: 80px;
      background: radial-gradient(closest-side, rgba(18,194,106,.18), rgba(18,194,106,0) 70%);
      pointer-events:none;
      opacity:.8;
    }
    .step:hover{
      transform: translateY(-3px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 30px 80px rgba(16,24,40,.12);
    }
    .step-badge{
      font-size: 12px; font-weight: 900;
      color: rgba(12,100,60,.98);
      background: rgba(18,194,106,.12);
      border: 1px solid rgba(18,194,106,.22);
      border-radius: 999px;
      padding: 7px 10px;
      width: fit-content;
      position:relative;
    }
    .step-title{
      margin-top: 12px;
      font-weight: 930;
      font-size: 15.5px;
      letter-spacing: -0.2px;
      position:relative;
    }
    .step-desc{
      margin-top: 10px;
      color: rgba(18,24,38,.72);
      line-height:1.75;
      font-size: 13.6px;
      position:relative;
    }

    .solution-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .solution-card{
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 26px 74px rgba(16,24,40,.07);
      padding: 18px 16px;
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
      min-height: 168px;
    }
    .solution-card:hover{
      transform: translateY(-4px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 34px 95px rgba(16,24,40,.12);
    }
    .solution-card.highlight{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .solution-title{ font-weight: 950; font-size: 16.5px; letter-spacing:-.2px; }
    .solution-desc{ margin-top: 10px; color: rgba(18,24,38,.72); line-height:1.8; font-size: 13.8px; }
    .solution-badges{ margin-top: 14px; display:flex; flex-wrap:wrap; gap: 10px; }
    .pill{
      padding: 9px 11px;
      border-radius: 999px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      color: rgba(18,24,38,.86);
      font-weight: 800;
      font-size: 13px;
    }
    .solution-card.highlight .pill{
      border-color: rgba(18,194,106,.22);
      background: rgba(234,255,244,.75);
      color: rgba(12,100,60,.98);
    }

    .network-wrap{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      align-items:stretch;
    }
    .network-map{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 28px 85px rgba(16,24,40,.08);
      position:relative;
      overflow:hidden;
      min-height: 320px;
    }
    .map-grid{
      position:absolute; inset:0;
      background:
        linear-gradient(to right, rgba(16,24,40,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16,24,40,.06) 1px, transparent 1px);
      background-size: 40px 40px;
      opacity:.55;
    }
    .map-lines{
      position:absolute; inset:0;
      background:
        radial-gradient(800px 200px at 20% 25%, rgba(18,194,106,.20), rgba(18,194,106,0) 60%),
        radial-gradient(700px 190px at 78% 45%, rgba(61,224,126,.16), rgba(61,224,126,0) 62%);
      opacity:.9;
    }
    .map-nodes span{
      position:absolute; width: 12px; height: 12px; border-radius: 999px;
      background: rgba(18,194,106,.95);
      box-shadow: 0 0 0 6px rgba(18,194,106,.18);
      animation: pulse 2.2s ease-in-out infinite;
    }
    .n1{ left: 22%; top: 40%; animation-delay: .0s;}
    .n2{ left: 35%; top: 28%; animation-delay: .35s;}
    .n3{ left: 56%; top: 46%; animation-delay: .7s;}
    .n4{ left: 72%; top: 30%; animation-delay: .55s;}
    .n5{ left: 60%; top: 70%; animation-delay: 1.0s;}
    @keyframes pulse{
      0%,100%{ transform: scale(1); box-shadow: 0 0 0 6px rgba(18,194,106,.18); }
      50%{ transform: scale(1.12); box-shadow: 0 0 0 10px rgba(18,194,106,.08); }
    }
    .map-labels{
      position:absolute; inset:0;
      display:flex; flex-direction:column; justify-content:space-between; padding: 18px 20px;
      pointer-events:none;
    }
    .map-label{
      width: fit-content;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(16,24,40,.10);
      color: rgba(18,24,38,.80);
      font-weight: 800;
      font-size: 12.5px;
    }
    .map-label:nth-child(1){ align-self:flex-start; margin-left: 10px; }
    .map-label:nth-child(2){ align-self:flex-start; margin-left: 140px; }
    .map-label:nth-child(3){ align-self:flex-start; margin-left: 300px; }
    .map-label:nth-child(4){ align-self:flex-start; margin-left: 430px; }
    .map-label:nth-child(5){ align-self:flex-start; margin-left: 360px; }

    .network-right{
      display:flex; flex-direction:column;
      gap: 12px;
    }
    .network-cards{
      display:flex; flex-direction:column; gap: 12px;
      height:100%;
    }
    .network-card{
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 24px 70px rgba(16,24,40,.08);
      padding: 16px 14px;
    }
    .network-title{ font-weight: 940; letter-spacing:-.2px; }
    .network-desc{ margin-top: 10px; color: rgba(18,24,38,.72); line-height:1.75; font-size: 13.8px; }
    .network-actions{
      display:flex; gap: 12px; flex-wrap:wrap;
      margin-top:auto;
    }

    .process-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }
    .process-card{
      border-radius: 22px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 28px 90px rgba(16,24,40,.08);
      padding: 18px 16px;
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
      min-height: 210px;
    }
    .process-card:hover{
      transform: translateY(-4px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 36px 120px rgba(16,24,40,.12);
    }
    .process-top{
      display:flex; align-items:center; gap: 12px;
    }
    .process-icon{
      width: 44px; height: 44px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      color: rgba(12,100,60,.98);
      background: rgba(18,194,106,.12);
      border: 1px solid rgba(18,194,106,.24);
    }
    .process-title{ font-weight: 950; letter-spacing:-.2px; font-size: 16px; }
    .process-desc{
      margin-top: 12px;
      color: rgba(18,24,38,.72);
      line-height:1.8;
      font-size: 13.8px;
    }
    .process-list{ margin-top: 12px; display:flex; flex-direction:column; gap: 10px; }
    .process-line{ display:flex; align-items:center; gap: 10px; color: rgba(18,24,38,.76); font-weight: 760; }
    .dot{ width: 8px; height: 8px; border-radius: 999px; background: rgba(18,194,106,.55); box-shadow: 0 10px 18px rgba(18,194,106,.16); }

    .compare-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items:start;
    }
    .rating-card{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
      position:relative;
      overflow:hidden;
    }
    .rating-card::before{
      content:"";
      position:absolute; inset:-120px -120px auto auto;
      width: 260px; height: 260px;
      background: radial-gradient(closest-side, rgba(18,194,106,.18), rgba(18,194,106,0) 70%);
      pointer-events:none;
    }
    .rating-top{ display:flex; align-items:flex-end; justify-content:space-between; gap: 12px; position:relative; }
    .rating-stars{ display:flex; gap: 3px; color: rgba(18,194,106,.95); font-size: 20px; }
    .star{ text-shadow: 0 12px 30px rgba(18,194,106,.18); }
    .rating-score{ font-weight: 980; font-size: 34px; letter-spacing:-1px; }
    .rating-unit{ font-size: 14px; color: rgba(18,24,38,.70); font-weight: 900; margin-left: 6px; }
    .rating-text{ margin-top: 12px; color: rgba(18,24,38,.78); font-weight: 820; position:relative; }
    .em{ color: rgba(12,100,60,.98); font-weight: 950; }
    .rating-tips{ margin-top: 10px; color: rgba(18,24,38,.70); line-height:1.8; font-size: 13.8px; position:relative; }
    .rating-list{ margin-top: 14px; display:flex; flex-direction:column; gap: 9px; position:relative; }
    .rating-item{
      display:flex; align-items:center; gap: 10px;
      font-weight: 820; color: rgba(18,24,38,.82);
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.62);
    }
    .tick{ width: 18px; height: 18px; display:inline-flex; align-items:center; justify-content:center; border-radius: 7px; background: rgba(18,194,106,.12); border: 1px solid rgba(18,194,106,.22); color: rgba(12,100,60,.98); font-weight: 950; }

    .table-wrap{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
    }
    .table-head{ margin-bottom: 12px; }
    .table-title{ font-weight: 950; font-size: 16.5px; letter-spacing:-.2px; }
    .table-sub{ margin-top: 8px; color: rgba(18,24,38,.70); line-height:1.8; font-size: 13.8px; }
    .table-scroll{ overflow:auto; border-radius: 16px; border: 1px solid rgba(16,24,40,.10); }
    .compare-table{
      width:100%;
      border-collapse: collapse;
      min-width: 680px;
      background: rgba(255,255,255,.68);
    }
    .compare-table th, .compare-table td{
      padding: 14px 12px;
      border-bottom: 1px solid rgba(16,24,40,.08);
      text-align:left;
      vertical-align:top;
      font-size: 13.8px;
    }
    .compare-table thead th{
      position:sticky; top:0; z-index:1;
      background: linear-gradient(180deg, rgba(18,194,106,.14), rgba(18,194,106,.06));
      color: rgba(12,100,60,.98);
      font-weight: 920;
      border-bottom: 1px solid rgba(18,194,106,.25);
    }
    .badge{
      display:inline-flex; align-items:center; gap: 8px;
      padding: 8px 10px;
      border-radius: 999px;
      font-weight: 900;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
    }
    .badge.good{
      color: rgba(12,100,60,.98);
      border-color: rgba(18,194,106,.28);
      background: rgba(234,255,244,.75);
    }
    .badge.warn{
      color: rgba(153,93,0,.98);
      border-color: rgba(255,176,32,.35);
      background: rgba(255,176,32,.12);
    }

    .table-actions{
      margin-top: 14px;
      display:flex; gap: 12px; flex-wrap:wrap;
    }

    .two-col{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items:start;
    }
    .match-card{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
    }
    .form{ display:flex; flex-direction:column; gap: 12px; }
    .form-row{ display:flex; flex-direction:column; gap: 8px; }
    .label{ font-weight: 860; color: rgba(18,24,38,.88); }
    .input, .select, .textarea{
      width:100%;
      border: 1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.78);
      border-radius: 14px;
      padding: 12px 12px;
      font-size: 14.5px;
      color: rgba(18,24,38,.95);
      outline:none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .textarea{ resize: vertical; min-height: 108px; }
    .input:focus, .select:focus, .textarea:focus{
      border-color: rgba(18,194,106,.40);
      box-shadow: 0 0 0 4px rgba(18,194,106,.12);
      background: rgba(255,255,255,.92);
    }
    .form-foot{ margin-top: 4px; }
    .form-hint{
      margin-top: 10px;
      color: rgba(18,24,38,.66);
      font-size: 12.8px;
      line-height:1.6;
    }

    .match-side{
      display:flex; flex-direction:column;
    }
    .side-stack{
      display:flex; flex-direction:column; gap: 12px;
      height:100%;
    }
    .note-card{
      border-radius: 22px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 28px 90px rgba(16,24,40,.08);
      padding: 16px 14px;
    }
    .note-title{ font-weight: 950; letter-spacing:-.2px; margin-bottom: 10px; }
    .note-items{ display:flex; flex-direction:column; gap: 10px; }
    .note-item{ display:flex; align-items:center; gap: 10px; font-weight: 820; color: rgba(18,24,38,.80); }
    .tag-cloud{ display:flex; flex-wrap:wrap; gap: 10px; }
    .t{
      padding: 9px 11px;
      border-radius: 999px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      font-weight: 820;
      color: rgba(18,24,38,.85);
      font-size: 13px;
      transition: transform .15s ease, border-color .2s ease;
    }
    .t:hover{ transform: translateY(-2px); border-color: rgba(18,194,106,.26); }
    .model-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 10px;
      margin-top: 10px;
    }
    .mini-pill{
      padding: 10px 10px;
      border-radius: 14px;
      border: 1px solid rgba(18,194,106,.22);
      background: rgba(234,255,244,.70);
      color: rgba(12,100,60,.98);
      font-weight: 920;
      font-size: 13.5px;
      text-align:center;
    }
    .note-foot{ margin-top: 12px; }

    .training-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items:stretch;
    }
    .training-card{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
    }
    .training-card.highlight{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .training-title{ font-weight: 980; font-size: 16.5px; letter-spacing:-.2px; margin-bottom: 12px; }
    .checklist{
      list-style:none; padding:0; margin:0;
      display:flex; flex-direction:column; gap: 10px;
      color: rgba(18,24,38,.82);
      font-weight: 820;
    }
    .checklist li{
      padding: 11px 12px;
      border-radius: 16px;
      border: 1px solid rgba(16,24,40,.08);
      background: rgba(255,255,255,.64);
      display:flex; align-items:center; gap: 10px;
      line-height:1.4;
    }
    .training-desc{
      color: rgba(18,24,38,.72);
      line-height:1.85;
      font-size: 13.9px;
    }
    .training-metrics{
      margin-top: 14px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 10px;
    }
    .metric{
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
    }
    .metric-num{ font-weight: 960; color: rgba(12,100,60,.98); letter-spacing:-.2px; }
    .metric-sub{ margin-top: 6px; color: rgba(18,24,38,.72); line-height:1.6; font-size: 13px; font-weight: 780; }
    .training-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap:wrap; }

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }
    .help-card{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 28px 90px rgba(16,24,40,.08);
      padding: 18px 16px;
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
      min-height: 165px;
    }
    .help-card:hover{
      transform: translateY(-4px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 38px 120px rgba(16,24,40,.12);
    }
    .help-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .help-title{ font-weight: 980; letter-spacing:-.2px; font-size: 16.5px; }
    .help-desc{ margin-top: 10px; color: rgba(18,24,38,.72); line-height:1.8; font-size: 13.9px; }
    .help-links{ margin-top: 14px; display:flex; gap: 14px; flex-wrap:wrap; }

    .callout{
      margin-top: 14px;
      border-radius: 26px;
      border: 1px solid rgba(18,194,106,.20);
      background: linear-gradient(180deg, rgba(18,194,106,.14), rgba(255,255,255,.62));
      box-shadow: 0 40px 140px rgba(18,194,106,.14);
      padding: 18px 16px;
      display:flex; align-items:center; justify-content:space-between;
      gap: 14px;
    }
    .callout-title{ font-weight: 980; letter-spacing:-.2px; font-size: 16.8px; }
    .callout-desc{ margin-top: 8px; color: rgba(18,24,38,.72); line-height:1.8; font-size: 13.8px; }
    .callout-right{ flex-shrink:0; }

    .price-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items:stretch;
    }
    .price-card{
      border-radius: 26px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
    }
    .price-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .price-title{ font-weight: 980; letter-spacing:-.2px; font-size: 16.5px; }
    .price-desc{ margin-top: 10px; color: rgba(18,24,38,.72); line-height:1.85; font-size: 13.9px; }
    .price-steps{
      margin-top: 14px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 10px;
    }
    .price-step{
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:center; gap: 10px;
      font-weight: 900;
      color: rgba(18,24,38,.86);
    }
    .price-step .num{
      width: 28px; height: 28px; border-radius: 12px;
      background: rgba(18,194,106,.14);
      border: 1px solid rgba(18,194,106,.24);
      color: rgba(12,100,60,.98);
      display:flex; align-items:center; justify-content:center;
      font-weight: 960;
    }
    .price-table-wrap{
      margin-top: 12px;
      border-radius: 18px;
      border: 1px solid rgba(16,24,40,.10);
      overflow:hidden;
      background: rgba(255,255,255,.64);
    }
    .price-row-head{
      display:grid;
      grid-template-columns: 1fr 1.2fr 1.1fr;
      gap: 10px;
      padding: 12px 12px;
      font-weight: 950;
      background: linear-gradient(180deg, rgba(18,194,106,.14), rgba(18,194,106,.06));
      color: rgba(12,100,60,.98);
      border-bottom: 1px solid rgba(18,194,106,.20);
      font-size: 13.5px;
    }
    .price-row{
      display:grid;
      grid-template-columns: 1fr 1.2fr 1.1fr;
      gap: 10px;
      padding: 12px 12px;
      border-bottom: 1px solid rgba(16,24,40,.08);
      font-size: 13.6px;
      color: rgba(18,24,38,.78);
      align-items:start;
    }
    .price-row:last-child{ border-bottom:none; }
    .mini-em{ font-weight: 980; color: rgba(12,100,60,.98); }
    .price-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap:wrap; }

    .cases-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .case-card{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
      min-height: 190px;
    }
    .case-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .case-card:hover{
      transform: translateY(-4px);
      border-color: rgba(18,194,106,.26);
      box-shadow: 0 40px 140px rgba(16,24,40,.12);
    }
    .case-top{ display:flex; align-items:flex-start; justify-content:space-between; gap: 12px; }
    .case-icon{
      width: 40px; height: 40px;
      border-radius: 16px;
      background: rgba(18,194,106,.12);
      border: 1px solid rgba(18,194,106,.22);
      color: rgba(12,100,60,.98);
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      flex-shrink:0;
    }
    .case-title{
      font-weight: 980;
      font-size: 16.5px;
      letter-spacing:-.2px;
      margin-top: 6px;
      flex:1;
    }
    .case-tag{
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(18,194,106,.12);
      border: 1px solid rgba(18,194,106,.22);
      color: rgba(12,100,60,.98);
      font-weight: 920;
      font-size: 12.8px;
      white-space:nowrap;
    }
    .case-desc{
      margin-top: 12px;
      color: rgba(18,24,38,.72);
      line-height:1.85;
      font-size: 13.9px;
    }
    .case-meta{
      margin-top: 14px;
      display:flex; flex-wrap:wrap; gap: 10px;
    }
    .meta-item{
      padding: 9px 11px;
      border-radius: 999px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
      color: rgba(18,24,38,.82);
      font-weight: 860;
      font-size: 13px;
    }
    .case-action{
      margin-top: 14px;
      border-radius: 26px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
      display:flex; align-items:center; justify-content:space-between; gap: 14px;
    }
    .case-action-title{ font-weight: 980; letter-spacing:-.2px; font-size: 16.8px; }
    .case-action-desc{ margin-top: 8px; color: rgba(18,24,38,.72); line-height:1.8; font-size: 13.8px; }
    .case-action-right{ display:flex; gap: 12px; flex-wrap:wrap; }

    .reviews-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .review-card{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
      min-height: 210px;
    }
    .review-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .review-card:hover{
      transform: translateY(-4px);
      border-color: rgba(18,194,106,.26);
      box-shadow: 0 40px 140px rgba(16,24,40,.12);
    }
    .review-top{ display:flex; align-items:center; gap: 12px; }
    .avatar{
      width: 44px; height: 44px;
      border-radius: 18px;
      background: rgba(18,194,106,.12);
      border: 1px solid rgba(18,194,106,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight: 980;
      color: rgba(12,100,60,.98);
      flex-shrink:0;
    }
    .review-role{ font-weight: 950; letter-spacing:-.2px; }
    .review-name{ margin-top: 6px; font-size: 12.8px; color: rgba(18,24,38,.66); font-weight: 800; }
    .review-text{
      margin-top: 12px;
      color: rgba(18,24,38,.72);
      line-height:1.9;
      font-size: 13.9px;
    }

    .wiki-grid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 14px;
    }
    .wiki-card{
      border-radius: 24px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 28px 90px rgba(16,24,40,.08);
      padding: 18px 16px;
      min-height: 190px;
      transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .wiki-card:hover{
      transform: translateY(-4px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 38px 120px rgba(16,24,40,.12);
    }
    .wiki-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .wiki-title{ font-weight: 980; letter-spacing:-.2px; font-size: 16.5px; }
    .wiki-desc{ margin-top: 12px; color: rgba(18,24,38,.72); line-height:1.85; font-size: 13.9px; }
    .wiki-foot{ margin-top: 14px; }

    .news-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items:stretch;
    }
    .news-card{
      border-radius: 26px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
      min-height: 320px;
      display:flex; flex-direction:column;
    }
    .news-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .news-title{ font-weight: 980; letter-spacing:-.2px; font-size: 16.5px; margin-bottom: 12px; }
    .news-list{ display:flex; flex-direction:column; gap: 10px; }
    .news-foot{ margin-top:auto; padding-top: 12px; }
    .skeleton{
      height: 14px; border-radius: 10px;
      background: linear-gradient(90deg, rgba(16,24,40,.08), rgba(16,24,40,.04), rgba(16,24,40,.08));
      background-size: 200% 100%;
      animation: sk 1.2s ease-in-out infinite;
    }
    @keyframes sk{
      0%{ background-position: 0% 0; }
      100%{ background-position: 200% 0; }
    }
    .link-list{
      display:flex; flex-direction:column; gap: 10px;
    }
    .list-link{
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
      font-weight: 850;
      color: rgba(18,24,38,.86);
      transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .list-link:hover{
      transform: translateY(-2px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 18px 50px rgba(16,24,40,.10);
    }

    .faq-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .faq-col{ display:flex; flex-direction:column; gap: 10px; }
    .faq-item{
      border-radius: 22px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 28px 90px rgba(16,24,40,.08);
      overflow:hidden;
      transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
    }
    .faq-item:hover{
      transform: translateY(-3px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 38px 120px rgba(16,24,40,.12);
    }
    .faq-q{
      width:100%;
      border:none;
      background: transparent;
      padding: 14px 14px;
      display:flex; align-items:center; justify-content:space-between;
      gap: 12px;
      cursor:pointer;
      text-align:left;
      font-weight: 930;
      color: rgba(18,24,38,.92);
      letter-spacing:-.15px;
    }
    .faq-icon{
      width: 36px; height: 36px;
      border-radius: 14px;
      background: rgba(18,194,106,.12);
      border: 1px solid rgba(18,194,106,.22);
      position:relative;
      flex-shrink:0;
    }
    .faq-icon::before,.faq-icon::after{
      content:"";
      position:absolute; left:50%; top:50%;
      width: 14px; height: 2px; background: rgba(12,100,60,.98);
      transform: translate(-50%,-50%);
      border-radius:2px;
    }
    .faq-icon::after{
      transform: translate(-50%,-50%) rotate(90deg);
      transition: transform .2s ease;
    }
    .faq-a{
      padding: 0 14px 14px;
      color: rgba(18,24,38,.72);
      line-height:1.9;
      font-size: 13.9px;
      max-height: 0;
      overflow:hidden;
      opacity:0;
      transition: max-height .25s ease, opacity .25s ease;
    }
    .faq-item.is-open .faq-a{
      max-height: 240px;
      opacity:1;
    }
    .faq-item.is-open .faq-icon::after{
      transform: translate(-50%,-50%) rotate(0deg);
    }

    .contact-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items:start;
    }
    .contact-card{
      border-radius: 26px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
      min-height: 420px;
      position:relative;
    }
    .contact-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .contact-title{ font-weight: 980; letter-spacing:-.2px; font-size: 16.5px; margin-bottom: 12px; }
    .contact-title-2{ font-weight: 950; margin-top: 18px; }
    .contact-items{ display:flex; flex-direction:column; gap: 10px; }
    .contact-item{
      display:flex; align-items:baseline; justify-content:space-between; gap: 12px;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
    }
    .ci-label{ color: rgba(18,24,38,.65); font-weight: 820; }
    .ci-value{ font-weight: 950; color: rgba(18,24,38,.88); }
    .contact-divider{
      height:1px; background: rgba(16,24,40,.10);
      margin: 18px 0 10px;
    }
    .qr-wrap{ display:flex; gap: 14px; align-items:center; }
    .qr-img{
      width: 104px; height: 104px; border-radius: 20px;
      border: 1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.7);
      padding: 8px;
      box-shadow: 0 26px 90px rgba(16,24,40,.10);
      object-fit: contain;
    }
    .qr-desc{ color: rgba(18,24,38,.72); line-height:1.8; font-size: 13.6px; font-weight: 780; }
    .contact-cta{ margin-top: 16px; display:flex; gap: 12px; flex-wrap:wrap; }

    .media-grid{
      display:flex; flex-wrap:wrap; gap: 10px;
      margin-top: 6px;
    }
    .media-chip{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
      font-weight: 900;
      color: rgba(18,24,38,.85);
      transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .media-chip:hover{
      transform: translateY(-2px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 18px 50px rgba(16,24,40,.10);
    }
    .friends{
      margin-top: 10px;
      display:flex; flex-wrap:wrap; gap: 10px;
    }
    .friend-link{
      padding: 9px 11px;
      border-radius: 999px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
      font-weight: 880;
      color: rgba(18,24,38,.85);
      transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .friend-link:hover{
      transform: translateY(-2px);
      border-color: rgba(18,194,106,.25);
      box-shadow: 0 18px 50px rgba(16,24,40,.10);
    }

    .contact-photos{
      margin-top: 16px;
      display:flex; flex-direction:column; gap: 12px;
    }
    .photo-row{}
    .photo-card{
      border-radius: 22px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.60);
      padding: 14px 14px;
      box-shadow: 0 28px 90px rgba(16,24,40,.08);
    }
    .photo-title{ font-weight: 950; letter-spacing:-.2px; margin-bottom: 10px; }
    .photo-strip{
      display:flex; gap: 10px; align-items:stretch;
    }
    .photo-strip.one{ }
    .photo-img{
      width: 100%;
      max-width: 100%;
      height:auto;
      border-radius: 18px;
      border: 1px solid rgba(16,24,40,.10);
      object-fit: contain;
      background: rgba(255,255,255,.75);
      box-shadow: 0 20px 60px rgba(16,24,40,.10);
    }
    .photo-strip img{ flex: 1; }

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items:stretch;
    }
    .join-card{
      border-radius: 26px;
      border: 1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 34px 110px rgba(16,24,40,.10);
      padding: 18px 16px;
      min-height: 420px;
    }
    .join-card.alt{
      background: linear-gradient(180deg, rgba(255,255,255,.74), rgba(234,255,244,.55));
      border-color: rgba(18,194,106,.22);
    }
    .join-title{ font-weight: 980; letter-spacing:-.2px; font-size: 16.5px; margin-bottom: 12px; }
    .join-desc{ color: rgba(18,24,38,.72); line-height:1.85; font-size: 13.9px; }
    .join-points{ margin-top: 14px; display:flex; flex-direction:column; gap: 10px; }
    .join-point{ display:flex; align-items:center; gap: 10px; font-weight: 880; color: rgba(18,24,38,.84); padding: 10px 12px; border-radius: 16px; border: 1px solid rgba(16,24,40,.10); background: rgba(255,255,255,.62); }
    .join-actions{ margin-top: 10px; display:flex; gap: 12px; flex-wrap:wrap; }
    .join-divider{ height:1px; background: rgba(16,24,40,.10); margin: 16px 0; }
    .join-mini-title{ font-weight: 950; }
    .join-mini-desc{ margin-top: 8px; color: rgba(18,24,38,.72); line-height:1.85; font-size: 13.9px; }
    .join-form{ margin-top: 12px; }

    .site-footer{
      background: #07121b;
      color: rgba(255,255,255,.86);
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 34px 0;
    }
    .footer-inner{ }
    .footer-top{
      display:flex; justify-content:space-between; align-items:flex-start; gap: 14px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand{ display:flex; align-items:center; gap: 12px; max-width: 520px; }
    .footer-logo-img{
      width: 46px; height: 46px;
      border-radius: 16px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.10);
      padding: 8px;
      object-fit: contain;
    }
    .footer-name{ font-weight: 980; letter-spacing:-.2px; }
    .footer-sub{ margin-top: 6px; color: rgba(255,255,255,.70); line-height:1.7; font-size: 13.4px; }
    .footer-links{
      display:flex; flex-wrap:wrap; gap: 12px;
      justify-content:flex-end;
      align-items:center;
    }
    .footer-links a{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.86);
      font-weight: 860;
      font-size: 13px;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      background: rgba(18,194,106,.14);
      border-color: rgba(18,194,106,.35);
    }
    .footer-mid{
      padding: 18px 0;
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      flex-wrap:wrap;
    }
    .footer-note{
      color: rgba(255,255,255,.76);
      font-weight: 760;
      font-size: 13.2px;
      display:flex; gap: 10px; align-items:center; flex-wrap:wrap;
    }
    .sep{ color: rgba(255,255,255,.35); }
    .footer-link{
      color: rgba(255,255,255,.92);
      border-bottom: 1px dashed rgba(255,255,255,.35);
      padding-bottom: 2px;
      font-weight: 900;
    }
    .ai-page-home-link{
      display:inline-flex;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(18,194,106,.14);
      color: rgba(255,255,255,.94);
      font-weight: 920;
    }
    .footer-bottom{
      padding-top: 10px;
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      color: rgba(255,255,255,.70);
      font-weight: 760;
      font-size: 12.8px;
    }
    .to-top-small{
      color: rgba(255,255,255,.90);
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      padding: 10px 12px;
      border-radius: 999px;
      font-weight: 900;
    }
    .to-top-small:hover{
      border-color: rgba(18,194,106,.35);
      background: rgba(18,194,106,.14);
    }

    .float-actions{
      position:fixed;
      right: 14px;
      bottom: 16px;
      z-index: 80;
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .float-btn{
      border:none;
      cursor:pointer;
      border-radius: 16px;
      padding: 12px 14px;
      background: linear-gradient(180deg, rgba(18,194,106,.95), rgba(14,166,90,.95));
      color:#052114;
      font-weight: 980;
      box-shadow: 0 22px 70px rgba(18,194,106,.26);
      transition: transform .15s ease, box-shadow .25s ease;
    }
    .float-btn:hover{ box-shadow: 0 28px 90px rgba(18,194,106,.34); transform: translateY(-2px); }
    .float-btn.alt{
      background: rgba(255,255,255,.86);
      color: rgba(18,24,38,.92);
      border: 1px solid rgba(16,24,40,.12);
      box-shadow: 0 18px 55px rgba(16,24,40,.14);
      font-weight: 920;
    }
    .float-btn.alt:hover{ box-shadow: 0 28px 90px rgba(16,24,40,.18); }

    .to-top{
      position:fixed;
      left: 14px;
      bottom: 16px;
      z-index: 80;
      width: 44px; height: 44px;
      border-radius: 16px;
      border: 1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.84);
      color: rgba(18,24,38,.92);
      box-shadow: 0 18px 55px rgba(16,24,40,.14);
      cursor:pointer;
      font-weight: 980;
      transition: transform .15s ease, opacity .2s ease, box-shadow .25s ease;
      opacity: 0;
      pointer-events:none;
    }
    .to-top.show{
      opacity: 1;
      pointer-events:auto;
    }
    .to-top:hover{
      transform: translateY(-2px);
      box-shadow: 0 28px 90px rgba(16,24,40,.18);
    }

    .chat-panel{
      position:fixed; inset:0;
      z-index: 120;
      display:none;
    }
    .chat-panel.open{ display:block; }
    .chat-backdrop{
      position:absolute; inset:0;
      background: rgba(3,9,15,.55);
      backdrop-filter: blur(6px);
    }
    .chat-panel-inner{
      position:absolute;
      right: 16px;
      bottom: 84px;
      width: min(460px, calc(100% - 32px));
      border-radius: 24px;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 55px 160px rgba(0,0,0,.30);
      overflow:hidden;
      transform-origin: bottom right;
      animation: pop .16s ease-out;
    }
    @keyframes pop{
      from{ transform: scale(.98) translateY(6px); opacity:.6; }
      to{ transform: scale(1) translateY(0); opacity:1; }
    }
    .chat-head{
      display:flex; align-items:center; justify-content:space-between; gap: 12px;
      padding: 14px 14px;
      border-bottom: 1px solid rgba(16,24,40,.10);
      background: linear-gradient(180deg, rgba(18,194,106,.16), rgba(18,194,106,.06));
    }
    .chat-title{ font-weight: 980; letter-spacing:-.2px; }
    .chat-close{
      width: 42px; height: 42px;
      border-radius: 16px;
      border: 1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.75);
      cursor:pointer;
      font-size: 18px;
      line-height:1;
      font-weight: 980;
    }
    .chat-body{ padding: 14px 14px 16px; }
    .chat-row{
      display:flex; align-items:flex-start; justify-content:space-between;
      gap: 12px;
      padding: 10px 0;
    }
    .chat-item{
      flex: 1;
      min-width: 200px;
    }
    .chat-item-title{ font-weight: 980; letter-spacing:-.2px; }
    .chat-item-desc{ margin-top: 8px; color: rgba(18,24,38,.72); line-height:1.8; font-size: 13.6px; font-weight: 780; }
    .chat-qr-img{
      width: 96px; height: 96px;
      border-radius: 20px;
      border: 1px solid rgba(16,24,40,.12);
      background: rgba(255,255,255,.75);
      padding: 8px;
      object-fit: contain;
    }
    .chat-actions{
      display:flex; gap: 12px; flex-wrap:wrap;
      margin-top: 6px;
    }
    .btn-ghost{
      border-color: rgba(18,194,106,.25);
    }

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

    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-right{ padding-top: 6px; }
      .hero-fast{ grid-template-columns: 1fr; }
      .capabilities{ grid-template-columns: repeat(2, minmax(0,1fr)); }
      .service-grid{ grid-template-columns: 1fr; }
      .timeline{ grid-template-columns: 1fr; }
      .solution-grid{ grid-template-columns: 1fr; }
      .network-wrap{ grid-template-columns: 1fr; }
      .process-grid{ grid-template-columns: 1fr; }
      .compare-grid{ grid-template-columns: 1fr; }
      .two-col{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .price-grid{ grid-template-columns: 1fr; }
      .cases-grid{ grid-template-columns: 1fr; }
      .reviews-grid{ grid-template-columns: 1fr; }
      .wiki-grid{ grid-template-columns: 1fr 1fr; }
      .news-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-top{ flex-direction:column; align-items:flex-start; }
      .footer-links{ justify-content:flex-start; }
      .mobile-menu{ display:block; }
      .nav-links{ display:none; }
      .nav-toggle{ display:inline-flex; align-items:center; }
      .site-header{ position:sticky; }
      .mobile-menu{ max-height: 0; overflow:hidden; transition: max-height .25s ease; }
      .mobile-menu.open{ max-height: 520px; }
    }