:root{
      --bg: #f6f8f7;
      --surface: rgba(255,255,255,.78);
      --surface-2: #ffffff;
      --text: #1a1f1c;
      --muted:#5a6b62;
      --muted-2:#7a8a82;
      --line: rgba(18, 32, 25, .10);
      --shadow: 0 18px 50px rgba(8, 20, 14, .10);
      --shadow-soft: 0 10px 30px rgba(8, 20, 14, .10);
      --shadow-card: 0 12px 28px rgba(8, 20, 14, .10);
      --green:#17c964;
      --green-2:#0ea85b;
      --green-3:#0b8a49;
      --lime:#a7ff59;
      --accent: var(--green);
      --accent-2:#10b861;
      --focus: rgba(23, 201, 100, .28);
      --radius-xl: 26px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 12px;
      --container: 1120px;
    }

    *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
      background: radial-gradient(1000px 600px at 15% -10%, rgba(23,201,100,.14), transparent 55%),
                  radial-gradient(1000px 600px at 85% -10%, rgba(167,255,89,.10), transparent 50%),
                  linear-gradient(180deg, #f6f8f7 0%, #f2f7f4 30%, #f7faf8 100%);
      color: var(--text);
      overflow-x:hidden;
    }

    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
      z-index:9999;
    }
    .skip-link:focus{
      left:12px; top:12px; width:auto; height:auto; padding:10px 14px;
      background:#fff; border:1px solid var(--line); border-radius:12px;
      box-shadow: var(--shadow-soft);
      outline:none;
    }

    .container{
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar{
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(246, 248, 247, .72);
      border-bottom: 1px solid rgba(18, 32, 25, .08);
    }

    .nav-wrap{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 0;
    }

    .brand{
      display:flex; align-items:center; gap: 10px;
      min-width: 180px;
    }
    .ai-page-logo{ width: 170px; }

    .nav-desktop{
      display:flex; align-items:center; gap: 18px;
      flex-wrap: nowrap;
    }
    .nav-link{
      text-decoration:none;
      color: rgba(26,31,28,.86);
      font-weight: 600;
      font-size: 14px;
      padding: 8px 10px;
      border-radius: 12px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space: nowrap;
    }
    .nav-link:hover{
      background: rgba(23,201,100,.10);
      color: rgba(14,140,72,1);
      transform: translateY(-1px);
    }

    .nav-right{
      display:flex; align-items:center; gap: 10px;
      min-width: 180px;
      justify-content: flex-end;
    }

    .burger{
      width:42px; height:42px;
      border-radius: 14px;
      border: 1px solid rgba(18, 32, 25, .12);
      background: rgba(255,255,255,.78);
      display:none;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      color: rgba(26,31,28,.92);
    }
    .burger:hover{
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(8,20,14,.12);
      border-color: rgba(23,201,100,.35);
    }
    .burger-line{
      width:18px; height:2px;
      background: currentColor;
      border-radius: 999px;
      display:block;
      margin: 3px 0;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 8px;
      padding: 11px 14px;
      border-radius: 14px;
      text-decoration:none;
      font-weight: 800;
      font-size: 14px;
      border: 1px solid transparent;
      transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
      cursor: pointer;
      user-select:none;
      white-space: nowrap;
    }
    .btn:focus{
      outline: none;
      box-shadow: 0 0 0 4px var(--focus);
    }
    .btn-lg{ padding: 13px 18px; font-size: 15px; border-radius: 16px; }
    .btn-solid{
      background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 50%, #0fbf70 100%);
      color:#06311c;
      box-shadow: 0 16px 40px rgba(23,201,100,.22);
      border-color: rgba(16, 179, 97, .35);
    }
    .btn-solid:hover{
      transform: translateY(-1px);
      box-shadow: 0 22px 60px rgba(23,201,100,.25);
    }
    .btn-ghost{
      background: rgba(255,255,255,.72);
      color: rgba(12, 38, 24, .95);
      border-color: rgba(18, 32, 25, .14);
      box-shadow: 0 10px 26px rgba(8,20,14,.06);
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      border-color: rgba(23,201,100,.36);
      box-shadow: 0 18px 44px rgba(8,20,14,.10);
    }
    .btn-soft{
      background: rgba(23,201,100,.12);
      color: rgba(9, 60, 33, .98);
      border-color: rgba(23,201,100,.25);
    }
    .btn-soft:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 44px rgba(23,201,100,.14);
      border-color: rgba(23,201,100,.42);
    }
    .btn-block{ width:100%; }

    .mobile-menu{
      display:none;
      position: fixed;
      inset: 0;
      background: rgba(10,16,13,.46);
      z-index: 80;
      padding: 14px;
    }
    .mobile-menu-inner{
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(250,252,251,.92));
      border: 1px solid rgba(18,32,25,.12);
      border-radius: 22px;
      width: min(520px, 100%);
      margin: 0 auto;
      box-shadow: var(--shadow);
      overflow:hidden;
      display:flex; flex-direction: column;
      max-height: calc(100vh - 28px);
    }
    .mobile-menu-head{
      display:flex; align-items:center; justify-content: space-between;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.6);
    }
    .mobile-brand{
      display:flex; align-items:center; gap: 10px;
      font-weight: 900;
    }
    .dot{
      width: 10px; height:10px; border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #caff9e 0%, var(--green) 45%, var(--green-3) 100%);
      box-shadow: 0 0 0 6px rgba(23,201,100,.12);
    }
    .mobile-title{ letter-spacing:.2px; }
    .icon-btn{
      width:42px; height:42px;
      border-radius: 14px;
      border: 1px solid rgba(18,32,25,.12);
      background: rgba(255,255,255,.72);
      cursor:pointer;
      color: rgba(26,31,28,.92);
      display:flex; align-items:center; justify-content:center;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .icon-btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 16px 36px rgba(8,20,14,.12);
    }
    .mobile-menu-links{
      padding: 12px 16px 6px;
      display:flex;
      flex-direction: column;
      gap: 8px;
    }
    .m-link{
      text-decoration:none;
      color: rgba(26,31,28,.92);
      font-weight: 750;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.55);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .m-link:hover{
      transform: translateY(-1px);
      border-color: rgba(23,201,100,.35);
      background: rgba(23,201,100,.10);
    }
    .mobile-menu-cta{
      padding: 10px 16px 12px;
      display:flex;
      gap: 10px;
    }
    .mobile-menu-cta .btn{ flex: 1; }
    .mobile-menu-foot{
      padding: 10px 16px 16px;
      border-top: 1px solid rgba(18,32,25,.10);
      display:flex;
      align-items:center;
      justify-content: center;
      gap: 10px;
      color: var(--muted);
      font-weight: 650;
    }
    .sep{ opacity:.6; }
    .muted{ color: var(--muted); }
    .ai-page-home-link{
      color: rgba(10, 74, 42, .96);
      text-decoration:none;
      font-weight: 850;
      padding: 6px 10px;
      border-radius: 12px;
      background: rgba(23,201,100,.10);
      border: 1px solid rgba(23,201,100,.18);
    }
    .ai-page-home-link:hover{ border-color: rgba(23,201,100,.35); }

    .hero{
      position: relative;
      padding: 34px 0 26px;
      overflow:hidden;
    }
    .hero-bg{
      position:absolute;
      inset: -140px -120px -140px -120px;
      pointer-events:none;
    }
    .grid-lines{
      position:absolute; inset: 0;
      background:
        linear-gradient(to right, rgba(23,201,100,.10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(23,201,100,.08) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: radial-gradient(closest-side at 50% 35%, black 0%, transparent 72%);
      opacity: .9;
      transform: translateY(-8px);
    }
    .glow-ring{
      position:absolute;
      border-radius: 999px;
      border: 1px solid rgba(23,201,100,.20);
      filter: blur(.2px);
    }
    .ring-1{
      width: 720px; height: 720px;
      left: -160px; top: -140px;
      background: radial-gradient(circle at 30% 30%, rgba(23,201,100,.22), transparent 60%);
      opacity:.8;
      animation: ringFloat 10s ease-in-out infinite;
    }
    .ring-2{
      width: 640px; height: 640px;
      right: -200px; top: -120px;
      background: radial-gradient(circle at 55% 40%, rgba(167,255,89,.18), transparent 60%);
      opacity:.7;
      animation: ringFloat2 12s ease-in-out infinite;
    }
    .float-orb{
      position:absolute;
      width: 240px; height: 240px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, rgba(167,255,89,.30), rgba(23,201,100,.06) 55%, transparent 70%);
      filter: blur(1px);
      opacity: .95;
    }
    .orb-1{ left: 12%; top: 35%; animation: orbMove 9s ease-in-out infinite; }
    .orb-2{ left: 52%; top: 12%; width: 190px; height: 190px; animation: orbMove2 11s ease-in-out infinite; }
    .orb-3{ left: 78%; top: 45%; width: 170px; height: 170px; animation: orbMove3 13s ease-in-out infinite; }

    @keyframes ringFloat{
      0%,100%{ transform: translate(0,0) scale(1); }
      50%{ transform: translate(22px,16px) scale(1.02); }
    }
    @keyframes ringFloat2{
      0%,100%{ transform: translate(0,0) scale(1); }
      50%{ transform: translate(-18px,20px) scale(1.02); }
    }
    @keyframes orbMove{
      0%,100%{ transform: translate(0,0); }
      50%{ transform: translate(24px,-18px); }
    }
    @keyframes orbMove2{
      0%,100%{ transform: translate(0,0); }
      50%{ transform: translate(-16px,22px); }
    }
    @keyframes orbMove3{
      0%,100%{ transform: translate(0,0); }
      50%{ transform: translate(-14px,-16px); }
    }

    .hero-inner{
      position: relative;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: start;
      padding: 18px 0 10px;
    }

    .kicker{ display:flex; flex-wrap:wrap; gap: 10px; align-items:center; margin-bottom: 14px; }
    .kicker-pill{
      background: rgba(23,201,100,.14);
      color: rgba(8, 68, 38, .98);
      border: 1px solid rgba(23,201,100,.26);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 13px;
    }
    .kicker-sub{ color: rgba(26,31,28,.72); font-weight: 750; font-size: 13px; }

    .hero-title{
      font-size: clamp(28px, 4.2vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.6px;
      margin: 0 0 12px;
      font-weight: 950;
    }
    .hero-desc{
      margin: 0 0 18px;
      color: rgba(26,31,28,.76);
      font-size: 16px;
      line-height: 1.65;
      max-width: 62ch;
      font-weight: 650;
    }
    .hero-actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-bottom: 14px; }
    .hero-meta{
      display:flex; flex-wrap:wrap; gap: 14px;
      margin-top: 8px;
    }
    .meta-item{
      display:flex; align-items:center; gap: 10px;
      background: rgba(255,255,255,.65);
      border: 1px solid rgba(18,32,25,.10);
      border-radius: 16px;
      padding: 10px 12px;
      box-shadow: 0 12px 30px rgba(8,20,14,.06);
    }
    .meta-icon{
      width: 34px; height:34px;
      border-radius: 14px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.20);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10, 68, 38, .98);
      font-weight: 900;
    }
    .meta-item span{
      color: rgba(26,31,28,.82);
      font-weight: 850;
      font-size: 13px;
    }

    .hero-right{
      display:flex; flex-direction: column;
      gap: 14px;
    }
    .hero-card{
      background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.68));
      border: 1px solid rgba(18,32,25,.12);
      border-radius: 26px;
      box-shadow: var(--shadow-card);
      padding: 14px;
      position: relative;
      overflow:hidden;
      animation: cardIn .7s ease both;
    }
    @keyframes cardIn{
      from{ opacity:0; transform: translateY(12px); }
      to{ opacity:1; transform: translateY(0); }
    }
    .hero-card:before{
      content:"";
      position:absolute;
      inset:-2px -2px auto -2px;
      height: 110px;
      background: radial-gradient(closest-side at 20% 30%, rgba(23,201,100,.25), transparent 65%),
                  radial-gradient(closest-side at 70% 20%, rgba(167,255,89,.18), transparent 60%);
      pointer-events:none;
    }
    .hero-card-head{
      display:flex; align-items:center; justify-content: space-between;
      gap: 12px;
      padding: 2px 4px 10px;
      position: relative;
      z-index: 1;
    }
    .badge{
      display:flex; align-items:center; gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.23);
      font-weight: 950;
      color: rgba(8, 56, 31, .98);
      font-size: 13px;
    }
    .badge-dot{
      width: 9px; height: 9px; border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(23,201,100,.18);
    }
    .mini-link a{
      color: rgba(13, 90, 50, .96);
      font-weight: 900;
      text-decoration:none;
    }
    .mini-link{ font-weight:900; color: rgba(26,31,28,.74); font-size: 13px; display:flex; gap:8px; align-items:center; }
    .hero-card-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 2px 4px 12px;
      position: relative;
      z-index: 1;
    }
    .mini-stat{
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(18,32,25,.10);
      border-radius: 18px;
      padding: 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      box-shadow: 0 12px 28px rgba(8,20,14,.05);
      min-height: 120px;
      display:flex; flex-direction: column;
      gap: 6px;
    }
    .mini-stat:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 45px rgba(8,20,14,.10);
      border-color: rgba(23,201,100,.30);
    }
    .mini-stat-top{
      display:flex; align-items:center; justify-content: space-between;
      gap: 10px;
    }
    .mini-icon{
      width: 34px; height: 34px;
      border-radius: 14px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.20);
      display:flex; align-items:center; justify-content:center;
      color: rgba(9, 60, 33, .98);
    }
    .mini-label{
      font-weight: 900;
      color: rgba(26,31,28,.78);
      font-size: 13px;
      text-align:right;
    }
    .mini-value{
      font-weight: 980;
      letter-spacing: -0.2px;
      color: rgba(10, 35, 22, .98);
      font-size: 16px;
      margin-top: 6px;
    }
    .mini-desc{
      color: rgba(26,31,28,.66);
      font-weight: 650;
      font-size: 13px;
      line-height: 1.4;
      margin-top:auto;
    }

    .hero-card-foot{
      display:flex; align-items:center; justify-content: space-between;
      gap: 12px;
      padding: 10px 8px 6px;
      border-top: 1px solid rgba(18,32,25,.08);
      position: relative;
      z-index: 1;
    }
    .trust{
      display:flex; align-items:center; gap: 10px;
      color: rgba(26,31,28,.74);
      font-weight: 800;
      font-size: 13px;
    }
    .trust-mark{
      width: 26px; height: 26px; border-radius: 12px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10, 68, 38, .98);
      font-size: 14px;
      font-weight: 980;
    }
    .trust-actions{ display:flex; gap: 12px; align-items:center; }
    .text-link{
      text-decoration:none;
      color: rgba(10, 74, 42, .98);
      font-weight: 900;
      font-size: 13px;
      transition: transform .16s ease, opacity .16s ease;
    }
    .text-link:hover{ transform: translateY(-1px); opacity:.9; }

    .hero-img-strip{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
    }
    .strip-card{
      border-radius: 18px;
      overflow:hidden;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.65);
      box-shadow: 0 12px 28px rgba(8,20,14,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      transform-origin: center;
      min-height: 148px;
      display:flex; flex-direction: column;
    }
    .strip-card:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 20px 50px rgba(8,20,14,.12);
    }
    .strip-card img{
      width:100%;
      height: 98px;
      object-fit: cover;
      display:block;
    }
    .strip-card.strip-square img{ height: 98px; object-fit: cover; }
    .strip-caption{
      padding: 10px 10px 12px;
      font-weight: 850;
      color: rgba(26,31,28,.74);
      font-size: 12.5px;
      line-height: 1.25;
      margin-top:auto;
    }

    .section{ padding: 54px 0; }
    .section-alt{
      background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.26));
      border-top: 1px solid rgba(18,32,25,.06);
      border-bottom: 1px solid rgba(18,32,25,.06);
    }

    .section-head{
      margin-bottom: 22px;
    }
    .h2{
      margin:0 0 10px;
      font-size: clamp(22px, 2.8vw, 32px);
      letter-spacing: -0.4px;
      font-weight: 980;
      color: rgba(10, 35, 22, .98);
      line-height: 1.2;
    }
    .lead{
      margin:0;
      color: rgba(26,31,28,.72);
      font-weight: 700;
      line-height: 1.7;
      max-width: 76ch;
    }
    .h3{
      margin:0;
      font-size: 16px;
      font-weight: 950;
      letter-spacing: -0.2px;
    }
    .h3-tight{ margin-bottom: 6px; }
    .p{
      color: rgba(26,31,28,.70);
      font-weight: 650;
      line-height: 1.65;
      margin: 10px 0 0;
      font-size: 14.5px;
    }

    .about-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 12px;
    }
    .about-card{
      background: rgba(255,255,255,.66);
      border: 1px solid rgba(18,32,25,.10);
      border-radius: 22px;
      padding: 18px;
      box-shadow: 0 16px 40px rgba(8,20,14,.06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position: relative;
      overflow:hidden;
    }
    .about-card:hover{
      transform: translateY(-4px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 24px 70px rgba(8,20,14,.10);
    }
    .about-icon{
      width: 44px; height: 44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10, 74, 42, .98);
      display:flex; align-items:center; justify-content:center;
      margin-bottom: 10px;
    }

    .marquee-row{
      margin-top: 18px;
      background: rgba(255,255,255,.50);
      border: 1px solid rgba(18,32,25,.08);
      border-radius: 22px;
      padding: 14px;
      overflow:hidden;
      box-shadow: 0 14px 34px rgba(8,20,14,.05);
    }
    .marquee-track{
      display:flex; gap: 10px; align-items:center;
      flex-wrap: nowrap;
      animation: marquee 22s linear infinite;
    }
    @keyframes marquee{
      0%{ transform: translateX(0); }
      100%{ transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce){
      .marquee-track{ animation:none; }
    }

    .chip{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(23,201,100,.18);
      background: rgba(23,201,100,.10);
      color: rgba(10, 60, 33, .98);
      font-weight: 900;
      font-size: 13px;
      white-space: nowrap;
    }

    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      align-items: start;
    }
    .cap-list{
      display:flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 10px;
    }
    .cap-item{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 14px 14px;
      border-radius: 22px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(18,32,25,.10);
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .cap-item:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 24px 70px rgba(8,20,14,.10);
    }
    .cap-dot{
      width: 12px; height: 12px; border-radius: 999px;
      margin-top: 6px;
      background: radial-gradient(circle at 30% 30%, #caff9e 0%, var(--green) 45%, var(--green-3) 100%);
      box-shadow: 0 0 0 6px rgba(23,201,100,.14);
    }
    .cap-body h3{ margin-top: 0; }

    .service-cta{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

    .panel{
      background: rgba(255,255,255,.68);
      border: 1px solid rgba(18,32,25,.10);
      border-radius: 26px;
      box-shadow: var(--shadow-card);
      padding: 16px;
      position: relative;
      overflow:hidden;
    }
    .panel:before{
      content:"";
      position:absolute; inset:-120px auto auto -120px;
      width: 240px; height:240px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, rgba(23,201,100,.28), transparent 70%);
      opacity:.8;
      pointer-events:none;
    }
    .panel-head{ position: relative; z-index:1; }
    .panel-title{ font-weight: 980; letter-spacing: -0.3px; }
    .panel-sub{ color: rgba(26,31,28,.68); font-weight: 750; margin-top: 6px; }

    .model-cloud{
      display:flex; flex-wrap: wrap; gap: 10px;
      margin-top: 14px;
      position: relative; z-index:1;
    }
    .tag{
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(18,32,25,.10);
      color: rgba(26,31,28,.82);
      font-weight: 850;
      font-size: 13px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tag:hover{
      transform: translateY(-2px);
      border-color: rgba(23,201,100,.30);
      background: rgba(23,201,100,.10);
    }
    .panel-foot{
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid rgba(18,32,25,.08);
      display:flex; align-items:flex-start; justify-content: space-between; gap: 12px;
      position: relative; z-index:1;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(18,32,25,.05);
      border: 1px solid rgba(18,32,25,.10);
      color: rgba(26,31,28,.80);
      font-weight: 850;
      font-size: 12.5px;
      white-space: nowrap;
    }
    .pill-green{
      background: rgba(23,201,100,.12);
      border-color: rgba(23,201,100,.25);
      color: rgba(10, 60, 33, .98);
    }
    .price-mini-label{ font-weight: 950; }
    .price-mini-values{ display:flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }

    .note-card{
      margin-top: 14px;
      background: rgba(255,255,255,.60);
      border: 1px solid rgba(18,32,25,.10);
      border-radius: 22px;
      padding: 14px;
      display:flex; gap: 12px; align-items:flex-start;
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
    }
    .note-mark{
      width: 34px; height:34px;
      border-radius: 14px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10, 74, 42, .98);
      font-weight: 980;
    }
    .note-title{ font-weight: 980; letter-spacing: -0.2px; }
    .note-text{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; line-height:1.6; }

    .timeline{
      background: rgba(255,255,255,.50);
      border: 1px solid rgba(18,32,25,.08);
      border-radius: 26px;
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 18px;
      display:grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .timeline-item{
      display:flex; gap: 14px; align-items:flex-start;
      padding: 14px;
      border-radius: 22px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(18,32,25,.08);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .timeline-item:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .t-step{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10, 74, 42, .98);
      font-weight: 980;
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
    }
    .t-main h3{ margin: 2px 0 0; }
    .grid-3{
      margin-top: 16px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .feature-card{
      border-radius: 26px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(18,32,25,.10);
      padding: 16px;
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .feature-card:hover{
      transform: translateY(-4px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 26px 70px rgba(8,20,14,.11);
    }
    .feature-top{
      display:flex; align-items:center; gap: 12px;
    }
    .feature-icon{
      width: 42px; height:42px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10, 74, 42, .98);
      display:flex; align-items:center; justify-content:center;
      font-weight: 980;
      font-size: 18px;
    }
    .feature-title{ font-weight: 980; letter-spacing: -0.3px; }

    .solution-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .solution-card{
      border-radius: 26px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(18,32,25,.10);
      padding: 16px;
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      display:flex; flex-direction: column;
      min-height: 260px;
    }
    .solution-card:hover{
      transform: translateY(-4px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 28px 70px rgba(8,20,14,.11);
    }
    .solution-head{
      display:flex; align-items:center; gap: 12px;
      margin-bottom: 8px;
    }
    .solution-icon{
      width: 46px; height:46px;
      border-radius: 20px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10, 74, 42, .98);
      flex:0 0 auto;
    }

    .ul{ margin: 10px 0 0; padding: 0 0 0 18px; color: rgba(26,31,28,.70); font-weight: 650; line-height:1.9; }
    .ul.tight{ margin-top: 10px; line-height:1.7; padding-left: 18px; }
    .ol{ margin: 10px 0 0; padding-left: 18px; color: rgba(26,31,28,.70); font-weight: 650; line-height:1.9; }

    .solution-foot{
      margin-top: auto;
      padding-top: 12px;
    }

    .process-grid{
      display:grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
    }
    .process-step{
      border-radius: 26px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(18,32,25,.10);
      padding: 16px 14px;
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-height: 170px;
      display:flex; flex-direction: column; gap: 10px;
    }
    .process-step:hover{
      transform: translateY(-4px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 28px 70px rgba(8,20,14,.11);
    }
    .process-no{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10, 74, 42, .98);
      font-weight: 980;
      display:flex; align-items:center; justify-content:center;
    }
    .process-body h3{ margin-top: 0; }

    .callout{
      margin-top: 18px;
      border-radius: 26px;
      background: linear-gradient(135deg, rgba(23,201,100,.14) 0%, rgba(255,255,255,.60) 35%, rgba(255,255,255,.56) 100%);
      border: 1px solid rgba(23,201,100,.18);
      box-shadow: 0 22px 70px rgba(8,20,14,.08);
      padding: 18px;
      display:flex; align-items:center; justify-content: space-between; gap: 14px;
      overflow:hidden;
      position: relative;
    }
    .callout:before{
      content:"";
      position:absolute;
      width: 420px; height: 420px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, rgba(23,201,100,.25), transparent 60%);
      right: -240px; top: -280px;
      pointer-events:none;
    }
    .callout-left{ position: relative; z-index:1; }
    .callout-title{ font-weight: 980; letter-spacing: -0.3px; }
    .callout-text{ color: rgba(26,31,28,.70); font-weight: 700; margin-top: 8px; line-height:1.6; }
    .callout-right{ display:flex; gap: 12px; flex-wrap: wrap; position: relative; z-index:1; }

    .compare-top{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }
    .rating-card{
      border-radius: 26px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(23,201,100,.20);
      box-shadow: 0 26px 70px rgba(8,20,14,.10);
      padding: 18px;
      position: relative;
      overflow:hidden;
    }
    .rating-card:before{
      content:"";
      position:absolute; inset:-120px auto auto -140px;
      width: 320px; height: 320px;
      background: radial-gradient(circle at 30% 30%, rgba(23,201,100,.28), transparent 65%);
      pointer-events:none;
    }
    .rating-top{
      display:flex; align-items:flex-start; justify-content: space-between; gap: 12px;
      position: relative; z-index:1;
    }
    .rating-stars{ display:flex; gap: 4px; font-size: 18px; color: #0ea85b; }
    .star{ filter: drop-shadow(0 10px 26px rgba(23,201,100,.12)); }
    .rating-score{ text-align:right; }
    .score-num{
      font-size: 44px;
      font-weight: 1000;
      letter-spacing: -1px;
      color: rgba(10, 35, 22, .98);
      line-height: 1;
      display:block;
    }
    .score-max{ color: rgba(26,31,28,.70); font-weight: 900; }
    .rating-note{
      margin-top: 10px;
      color: rgba(26,31,28,.74);
      font-weight: 850;
      position: relative; z-index:1;
    }
    .rating-actions{ margin-top: 14px; position: relative; z-index:1; }

    .compare-note{
      border-radius: 26px;
      background: rgba(255,255,255,.55);
      border: 1px solid rgba(18,32,25,.10);
      padding: 18px;
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
    }
    .note-title{
      font-weight: 980;
      letter-spacing: -0.3px;
    }

    .compare-table-wrap{
      margin-top: 14px;
    }
    .table-scroller{
      overflow:auto;
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
    }
    .compare-table{
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      min-width: 740px;
    }
    .compare-table th, .compare-table td{
      padding: 14px 14px;
      border-bottom: 1px solid rgba(18,32,25,.08);
      vertical-align: top;
      text-align:left;
    }
    .compare-table thead th{
      position: sticky;
      top:0;
      background: rgba(247,250,248,.92);
      z-index: 1;
      color: rgba(26,31,28,.92);
      font-weight: 980;
      border-bottom: 1px solid rgba(18,32,25,.10);
    }
    .compare-table tbody tr:last-child td{ border-bottom:none; }
    .ok{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      font-weight: 980;
      color: rgba(10, 74, 42, .98);
    }
    .sub{
      display:block;
      margin-top: 6px;
      color: rgba(26,31,28,.70);
      font-weight: 700;
      font-size: 13.5px;
      line-height: 1.5;
    }
    .muted-badge{
      display:inline-flex;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(18,32,25,.05);
      border: 1px solid rgba(18,32,25,.10);
      color: rgba(26,31,28,.75);
      font-weight: 900;
      font-size: 13px;
    }
    .compare-bottom{
      margin-top: 16px;
      display:flex;
      justify-content:flex-end;
    }
    .compare-bottom-card{
      width: 100%;
      border-radius: 26px;
      border: 1px solid rgba(23,201,100,.20);
      background: linear-gradient(135deg, rgba(23,201,100,.14), rgba(255,255,255,.60));
      box-shadow: 0 28px 70px rgba(8,20,14,.10);
      padding: 18px;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }
    .cb-title{ font-weight: 1000; letter-spacing: -0.3px; }
    .cb-text{ color: rgba(26,31,28,.70); font-weight: 700; margin-top: 8px; line-height:1.6; }
    .cb-actions{ display:flex; gap: 12px; flex-wrap: wrap; }

    .match-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }
    .form-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .form{
      display:flex; flex-direction: column; gap: 12px;
    }
    .form-row{ display:flex; flex-direction: column; gap: 8px; }
    .label{ font-weight: 950; color: rgba(26,31,28,.88); font-size: 13.5px; }
    .input, .textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px solid rgba(18,32,25,.12);
      background: rgba(255,255,255,.74);
      color: rgba(26,31,28,.95);
      font-weight: 750;
      transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
      font-size: 14px;
    }
    .textarea{ resize: vertical; min-height: 106px; }
    .input:focus, .textarea:focus{
      outline:none;
      border-color: rgba(23,201,100,.42);
      box-shadow: 0 0 0 4px rgba(23,201,100,.18);
      background: rgba(255,255,255,.92);
    }
    .form-actions{ padding-top: 2px; }
    .form-hint{
      min-height: 18px;
      color: rgba(10, 74, 42, .98);
      font-weight: 850;
      font-size: 13px;
      line-height: 1.3;
    }
    .helper-cards{ margin-top: 12px; }
    .helper-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.52);
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      padding: 16px;
    }
    .helper-title{ font-weight: 980; letter-spacing: -0.3px; margin-bottom: 10px; }

    .side-panel{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
      position: sticky;
      top: 86px;
    }
    .side-panel-head{ margin-bottom: 12px; }
    .side-panel-title{ font-weight: 980; letter-spacing: -0.3px; }
    .side-panel-sub{ color: rgba(26,31,28,.68); font-weight: 750; margin-top: 6px; }
    .check-list{ display:flex; flex-direction: column; gap: 10px; margin-top: 14px; }
    .check-item{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.60);
    }
    .check-mark{
      width: 26px; height:26px;
      border-radius: 12px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10,74,42,.98);
      font-weight: 980;
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .check-text{ font-weight: 800; color: rgba(26,31,28,.78); line-height:1.45; }

    .side-panel-foot{
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(18,32,25,.08);
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      flex-wrap: wrap;
    }
    .side-mini-title{ font-weight: 980; }
    .side-mini-desc{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; }

    .mini-gallery{
      margin-top: 14px;
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.52);
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      padding: 16px;
    }
    .mini-gallery-head{ margin-bottom: 12px; }
    .mini-gallery-title{ font-weight: 980; letter-spacing: -0.3px; }
    .mini-gallery-sub{ color: rgba(26,31,28,.68); font-weight: 750; margin-top: 6px; }
    .mini-gallery-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .ig{
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.62);
      padding: 14px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .ig:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .ig-top{
      display:flex; gap: 12px; align-items:center;
      margin-bottom: 8px;
    }
    .ig-icon{
      width: 40px; height:40px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10,74,42,.98);
      font-weight: 980;
      flex: 0 0 auto;
    }
    .ig-title{ font-weight: 980; letter-spacing: -0.3px; }
    .ig-text{ color: rgba(26,31,28,.68); font-weight: 700; line-height:1.6; }

    .mini-gallery-links{
      margin-top: 12px;
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .pricing-grid{
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items: start;
    }
    .pricing-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
      overflow:hidden;
      position: relative;
    }
    .pricing-card:before{
      content:"";
      position:absolute;
      width: 360px; height: 360px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, rgba(23,201,100,.26), transparent 60%);
      left: -220px; top: -240px;
      pointer-events:none;
      opacity:.9;
    }
    .pricing-title{
      font-weight: 1000;
      letter-spacing: -0.3px;
      position: relative; z-index:1;
    }
    .pricing-steps{ margin-top: 14px; position: relative; z-index:1; display:flex; flex-direction: column; gap: 10px; }
    .pstep{
      display:flex; gap: 14px; align-items:flex-start;
      padding: 14px;
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.60);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .pstep:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .pno{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10,74,42,.98);
      font-weight: 980;
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
    }
    .ph{ font-weight: 980; letter-spacing: -0.2px; }
    .pdesc{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; line-height:1.6; }
    .pricing-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; position: relative; z-index:1; }

    .price-table-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .price-table-head{
      display:flex; align-items:flex-start; justify-content: space-between; gap: 10px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .time-pill{
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10,74,42,.98);
      font-weight: 950;
      font-size: 13px;
      white-space: nowrap;
    }
    .price-table{
      display:flex; flex-direction: column; gap: 12px;
    }
    .slot{
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.60);
      padding: 14px;
    }
    .slot-title{ font-weight: 980; letter-spacing: -0.2px; }
    .slot-desc{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; }
    .slot{
      display:flex; align-items:flex-start; justify-content: space-between; gap: 12px;
    }
    .slot-tag{
      font-weight: 980;
      color: rgba(26,31,28,.80);
      margin-bottom: 8px;
    }
    .slot-values{ display:flex; gap: 8px; flex-wrap: wrap; }
    .table-footer{
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(18,32,25,.08);
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      flex-wrap: wrap;
    }
    .small-title{ font-weight: 980; }
    .small-text{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; line-height:1.6; }

    .training-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items: start;
    }
    .training-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .training-head{ display:flex; gap: 12px; align-items:flex-start; margin-bottom: 10px; }
    .training-icon{
      width: 46px; height:46px;
      border-radius: 20px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10,74,42,.98);
      flex: 0 0 auto;
    }
    .training-title{ font-weight: 1000; letter-spacing: -0.3px; }
    .training-list{ margin-top: 12px; display:flex; flex-direction: column; gap: 10px; }
    .train-row{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 14px;
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.60);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .train-row:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .train-dot{
      width: 12px; height:12px; border-radius: 999px;
      margin-top: 6px;
      background: radial-gradient(circle at 30% 30%, #caff9e 0%, var(--green) 45%, var(--green-3) 100%);
      box-shadow: 0 0 0 6px rgba(23,201,100,.14);
      flex: 0 0 auto;
    }
    .train-name{ font-weight: 980; letter-spacing: -0.2px; }
    .train-desc{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; line-height:1.6; }

    .training-cta{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }

    .training-side{ display:flex; flex-direction: column; gap: 14px; }
    .cert-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .cert-head{ margin-bottom: 12px; }
    .cert-title{ font-weight: 1000; letter-spacing: -0.3px; }
    .cert-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .cert-item{
      display:flex; gap: 14px; align-items:flex-start;
      padding: 14px;
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.60);
    }
    .cert-no{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10,74,42,.98);
      font-weight: 980;
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
    }
    .cert-name{ font-weight: 980; letter-spacing:-0.2px; }
    .cert-desc{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; line-height:1.6; }

    .side-media-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .side-media-head{ margin-bottom: 12px; }
    .side-media-title{ font-weight: 1000; letter-spacing:-0.3px; }

    .network-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .net-item{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 14px;
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.60);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .net-item:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .net-icon{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10,74,42,.98);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .net-title{ font-weight: 980; letter-spacing:-0.2px; }
    .net-desc{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; line-height:1.6; }
    .side-media-foot{
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(18,32,25,.08);
      display:flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    }

    .network-wide{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }
    .net-map-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
      overflow:hidden;
      position: relative;
    }
    .map-head{ margin-bottom: 12px; }
    .map-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .map-visual{
      height: 260px;
      border-radius: 22px;
      border: 1px dashed rgba(18,32,25,.14);
      background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.35));
      position: relative;
      overflow:hidden;
    }
    .map-glow{
      position:absolute; inset: -120px -120px auto -120px;
      height: 300px;
      background: radial-gradient(circle at 30% 30%, rgba(23,201,100,.20), transparent 65%);
      pointer-events:none;
    }
    .map-dots span{
      position:absolute;
      width: 10px; height: 10px;
      border-radius: 999px;
      background: rgba(23,201,100,.95);
      box-shadow: 0 0 0 6px rgba(23,201,100,.18);
      opacity:.9;
      animation: dotPulse 2.8s ease-in-out infinite;
    }
    @keyframes dotPulse{
      0%,100%{ transform: scale(1); opacity:.85; }
      50%{ transform: scale(1.25); opacity:1; }
    }
    .map-lines span{
      position:absolute; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(23,201,100,.55), transparent);
      opacity:.7;
      border-radius: 999px;
      filter: blur(.1px);
    }
    .map-legend{
      margin-top: 12px;
      display:flex; gap: 14px; flex-wrap: wrap;
      color: rgba(26,31,28,.72);
      font-weight: 800;
      font-size: 13px;
    }
    .legend-item{ display:flex; align-items:center; gap: 8px; }
    .legend-dot{
      width: 10px; height:10px; border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(23,201,100,.14);
    }
    .legend-dot.d2{ background:#2dd36f; }
    .legend-dot.d3{ background:#9aff5a; }

    .network-list-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .netlist-head{ margin-bottom: 12px; }
    .netlist-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .netlist-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .netlist-item{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 14px;
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.60);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .netlist-item:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .netlist-icon{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10,74,42,.98);
      font-weight: 980;
      flex:0 0 auto;
    }
    .netlist-name{ font-weight: 980; letter-spacing:-0.2px; }
    .netlist-desc{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; line-height:1.6; }
    .netlist-foot{
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(18,32,25,.08);
      display:flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    }

    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .case-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      overflow:hidden;
      display:flex; flex-direction: column;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 290px;
    }
    .case-card:hover{
      transform: translateY(-5px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 28px 90px rgba(8,20,14,.12);
    }
    .case-cover{
      height: 92px;
      position: relative;
      background: rgba(23,201,100,.08);
    }
    .case-cover-bg{
      position:absolute; inset:0;
      background: radial-gradient(circle at 20% 30%, rgba(23,201,100,.28), transparent 55%),
                  radial-gradient(circle at 70% 10%, rgba(167,255,89,.20), transparent 45%),
                  linear-gradient(135deg, rgba(23,201,100,.08), rgba(255,255,255,.00));
    }
    .case-cover-bg.bg2{
      background: radial-gradient(circle at 20% 30%, rgba(167,255,89,.22), transparent 55%),
                  radial-gradient(circle at 80% 10%, rgba(23,201,100,.25), transparent 50%),
                  linear-gradient(135deg, rgba(23,201,100,.08), rgba(255,255,255,.00));
    }
    .case-cover-bg.bg3{
      background: radial-gradient(circle at 20% 30%, rgba(23,201,100,.22), transparent 55%),
                  radial-gradient(circle at 80% 10%, rgba(167,255,89,.22), transparent 50%),
                  linear-gradient(135deg, rgba(23,201,100,.08), rgba(255,255,255,.00));
    }
    .case-mark{
      position:absolute; left: 14px; top: 14px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(18,32,25,.10);
      font-weight: 980;
      color: rgba(10,74,42,.98);
      box-shadow: 0 12px 30px rgba(8,20,14,.08);
    }
    .case-body{
      padding: 14px 16px 10px;
      display:flex; flex-direction: column; gap: 6px;
    }
    .case-body h3{ margin-top: 4px; }
    .case-tags{ margin-top: 8px; display:flex; gap: 8px; flex-wrap: wrap; }
    .case-foot{
      margin-top: auto;
      padding: 12px 16px 16px;
      border-top: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.40);
    }

    .cases-cta{ margin-top: 16px; }
    .cases-cta-card{
      border-radius: 26px;
      border: 1px solid rgba(23,201,100,.20);
      background: linear-gradient(135deg, rgba(23,201,100,.14), rgba(255,255,255,.60));
      box-shadow: 0 28px 70px rgba(8,20,14,.10);
      padding: 18px;
      display:flex; align-items:center; justify-content: space-between; gap: 14px;
      flex-wrap: wrap;
    }
    .cases-cta-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .cases-cta-text{ color: rgba(26,31,28,.70); font-weight: 700; margin-top: 8px; line-height:1.6; }
    .cases-cta-right{ display:flex; gap: 12px; flex-wrap: wrap; }

    .article-wrap{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items: start;
    }
    .subhead{ display:flex; align-items:flex-end; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
    .subhead-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .article-list{ display:flex; flex-direction: column; gap: 10px; }
    .article-item{
      text-decoration:none;
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      padding: 14px;
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .article-item:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .article-dot{
      width: 12px; height:12px; border-radius: 999px;
      background: rgba(23,201,100,.95);
      box-shadow: 0 0 0 6px rgba(23,201,100,.14);
      flex:0 0 auto;
    }
    .article-body{ flex: 1 1 auto; }
    .article-title{
      font-weight: 980;
      letter-spacing: -0.2px;
      color: rgba(10,35,22,.98);
      line-height: 1.35;
    }
    .article-meta{
      margin-top: 6px;
      color: rgba(26,31,28,.66);
      font-weight: 750;
      font-size: 13.5px;
    }
    .article-arrow{
      color: rgba(10,74,42,.98);
      font-weight: 980;
      font-size: 18px;
    }
    .articles-links{ margin-top: 12px; display:flex; gap: 12px; flex-wrap: wrap; }

    .side-block{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .side-block-head{ margin-bottom: 12px; }
    .side-block-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .kb-grid{ display:grid; grid-template-columns: 1fr; gap: 10px; }
    .kb-item{
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.60);
      padding: 14px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .kb-item:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .kb-top{ display:flex; align-items:center; gap: 12px; }
    .kb-icon{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10,74,42,.98);
      font-weight: 980;
      flex: 0 0 auto;
    }
    .kb-title{ font-weight: 980; letter-spacing:-0.2px; }
    .kb-desc{ color: rgba(26,31,28,.68); font-weight: 700; line-height:1.6; margin-top: 8px; }
    .kb-foot{ margin-top: 12px; display:flex; gap: 12px; flex-wrap: wrap; }

    .tag-cloud{
      margin-top: 14px;
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.52);
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      padding: 16px;
    }
    .tag-cloud-head{ display:flex; align-items:flex-end; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
    .tag-cloud-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .cloud{ display:flex; gap: 10px; flex-wrap: wrap; }
    .cloud-tag{
      text-decoration:none;
      font-weight: 900;
      font-size: 13px;
      color: rgba(10,74,42,.98);
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(23,201,100,.22);
      background: rgba(23,201,100,.10);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .cloud-tag:hover{
      transform: translateY(-2px);
      border-color: rgba(23,201,100,.40);
      background: rgba(23,201,100,.14);
    }

    .help-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .help-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .help-card:hover{
      transform: translateY(-4px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 28px 70px rgba(8,20,14,.11);
    }
    .help-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }
    .help-pills{ display:flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

    .faq-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items: start;
    }
    .faq-col{ display:flex; flex-direction: column; gap: 10px; }
    .faq-item{
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      overflow:hidden;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }
    .faq-item:hover{
      border-color: rgba(23,201,100,.28);
      transform: translateY(-2px);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .faq-q{
      width:100%;
      text-align:left;
      padding: 14px 14px;
      border:0;
      background: transparent;
      cursor:pointer;
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      font-weight: 980;
      color: rgba(10,35,22,.98);
      font-size: 14.8px;
    }
    .faq-q:focus{ outline:none; box-shadow: 0 0 0 4px rgba(23,201,100,.18) inset; }
    .faq-icon{
      width: 34px; height:34px;
      border-radius: 14px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10,74,42,.98);
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      flex: 0 0 auto;
      transition: transform .2s ease;
    }
    .faq-a{
      max-height: 0;
      overflow:hidden;
      transition: max-height .25s ease;
      border-top: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.55);
    }
    .faq-a .p{ padding: 12px 14px 14px; margin:0; }
    .faq-item[data-open="true"] .faq-a{ max-height: 220px; }
    .faq-item[data-open="true"] .faq-icon{ transform: rotate(45deg); }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .review-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      display:flex;
      flex-direction: column;
      min-height: 250px;
    }
    .review-card:hover{
      transform: translateY(-4px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 28px 90px rgba(8,20,14,.12);
    }
    .review-top{ display:flex; align-items:center; gap: 12px; }
    .avatar{
      width: 46px; height:46px;
      border-radius: 20px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color: rgba(10,74,42,.98);
      flex: 0 0 auto;
    }
    .who-name{ font-weight: 1000; letter-spacing:-0.3px; }
    .who-tag{ color: rgba(26,31,28,.66); font-weight: 800; margin-top: 6px; font-size: 13.5px; }
    .review-stars{ margin-top: 10px; color: #0ea85b; font-size: 16px; letter-spacing: 1px; }
    .review-card .p{ margin-top: 12px; }

    .contact-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items: start;
    }
    .contact-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .contact-head{ margin-bottom: 12px; }
    .contact-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .contact-right{ display:flex; flex-direction: column; gap: 14px; }
    .contact-side{ display:flex; flex-direction: column; gap: 14px; }
    .kefu-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .kefu-head{ margin-bottom: 12px; }
    .kefu-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .kefu-qr{
      width: 100%;
      display:flex; justify-content:center;
      padding: 6px 0 8px;
    }
    .kefu-qr img{
      width: min(220px, 100%);
      height: auto;
      border-radius: 18px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 50px rgba(8,20,14,.10);
    }
    .kefu-meta{ margin-top: 10px; display:flex; flex-direction: column; gap: 8px; }
    .kefu-line{ display:flex; align-items:center; justify-content: space-between; gap: 10px; }
    .kefu-key{ color: rgba(26,31,28,.62); font-weight: 900; font-size: 13px; }
    .kefu-val{ font-weight: 950; color: rgba(10,35,22,.98); font-size: 13px; }
    .kefu-val a{ color: rgba(10,74,42,.98); text-decoration:none; border-bottom: 1px dashed rgba(23,201,100,.35); }
    .kefu-val a:hover{ border-bottom-color: rgba(23,201,100,.65); }

    .contact-links{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.52);
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      padding: 16px;
    }
    .contact-links-head{ font-weight: 1000; letter-spacing:-0.3px; margin-bottom: 12px; }
    .links-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .link-tile{
      text-decoration:none;
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      padding: 14px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      display:flex; flex-direction: column;
      gap: 8px;
      min-height: 110px;
    }
    .link-tile:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .lt-icon{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10,74,42,.98);
      font-weight: 1000;
    }
    .lt-title{ font-weight: 980; letter-spacing:-0.2px; }
    .lt-desc{ color: rgba(26,31,28,.68); font-weight: 700; line-height:1.55; }

    .contact-strip{
      border-radius: 26px;
      border: 1px solid rgba(23,201,100,.18);
      background: linear-gradient(135deg, rgba(23,201,100,.14), rgba(255,255,255,.60));
      box-shadow: 0 24px 70px rgba(8,20,14,.10);
      padding: 14px;
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      flex-wrap: wrap;
    }
    .strip-text{
      color: rgba(26,31,28,.74);
      font-weight: 850;
      line-height:1.6;
    }

    .footer-cta{
      padding: 20px 0 0;
    }
    .footer-cta-card{
      border-radius: 26px;
      border: 1px solid rgba(23,201,100,.20);
      background: linear-gradient(135deg, rgba(23,201,100,.14), rgba(255,255,255,.60));
      box-shadow: 0 28px 70px rgba(8,20,14,.10);
      padding: 18px;
      display:flex; justify-content: space-between; gap: 14px; align-items:center;
      flex-wrap: wrap;
    }
    .footer-cta-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .footer-cta-text{ color: rgba(26,31,28,.70); font-weight: 700; margin-top: 8px; line-height:1.6; }
    .footer-cta-right{ display:flex; gap: 12px; flex-wrap: wrap; }

    .footer{
      padding: 26px 0 30px;
      background: rgba(11, 24, 17, .96);
      color: rgba(255,255,255,.92);
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer-inner{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: start;
    }
    .footer-brand{ display:flex; gap: 12px; align-items:center; }
    .brand-dot{
      width: 12px; height: 12px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 7px rgba(23,201,100,.22);
      flex:0 0 auto;
    }
    .footer-name{ font-weight: 1000; letter-spacing:-0.3px; }
    .footer-sub{ color: rgba(255,255,255,.74); font-weight: 750; margin-top: 6px; }
    .footer-links{ margin-top: 14px; display:flex; flex-wrap: wrap; gap: 10px; }
    .footer-link{
      color: rgba(255,255,255,.90);
      text-decoration:none;
      font-weight: 850;
      font-size: 13.5px;
      padding: 8px 10px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .footer-link:hover{
      transform: translateY(-2px);
      border-color: rgba(167,255,89,.30);
      background: rgba(23,201,100,.12);
    }
    .footer-right{
      display:flex; flex-direction: column; gap: 12px;
      align-items: flex-end;
    }
    .footer-contact{ width: 100%; }
    .fc-line{
      display:flex; justify-content: space-between; gap: 12px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .fc-line:last-child{ border-bottom:none; }
    .fc-key{ color: rgba(255,255,255,.70); font-weight: 800; }
    .fc-val{ color: rgba(255,255,255,.94); font-weight: 900; }
    .fc-val a{ color: rgba(167,255,89,.96); text-decoration:none; border-bottom: 1px dashed rgba(167,255,89,.5); }
    .fc-val a:hover{ border-bottom-color: rgba(167,255,89,.8); }

    .footer-actions{ display:flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
    .copyright{
      color: rgba(255,255,255,.66);
      font-weight: 800;
      font-size: 13px;
      padding-top: 8px;
    }

    .to-top{
      position: fixed;
      right: 14px;
      bottom: 18px;
      z-index: 60;
      border-radius: 18px;
      padding: 10px 12px;
      border: 1px solid rgba(18,32,25,.12);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 50px rgba(8,20,14,.14);
      color: rgba(10,35,22,.98);
      display:none;
      align-items:center; gap: 10px;
      cursor:pointer;
      transition: transform .15s ease, opacity .2s ease;
      font-weight: 950;
    }
    .to-top span{ font-size: 13px; }
    .to-top:hover{ transform: translateY(-2px); }

    .float-kefu{
      position: fixed;
      left: 14px;
      bottom: 18px;
      z-index: 60;
      display:flex; align-items:center; gap: 10px;
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid rgba(23,201,100,.24);
      background: linear-gradient(135deg, rgba(23,201,100,.16), rgba(255,255,255,.78));
      box-shadow: 0 18px 50px rgba(8,20,14,.14);
      text-decoration:none;
      color: rgba(10,35,22,.98);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      font-weight: 1000;
    }
    .float-kefu:hover{
      transform: translateY(-2px);
      border-color: rgba(23,201,100,.40);
      box-shadow: 0 26px 80px rgba(8,20,14,.18);
    }
    .float-kefu-icon{
      width: 38px; height:38px;
      border-radius: 16px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      display:flex; align-items:center; justify-content:center;
      color: rgba(10,74,42,.98);
      flex:0 0 auto;
    }
    .float-kefu-text{ font-size: 13.5px; }

    .cookie-toast{
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 18px;
      z-index: 90;
      display:none;
      width: min(560px, calc(100% - 24px));
      background: rgba(255,255,255,.86);
      border: 1px solid rgba(18,32,25,.12);
      box-shadow: var(--shadow-soft);
      border-radius: 18px;
      padding: 12px 12px;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
    }
    .cookie-toast-left{ display:flex; align-items:center; gap: 10px; color: rgba(26,31,28,.80); font-weight: 850; }
    .cookie-badge{
      width: 10px; height:10px; border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(23,201,100,.18);
    }
    .cookie-text{ font-size: 13.5px; }
    .cookie-btn{
      border-radius: 14px;
      border: 1px solid rgba(18,32,25,.12);
      background: rgba(255,255,255,.74);
      padding: 10px 12px;
      font-weight: 950;
      color: rgba(10,35,22,.98);
      cursor:pointer;
      transition: transform .15s ease, border-color .15s ease;
      white-space: nowrap;
    }
    .cookie-btn:hover{
      transform: translateY(-1px);
      border-color: rgba(23,201,100,.35);
    }

    .join-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }
    .join-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
    }
    .join-title{ font-weight: 1000; letter-spacing:-0.3px; margin-bottom: 10px; }
    .join-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }

    .join-side{
      display:flex; flex-direction: column; gap: 14px;
    }
    .price-network-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 50px rgba(8,20,14,.06);
      padding: 16px;
      overflow:hidden;
    }
    .price-network-head{ margin-bottom: 12px; }
    .price-network-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .logic-steps{ display:flex; flex-direction: column; gap: 10px; }
    .logic-step{
      display:flex; gap: 14px; align-items:flex-start;
      padding: 14px;
      border-radius: 22px;
      border: 1px solid rgba(18,32,25,.08);
      background: rgba(255,255,255,.60);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .logic-step:hover{
      transform: translateY(-3px);
      border-color: rgba(23,201,100,.28);
      box-shadow: 0 22px 60px rgba(8,20,14,.10);
    }
    .logic-no{
      width: 44px; height:44px;
      border-radius: 18px;
      background: rgba(23,201,100,.12);
      border: 1px solid rgba(23,201,100,.22);
      color: rgba(10,74,42,.98);
      font-weight: 980;
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .logic-h{ font-weight: 980; letter-spacing:-0.2px; }
    .logic-p{ color: rgba(26,31,28,.68); font-weight: 700; margin-top: 6px; line-height:1.6; }
    .logic-foot{
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(18,32,25,.08);
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      flex-wrap: wrap;
    }
    .small-muted{ color: rgba(26,31,28,.66); font-weight: 800; }

    .partner-card{
      border-radius: 26px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.52);
      box-shadow: 0 16px 40px rgba(8,20,14,.05);
      padding: 16px;
    }
    .partner-head{ margin-bottom: 12px; }
    .partner-title{ font-weight: 1000; letter-spacing:-0.3px; }
    .friend-links{
      display:flex; flex-wrap: wrap; gap: 10px;
    }
    .friend{
      text-decoration:none;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid rgba(18,32,25,.10);
      background: rgba(255,255,255,.62);
      color: rgba(10,74,42,.98);
      font-weight: 950;
      font-size: 13px;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .friend:hover{
      transform: translateY(-2px);
      border-color: rgba(23,201,100,.35);
      background: rgba(23,201,100,.10);
    }
    .friend-links-2{
      margin-top: 12px;
      display:flex; flex-wrap: wrap; gap: 10px;
    }
    .friend.alt{ background: rgba(23,201,100,.10); border-color: rgba(23,201,100,.22); }

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

    @media (max-width: 980px){
      .nav-desktop{ display:none; }
      .burger{ display:flex; }
      .hero-inner{ grid-template-columns: 1fr; }
      .hero-right{ order: 2; }
      .hero-left{ order: 1; }
      .hero-img-strip{ grid-template-columns: 1fr 1fr; }
      .about-grid{ grid-template-columns: 1fr; }
      .split{ grid-template-columns: 1fr; }
      .grid-3{ grid-template-columns: 1fr; }
      .solution-grid{ grid-template-columns: 1fr; }
      .process-grid{ grid-template-columns: 1fr; }
      .compare-top{ grid-template-columns: 1fr; }
      .match-grid{ grid-template-columns: 1fr; }
      .side-panel{ position: relative; top: auto; }
      .pricing-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .network-wide{ grid-template-columns: 1fr; }
      .case-grid{ grid-template-columns: 1fr; }
      .article-wrap{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .footer-inner{ grid-template-columns: 1fr; }
      .footer-right{ align-items: flex-start; }
      .join-grid{ grid-template-columns: 1fr; }
      .links-grid{ grid-template-columns: 1fr 1fr; }
      .to-top{ display:none !important; }
      .float-kefu{ bottom: 14px; }
    }

    .mobile-menu[aria-hidden="false"]{ display:block; }