:root{
      --bg0:#ffffff;
      --bg1:#f7f5ff;
      --ink:#101828;
      --muted:#4b5563;
      --muted2:#6b7280;
      --line:rgba(16,24,40,.12);
      --soft:rgba(255,255,255,.72);
      --shadow:0 18px 60px rgba(16,24,40,.10);
      --shadow2:0 10px 30px rgba(16,24,40,.10);
      --radius:18px;
      --radius2:14px;
      --radius3:12px;
      --primary1:#6d5efc;
      --primary2:#1db7a4;
      --primary3:#ffb703;
      --primary4:#ff4d7d;
      --btnText:#0b1220;
      --focus:rgba(109,94,252,.35);
      --footerBg:#0b1220;
      --footerText:rgba(255,255,255,.86);
      --footerMuted:rgba(255,255,255,.68);
      --footerLine:rgba(255,255,255,.14);
      --container:1160px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
      color:var(--ink);
      background:
        radial-gradient(1200px 600px at 12% -10%, rgba(109,94,252,.20), transparent 60%),
        radial-gradient(900px 500px at 70% 0%, rgba(29,183,164,.16), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fbfafc 40%, #ffffff 100%);
      overflow-x:hidden;
    }
    .sr-only{
      position:absolute!important;
      width:1px;height:1px;
      padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
    }
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    .bg-wrap{
      position:fixed; inset:0;
      pointer-events:none;
      z-index:-1;
      background:transparent;
    }
    .grid-overlay{
      position:absolute; inset:-20%;
      background:
        linear-gradient(to right, rgba(16,24,40,.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16,24,40,.05) 1px, transparent 1px);
      background-size:68px 68px;
      transform:rotate(-6deg);
      opacity:.25;
      filter:saturate(1.1);
    }
    .orb{
      position:absolute;
      width:520px; height:520px;
      border-radius:50%;
      filter: blur(40px);
      opacity:.55;
      mix-blend-mode:multiply;
      animation: floaty 10s ease-in-out infinite;
    }
    .orb1{ left:-160px; top:-140px; background: radial-gradient(circle at 30% 30%, rgba(109,94,252,.65), rgba(109,94,252,0));}
    .orb2{ right:-180px; top:-110px; width:560px; height:560px; background: radial-gradient(circle at 30% 30%, rgba(29,183,164,.60), rgba(29,183,164,0)); animation-duration:12s;}
    .orb3{ left:40%; top:220px; width:420px; height:420px; background: radial-gradient(circle at 30% 30%, rgba(255,183,3,.48), rgba(255,183,3,0)); animation-duration:14s;}
    @keyframes floaty{
      0%,100%{ transform:translate3d(0,0,0) }
      50%{ transform:translate3d(0,22px,0) }
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(14px);
      background: rgba(255,255,255,.70);
      border-bottom: 1px solid rgba(16,24,40,.08);
    }
    .nav-container{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:14px 0;
    }
    .brand-left{
      display:flex; align-items:center; gap:12px;
      min-width: 280px;
    }
    .brand-logo-link{display:flex; align-items:center}
    .ai-page-logo{
      width:44px;
      border-radius:12px;
      box-shadow: 0 10px 30px rgba(109,94,252,.18);
      background: #fff;
      padding:6px;
    }
    .brand-meta{line-height:1.1}
    .brand-name{font-weight:860; letter-spacing:.2px}
    .brand-tag{font-size:12px; color:var(--muted2); margin-top:5px}

    .nav-desktop{
      display:flex;
      align-items:center;
      gap:18px;
      flex:1;
      justify-content:center;
      flex-wrap:nowrap;
    }
    .nav-link{
      text-decoration:none;
      color:rgba(16,24,40,.78);
      font-weight:640;
      font-size:14px;
      padding:10px 6px;
      border-radius:10px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-link:hover{
      background:rgba(109,94,252,.08);
      color:rgba(16,24,40,.96);
      transform: translateY(-1px);
    }

    .nav-actions{display:flex; align-items:center; gap:12px;}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 14px;
      border-radius:12px;
      text-decoration:none;
      font-weight:780;
      border:1px solid transparent;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
    .btn-primary{
      background: linear-gradient(135deg, var(--primary1), var(--primary2));
      color:white;
      box-shadow: 0 16px 40px rgba(109,94,252,.22);
    }
    .btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 22px 52px rgba(109,94,252,.26);}
    .btn-ghost{
      background: rgba(255,255,255,.68);
      border-color: rgba(16,24,40,.14);
      color: rgba(16,24,40,.92);
    }
    .btn-ghost:hover{ transform: translateY(-1px); border-color: rgba(109,94,252,.35); box-shadow: 0 16px 40px rgba(16,24,40,.08);}
    .btn-outline{
      background: transparent;
      border-color: rgba(16,24,40,.20);
      color: rgba(16,24,40,.95);
    }
    .btn-outline:hover{ transform: translateY(-1px); background: rgba(109,94,252,.06); border-color: rgba(109,94,252,.40);}
    .btn-soft{
      background: linear-gradient(135deg, rgba(109,94,252,.14), rgba(29,183,164,.12));
      border-color: rgba(109,94,252,.22);
      color: rgba(16,24,40,.96);
    }
    .btn-soft:hover{ transform: translateY(-1px); box-shadow: 0 18px 44px rgba(109,94,252,.12);}

    .btn-big{ padding:14px 18px; border-radius:14px; font-size:15px}
    .btn-wide{ width:100%; }

    .btn-header{ padding:12px 16px; border-radius:12px; }

    .menu-btn{
      display:none;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:12px;
      border:1px solid rgba(16,24,40,.14);
      background: rgba(255,255,255,.8);
      cursor:pointer;
      font-weight:800;
      color:rgba(16,24,40,.95);
    }
    .menu-icon{
      width:18px; height:12px; position:relative; display:inline-block;
    }
    .menu-icon::before,.menu-icon::after{
      content:""; position:absolute; left:0; right:0; height:2px;
      background: rgba(16,24,40,.84); border-radius:2px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .menu-icon::before{ top:1px;}
    .menu-icon::after{ top:9px;}
    .menu-text{ font-size:14px; }
    .mobile-menu{
      display:none;
      position:fixed; inset:0;
      z-index:100;
      background: rgba(7,10,20,.38);
      backdrop-filter: blur(10px);
      padding:14px;
      align-items:flex-start;
      justify-content:center;
    }
    .mobile-menu.open{ display:flex; }
    .mobile-menu-inner{
      width:100%;
      max-width:560px;
      border-radius:18px;
      background: rgba(255,255,255,.92);
      border:1px solid rgba(16,24,40,.14);
      box-shadow: var(--shadow);
      overflow:hidden;
      transform: translateY(0);
    }
    .mobile-menu-top{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 16px;
      border-bottom:1px solid rgba(16,24,40,.10);
    }
    .mobile-menu-title{ font-weight:900; }
    .menu-close{
      width:40px; height:40px;
      border-radius:12px;
      border:1px solid rgba(16,24,40,.14);
      background: rgba(255,255,255,.9);
      cursor:pointer;
      font-size:22px;
      color:rgba(16,24,40,.9);
    }
    .mobile-menu-links{
      padding:12px 12px 6px;
      display:grid; gap:8px;
    }
    .mobile-link{
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.75);
      text-decoration:none;
      color:rgba(16,24,40,.92);
      font-weight:820;
    }
    .mobile-menu-cta{
      padding:12px;
      display:grid; gap:10px;
      border-top:1px solid rgba(16,24,40,.10);
      background: rgba(247,245,255,.65);
    }

    .no-scroll{ overflow:hidden; }

    .site-main{ padding-bottom: 28px; }
    .section{ padding: 56px 0; }
    .section-tight{ padding: 40px 0; }
    .section-subtle{
      background: linear-gradient(180deg, rgba(109,94,252,.06), rgba(29,183,164,.05) 35%, rgba(255,183,3,.03));
      border-top:1px solid rgba(16,24,40,.06);
      border-bottom:1px solid rgba(16,24,40,.06);
    }

    .hero{
      padding: 34px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 26px;
      align-items:start;
      padding: 6px 0 16px;
    }
    .hero-left{
      padding-top: 10px;
    }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(109,94,252,.20);
      background: linear-gradient(135deg, rgba(109,94,252,.12), rgba(29,183,164,.10));
      font-weight:880;
      color: rgba(16,24,40,.92);
      box-shadow: 0 16px 40px rgba(109,94,252,.10);
    }
    .spark{
      width:20px;height:20px;
      display:inline-flex;align-items:center;justify-content:center;
      border-radius:8px;
      background: rgba(255,255,255,.7);
      border:1px solid rgba(16,24,40,.10);
      box-shadow: 0 12px 30px rgba(109,94,252,.12);
      font-size:12px;
    }
    .hero-title{
      margin:16px 0 10px;
      font-size: 40px;
      line-height:1.08;
      letter-spacing:-.6px;
      font-weight: 950;
    }
    .hero-subtitle{
      margin:0;
      color: rgba(16,24,40,.70);
      font-size: 16px;
      line-height: 1.7;
      max-width: 62ch;
      font-weight: 650;
    }
    .hero-ctas{
      margin-top: 18px;
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }
    .hero-mini{
      margin-top: 20px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      max-width: 640px;
    }
    .mini-card{
      border-radius:16px;
      padding:14px 14px;
      background: rgba(255,255,255,.72);
      border:1px solid rgba(16,24,40,.10);
      box-shadow: 0 18px 50px rgba(16,24,40,.07);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .mini-card:hover{ transform: translateY(-2px); box-shadow: 0 28px 70px rgba(16,24,40,.10); }
    .mini-top{ display:flex; align-items:center; gap:10px; }
    .mini-icon{
      width:34px;height:34px;border-radius:12px;
      background: linear-gradient(135deg, rgba(109,94,252,.18), rgba(29,183,164,.14));
      border:1px solid rgba(109,94,252,.22);
      display:flex; align-items:center; justify-content:center;
      font-size:16px;
    }
    .mini-title{ font-weight:900; }
    .mini-desc{ margin-top:8px; color: rgba(16,24,40,.64); font-weight:650; font-size:13px; line-height:1.6; }

    .hero-logos{
      margin-top: 18px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      max-width: 720px;
    }
    .logo-chip{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.62);
      color: rgba(16,24,40,.86);
      font-weight:820;
      font-size:13px;
      box-shadow: 0 14px 36px rgba(16,24,40,.06);
    }

    .hero-right{
      position:relative;
      padding-top: 6px;
    }
    .panel{
      border-radius:22px;
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
      border:1px solid rgba(16,24,40,.10);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .panel-head{
      padding:16px 16px 12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-bottom:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(600px 160px at 25% -20%, rgba(109,94,252,.18), transparent 55%),
        radial-gradient(480px 140px at 90% 0%, rgba(29,183,164,.14), transparent 50%);
    }
    .panel-title{ font-weight:930; letter-spacing:-.2px; }
    .panel-kpi{
      display:flex; align-items:center; gap:10px;
      color: rgba(16,24,40,.72);
      font-weight:800;
      font-size:12px;
      white-space:nowrap;
    }
    .kpi-dot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--primary1), var(--primary2));
      box-shadow: 0 0 0 6px rgba(109,94,252,.14);
    }
    .panel-body{ padding:14px 16px; display:grid; gap:12px; }
    .data-row{ display:grid; gap:6px; }
    .data-label{
      font-weight:920; font-size:12px; color: rgba(16,24,40,.62);
      letter-spacing:.2px;
      text-transform: uppercase;
    }
    .data-value{
      color: rgba(16,24,40,.86);
      font-weight:680;
      line-height:1.55;
      font-size:14px;
    }
    .panel-foot{
      padding:14px 16px 16px;
      display:flex; gap:10px; flex-wrap:wrap;
      border-top:1px solid rgba(16,24,40,.10);
      background: rgba(247,245,255,.58);
    }
    .btn-wide{ width:auto; padding:12px 14px; border-radius:14px; }
    .floating-stats{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
    }
    .stat{
      border-radius:18px;
      padding:14px 12px;
      background: rgba(255,255,255,.65);
      border:1px solid rgba(16,24,40,.10);
      box-shadow: 0 18px 50px rgba(16,24,40,.06);
      transition: transform .18s ease;
    }
    .stat:hover{ transform: translateY(-2px); }
    .stat-num{
      font-weight:980;
      font-size:15px;
      letter-spacing:-.2px;
      background: linear-gradient(135deg, rgba(109,94,252,.95), rgba(29,183,164,.95));
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
    }
    .stat-label{ margin-top:7px; font-weight:800; color: rgba(16,24,40,.64); font-size:12px; line-height:1.4; }

    .section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom: 18px; }
    .section-head.split{ align-items:flex-start; }
    .h2{
      margin:0;
      font-size: 28px;
      letter-spacing:-.4px;
      font-weight: 950;
    }
    .lead{
      margin:10px 0 0;
      color: rgba(16,24,40,.70);
      font-weight:650;
      line-height:1.7;
      font-size:15px;
      max-width: 74ch;
    }
    .head-actions{ display:flex; gap:12px; flex-wrap:wrap; }

    .cards-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
      margin-top: 18px;
    }
    .card{
      border-radius:18px;
      padding:16px 16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 20px 60px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .card:hover{ transform: translateY(-3px); border-color: rgba(109,94,252,.25); box-shadow: 0 28px 70px rgba(16,24,40,.10); }
    .card-icon{
      width:44px;height:44px;border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(109,94,252,.18);
      background: linear-gradient(135deg, rgba(109,94,252,.14), rgba(29,183,164,.12));
      box-shadow: 0 20px 60px rgba(109,94,252,.10);
      font-size:18px;
      margin-bottom: 12px;
    }
    .h3{ margin:0; font-size:16px; font-weight:930; letter-spacing:-.2px; }
    .muted{ margin:10px 0 0; color: rgba(16,24,40,.66); font-weight:650; line-height:1.7; font-size:14px; }
    .card-glow{ background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62)); }
    .card-glass{ background: linear-gradient(180deg, rgba(247,245,255,.70), rgba(255,255,255,.62)); }
    .card-stroke{ background: rgba(255,255,255,.66); }
    .pill-list{ display:flex; flex-wrap:wrap; gap:10px; }
    .pill{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.66);
      font-weight:860;
      font-size:13px;
      color: rgba(16,24,40,.80);
    }
    .pill-strong{
      background: linear-gradient(135deg, rgba(109,94,252,.14), rgba(29,183,164,.10));
      border-color: rgba(109,94,252,.18);
    }

    .callout{
      margin-top: 18px;
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(900px 260px at 15% 0%, rgba(109,94,252,.16), transparent 55%),
        radial-gradient(700px 260px at 85% 20%, rgba(29,183,164,.14), transparent 55%),
        rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
      padding:18px 18px;
      display:flex;
      gap:16px;
      justify-content:space-between;
      align-items:flex-start;
      flex-wrap:wrap;
    }
    .callout-left{ flex: 1 1 420px; }
    .callout-right{ flex: 0 1 420px; }

    .service-layout{
      display:grid;
      grid-template-columns: 1fr 1.05fr;
      gap:16px;
      align-items:start;
      margin-top: 14px;
    }
    .service-left{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 24px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .tag-cloud{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
    .tag{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.65);
      font-weight:860;
      font-size:13px;
      color: rgba(16,24,40,.82);
      box-shadow: 0 18px 50px rgba(16,24,40,.05);
    }
    .tag-soft{
      background: linear-gradient(135deg, rgba(109,94,252,.12), rgba(29,183,164,.10));
      border-color: rgba(109,94,252,.18);
    }
    .sub-cards{
      margin-top: 14px;
      display:grid;
      gap:10px;
    }
    .sub-card{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:14px 14px;
    }
    .sub-card-head{ display:flex; align-items:center; gap:10px; }
    .sub-icon{
      width:36px;height:36px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.20);
    }
    .sub-title{ font-weight:930; }
    .sub-desc{ margin-top:8px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.65; font-size:14px; }

    .service-right{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 24px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .ability-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
    .ability-title{ font-weight:960; }
    .ability-badge{
      padding:10px 12px; border-radius:999px;
      border:1px solid rgba(29,183,164,.20);
      background: linear-gradient(135deg, rgba(29,183,164,.12), rgba(109,94,252,.10));
      font-weight:860; font-size:12px; color: rgba(16,24,40,.76);
      white-space:nowrap;
    }
    .ability-grid{
      margin-top: 12px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .ability-item{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      padding:14px 14px;
      min-height:92px;
    }
    .ability-name{ font-weight:950; }
    .ability-desc{ margin-top:8px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.6; font-size:13px; }
    .model-box{
      margin-top: 12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: linear-gradient(180deg, rgba(247,245,255,.70), rgba(255,255,255,.62));
      padding:14px 14px;
    }
    .model-head{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom: 10px;
    }
    .model-label{ font-weight:930; color: rgba(16,24,40,.82); font-size:14px; }
    .text-link{
      color: rgba(109,94,252,.96);
      font-weight:860;
      text-decoration:none;
      display:inline-flex; align-items:center; gap:6px;
      transition: transform .15s ease, text-decoration-color .15s ease;
      white-space:nowrap;
    }
    .text-link:hover{ transform: translateY(-1px); text-decoration: underline; text-decoration-thickness: 2px; }
    .model-tags{
      display:flex; flex-wrap:wrap; gap:8px;
      max-height: 154px;
      overflow:hidden;
      padding-right: 2px;
      mask-image: linear-gradient(180deg, #000 65%, transparent);
    }
    .model-foot{
      margin-top: 12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .fineprint{ color: rgba(16,24,40,.62); font-weight:650; font-size:12.5px; line-height:1.6; }

    .timeline{
      margin-top: 18px;
      display:grid;
      gap:12px;
    }
    .timeline-item{
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:16px 16px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .timeline-item:hover{ transform: translateY(-2px); box-shadow: 0 30px 80px rgba(16,24,40,.10); }
    .timeline-dot{
      width:44px;height:44px;
      border-radius:16px;
      background: linear-gradient(135deg, rgba(109,94,252,.18), rgba(29,183,164,.14));
      border:1px solid rgba(109,94,252,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      color: rgba(16,24,40,.90);
      flex:0 0 auto;
      margin-top:2px;
    }
    .timeline-title{ font-weight:960; }
    .timeline-desc{ margin-top:7px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.65; }

    .grid-2{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .panel-simple{
      padding:18px 18px;
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
    }
    .panel-simple-head{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .panel-simple-title{ font-weight:980; }
    .chip{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(109,94,252,.20);
      background: rgba(109,94,252,.10);
      font-weight:900;
      font-size:12px;
      color: rgba(16,24,40,.78);
      white-space:nowrap;
    }
    .chip-ink{
      border-color: rgba(29,183,164,.22);
      background: rgba(29,183,164,.10);
    }
    .list-check{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
    .list-check li{ display:flex; gap:10px; align-items:flex-start; color: rgba(16,24,40,.74); font-weight:720; line-height:1.5; }
    .list-check li span{ width:20px; height:20px; border-radius:8px; display:flex; align-items:center; justify-content:center;
      background: rgba(29,183,164,.10); border:1px solid rgba(29,183,164,.20); flex:0 0 auto;
      font-size:12px; }
    .list-compact{ gap:9px; }
    .sub-cards .sub-card{ padding:14px 14px; }

    .cards-3{
      margin-top: 18px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card-soft{
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
    }
    .card-top{ display:flex; align-items:center; gap:12px; }
    .card-foot{ margin-top:14px; }

    .section-subgrid{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .mini-section{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:18px 18px;
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
    }
    .segmented{
      margin-top: 10px;
      display:grid;
      gap:10px;
    }
    .seg-item{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.74);
      padding:14px 14px;
      transition: transform .18s ease, border-color .18s ease;
      outline:none;
    }
    .seg-item:hover{ transform: translateY(-2px); border-color: rgba(109,94,252,.25); }
    .seg-title{ font-weight:950; }
    .seg-desc{ margin-top:7px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.6; font-size:13px; }
    .badge-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }

    .network-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
      margin-top: 16px;
    }
    .network-card{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .network-card-head{
      display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: 12px;
    }
    .network-title{ font-weight:980; }
    .network-chip{
      padding:9px 12px;
      border-radius:999px;
      border:1px solid rgba(29,183,164,.22);
      background: rgba(29,183,164,.10);
      font-weight:900; font-size:12px; color: rgba(16,24,40,.78);
      white-space:nowrap;
    }
    .list-steps{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
    .list-steps li{
      display:flex; gap:12px; align-items:flex-start;
    }
    .step-num{
      width:36px;height:36px;border-radius:14px;
      background: linear-gradient(135deg, rgba(109,94,252,.16), rgba(29,183,164,.12));
      border:1px solid rgba(109,94,252,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:980;
      flex:0 0 auto;
    }
    .step-title{ font-weight:960; }
    .step-desc{ margin-top:6px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.6; font-size:13px; }

    .contact-panel{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .contact-panel-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; }
    .contact-title{ font-weight:980; }
    .contact-subtitle{ color: rgba(16,24,40,.64); font-weight:720; font-size:13px; }
    .contact-items{ margin-top: 12px; display:grid; gap:10px; }
    .contact-item{ display:flex; align-items:center; justify-content:space-between; gap:12px; border-bottom:1px dashed rgba(16,24,40,.10); padding-bottom:10px; }
    .contact-label{ color: rgba(16,24,40,.62); font-weight:820; font-size:13px; }
    .contact-value{ color: rgba(16,24,40,.92); font-weight:900; text-decoration:none; }
    .contact-qrcode{ margin-top: 14px; display:flex; gap:14px; align-items:center; }
    .qrcode-wrap{
      width:92px; height:92px;
      border-radius:20px;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(16,24,40,.10);
      box-shadow: 0 18px 60px rgba(16,24,40,.08);
      padding:8px;
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .qrcode-img{ width:100%; height:auto; display:block; border-radius:14px; }
    .qrcode-title{ font-weight:980; }
    .qrcode-desc{ margin-top:6px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.6; font-size:13px; }
    .contact-cta{ margin-top: 14px; display:grid; gap:10px; grid-template-columns: 1fr 1fr; }
    .contact-cta .btn{ width:100%; }

    .steps-grid{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
      margin-top: 14px;
    }
    .step-tile{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 16px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .step-tile:hover{ transform: translateY(-3px); box-shadow: 0 30px 80px rgba(16,24,40,.10);}
    .step-tile-top{ display:flex; align-items:center; gap:12px; }
    .step-tile-num{
      width:46px;height:46px;border-radius:18px;
      background: linear-gradient(135deg, rgba(109,94,252,.16), rgba(29,183,164,.12));
      border:1px solid rgba(109,94,252,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:990;
    }
    .step-tile-title{ font-weight:980; }
    .mini-bullets{ list-style:none; padding:0; margin:12px 0 0; display:grid; gap:10px; }
    .mini-bullets li{ color: rgba(16,24,40,.68); font-weight:680; line-height:1.6; font-size:13px; position:relative; padding-left:18px; }
    .mini-bullets li::before{
      content:"";
      position:absolute; left:0; top:8px;
      width:10px;height:10px;border-radius:4px;
      background: rgba(29,183,164,.14);
      border:1px solid rgba(29,183,164,.22);
    }

    .comparison-wrap{
      margin-top: 16px;
      display:grid;
      grid-template-columns: .9fr 1.1fr;
      gap:14px;
      align-items:start;
    }
    .rating-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(650px 240px at 15% 0%, rgba(255,183,3,.20), transparent 52%),
        radial-gradient(520px 220px at 85% 35%, rgba(109,94,252,.18), transparent 55%),
        rgba(255,255,255,.70);
      box-shadow: var(--shadow2);
      padding:18px 18px;
      position:relative;
      overflow:hidden;
    }
    .rating-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .rating-badge{
      font-weight:980;
      color: rgba(16,24,40,.86);
    }
    .stars{
      font-size:18px;
      letter-spacing:2px;
      color: rgba(255,183,3,.95);
      text-shadow: 0 14px 40px rgba(255,183,3,.20);
      font-weight:950;
    }
    .rating-score{
      margin-top: 14px;
      display:flex; align-items:baseline; gap:10px; flex-wrap:wrap;
    }
    .score-num{
      font-size: 46px;
      font-weight: 990;
      letter-spacing:-1px;
      background: linear-gradient(135deg, rgba(109,94,252,.95), rgba(29,183,164,.95));
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
    }
    .score-suffix{ font-weight:920; color: rgba(16,24,40,.76); }
    .rating-desc{ margin-top: 8px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.7; }

    .compare-table-wrap{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .table-title{ font-weight:980; margin-bottom: 10px; }
    .table-scroll{
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      -webkit-overflow-scrolling: touch;
    }
    table{ width:100%; border-collapse:collapse; min-width: 620px;}
    th,td{
      padding:12px 12px;
      border-bottom:1px solid rgba(16,24,40,.08);
      text-align:left;
      vertical-align:top;
      font-size:14px;
    }
    thead th{
      background: rgba(247,245,255,.85);
      color: rgba(16,24,40,.85);
      font-weight:950;
      position:sticky; top:0;
      z-index:1;
    }
    tbody tr:hover td{ background: rgba(109,94,252,.04); }
    .muted-cell{ color: rgba(16,24,40,.62); font-weight:680; }
    .badge-ok{
      display:inline-flex; align-items:center; padding:6px 10px; border-radius:999px;
      background: rgba(29,183,164,.12);
      border:1px solid rgba(29,183,164,.22);
      font-weight:920;
      color: rgba(16,24,40,.88);
      margin-right:8px;
      white-space:nowrap;
    }
    .table-foot{
      margin-top: 12px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }

    .grid-form{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      margin-top: 14px;
      align-items:start;
    }
    .form-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
      padding:18px 18px;
    }
    .form-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom: 8px; }
    .form-title{ font-weight:990; font-size:18px; }
    .form-sub{ color: rgba(16,24,40,.66); font-weight:650; margin-top:6px; font-size:13px; }
    .form{ margin-top: 12px; display:grid; gap:12px; }
    .form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
    .field{ display:grid; gap:8px; }
    .field-label{ font-weight:900; color: rgba(16,24,40,.80); font-size:13px; }
    input,select,textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(16,24,40,.14);
      background: rgba(255,255,255,.86);
      padding:12px 12px;
      font-size:14px;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease;
      color: rgba(16,24,40,.95);
      font-weight:680;
    }
    textarea{ resize: vertical; min-height: 110px; }
    input:focus,select:focus,textarea:focus{
      border-color: rgba(109,94,252,.42);
      box-shadow:0 0 0 4px rgba(109,94,252,.18);
    }
    .form-privacy{ margin-top: 2px; }
    .check{
      display:flex; align-items:flex-start; gap:10px;
      color: rgba(16,24,40,.68); font-weight:650; line-height:1.6;
      font-size:13px;
      user-select:none;
    }
    .check input{
      width:18px;height:18px;
      margin-top:2px;
      accent-color: var(--primary1);
    }
    .form-actions{
      display:flex; gap:12px; flex-wrap:wrap;
    }
    .form-actions .btn{ flex: 1 1 200px; }
    #formStatus{
      min-height: 22px;
      color: rgba(16,24,40,.72);
      font-weight:700;
      font-size:13px;
      opacity:0;
      transform: translateY(6px);
      transition: opacity .2s ease, transform .2s ease;
    }
    #formStatus.show{ opacity:1; transform: translateY(0); }

    .form-side{
      display:grid; gap:14px;
    }
    .side-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
      overflow:hidden;
    }
    .side-card-tips{
      background:
        radial-gradient(720px 260px at 0% 0%, rgba(29,183,164,.15), transparent 55%),
        rgba(255,255,255,.72);
    }
    .side-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 10px; }
    .side-title{ font-weight:990; }
    .side-chip{
      padding:9px 12px;border-radius:999px;
      border:1px solid rgba(109,94,252,.20);
      background: rgba(109,94,252,.10);
      font-weight:900; font-size:12px;
      white-space:nowrap;
      color: rgba(16,24,40,.78);
    }
    .side-chip2{
      border-color: rgba(29,183,164,.22);
      background: rgba(29,183,164,.10);
    }
    .price-demo{ display:grid; gap:10px; margin-top: 6px; }
    .price-row{
      border-radius:16px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
    }
    .price-label{ font-weight:950; color: rgba(16,24,40,.78); font-size:13px; }
    .price-value{ margin-top:6px; color: rgba(16,24,40,.86); font-weight:720; line-height:1.6; font-size:13.5px; }
    .side-actions{ margin-top: 12px; display:grid; gap:10px; }

    .accordion-lite{ display:grid; gap:10px; margin-top: 10px; }
    .acc-item{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      overflow:hidden;
    }
    .acc-btn{
      width:100%;
      text-align:left;
      padding:12px 12px;
      border:0;
      background: transparent;
      cursor:pointer;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:920;
      color: rgba(16,24,40,.90);
    }
    .acc-icon{
      width:28px;height:28px;border-radius:12px;
      background: rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.18);
      display:flex; align-items:center; justify-content:center;
    }
    .acc-panel{
      max-height:0;
      overflow:hidden;
      transition:max-height .25s ease;
      padding:0 12px;
      color: rgba(16,24,40,.66);
      font-weight:650;
      line-height:1.7;
      font-size:13.5px;
    }

    .pricing-grid{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .pricing-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .pricing-card-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
    }
    .pricing-title{ font-weight:990; }
    .pricing-chip{
      padding:9px 12px;border-radius:999px;
      border:1px solid rgba(29,183,164,.22);
      background: rgba(29,183,164,.10);
      font-weight:900; font-size:12px;
      color: rgba(16,24,40,.78);
      white-space:nowrap;
    }
    .pricing-chip2{
      border-color: rgba(109,94,252,.22);
      background: rgba(109,94,252,.10);
    }
    .divider{ height:1px; background: rgba(16,24,40,.10); margin:12px 0; }
    .pricing-cta{ margin-top: 14px; display:grid; gap:10px; grid-template-columns: 1fr 1fr; }
    .mini-table th, .mini-table td{ padding:12px 12px; }
    .mini-table thead th{ background: rgba(247,245,255,.85); }
    .mini-table{ min-width: 520px; }
    .image-strip{
      margin-top: 16px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .strip-item{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      overflow:hidden;
      display:flex; flex-direction:column;
      min-height: 260px;
    }
    .strip-media{ padding:14px; }
    .strip-media-square{ padding:14px; }
    .strip-img{
      width:100%;
      height:auto;
      display:block;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      object-fit:contain;
      background: rgba(255,255,255,.7);
    }
    .strip-meta{ padding:0 16px 16px; margin-top:auto; }
    .strip-title{ font-weight:980; }
    .strip-desc{ margin-top:7px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.65; font-size:13.5px; }

    .training-grid{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .training-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
      padding:18px 18px;
    }
    .training-head{ display:flex; flex-direction:column; gap:8px; }
    .training-title{ font-weight:990; font-size:18px; }
    .training-sub{ color: rgba(16,24,40,.66); font-weight:680; font-size:13px; line-height:1.6; }
    .course-list{ margin-top: 14px; display:grid; gap:10px; }
    .course-item{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
    }
    .course-dot{
      width:34px;height:34px;border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(109,94,252,.12);
      border:1px solid rgba(109,94,252,.20);
      font-weight:980;
      flex:0 0 auto;
    }
    .course-name{ font-weight:980; }
    .course-desc{ margin-top:6px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.6; font-size:13px; }
    .training-actions{ margin-top: 14px; display:grid; gap:10px; grid-template-columns: 1fr 1fr; }

    .train-hero-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(760px 260px at 20% 0%, rgba(109,94,252,.16), transparent 55%),
        radial-gradient(620px 260px at 90% 0%, rgba(29,183,164,.14), transparent 55%),
        rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .train-hero-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; }
    .train-hero-title{ font-weight:990; }
    .train-hero-chip{
      padding:9px 12px;border-radius:999px;
      border:1px solid rgba(255,183,3,.25);
      background: rgba(255,183,3,.14);
      font-weight:950; font-size:12px; color: rgba(16,24,40,.80);
      white-space:nowrap;
    }
    .audience-grid{
      margin-top: 12px;
      display:grid;
      gap:10px;
    }
    .audience{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:14px 14px;
    }
    .audience-icon{
      width:42px;height:42px;border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(29,183,164,.10);
      border:1px solid rgba(29,183,164,.22);
      font-size:18px;
    }
    .audience-name{ margin-top:10px; font-weight:980; }
    .audience-desc{ margin-top:7px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.65; font-size:13.5px; }
    .train-cta{ margin-top: 14px; display:grid; gap:10px; grid-template-columns: 1fr 1fr; }

    .micro-grid{
      margin-top: 14px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
    }
    .micro-card{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      padding:14px 12px;
      box-shadow: 0 22px 70px rgba(16,24,40,.04);
    }
    .micro-num{
      font-weight:990;
      letter-spacing:-.4px;
      background: linear-gradient(135deg, rgba(109,94,252,.95), rgba(29,183,164,.95));
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
      font-size:16px;
    }
    .micro-label{ margin-top:8px; font-weight:820; color: rgba(16,24,40,.66); font-size:12.5px; line-height:1.5; }

    .cases-grid{
      margin-top: 16px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .case-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      overflow:hidden;
      display:flex; flex-direction:column;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .case-card:hover{ transform: translateY(-3px); box-shadow: 0 30px 90px rgba(16,24,40,.12); }
    .case-media{ position:relative; padding:14px; }
    .case-img{
      width:100%;
      height: 180px;
      object-fit: cover;
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.7);
      display:block;
    }
    .case-overlay{
      position:absolute; inset:14px;
      border-radius:20px;
      background: linear-gradient(180deg, rgba(7,10,20,.0) 40%, rgba(7,10,20,.18));
      pointer-events:none;
    }
    .case-body{ padding:0 16px 16px; display:flex; flex-direction:column; gap:10px; margin-top:2px; }
    .case-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; }
    .case-type{ font-weight:950; color: rgba(16,24,40,.82); }
    .case-chip{
      padding:9px 12px;border-radius:999px;
      border:1px solid rgba(109,94,252,.20);
      background: rgba(109,94,252,.10);
      font-weight:920; font-size:12px; color: rgba(16,24,40,.80);
      white-space:nowrap;
    }
    .case-title{ margin:0; font-size:16px; font-weight:990; letter-spacing:-.2px; }
    .case-foot{ margin-top:auto; }
    .cases-more{
      margin-top: 14px;
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(680px 220px at 10% 0%, rgba(109,94,252,.16), transparent 56%),
        radial-gradient(560px 220px at 90% 20%, rgba(29,183,164,.14), transparent 56%),
        rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .cases-more-title{ font-weight:990; font-size:16px; }
    .cases-more-desc{ margin-top:7px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.7; font-size:13.5px; }
    .cases-more-right{ display:flex; gap:12px; flex-wrap:wrap; }
    .cases-more-right .btn{ min-width: 190px; }

    .articles-grid{
      margin-top: 16px;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:14px;
      align-items:start;
    }
    .article-list{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .list-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; }
    .list-title{ font-weight:990; font-size:18px; }
    .list-sub{ color: rgba(16,24,40,.66); font-weight:680; font-size:13px; }
    .list-items{ margin-top: 12px; display:grid; gap:10px; }
    .list-item{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      text-decoration:none;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .list-item:hover{ transform: translateY(-2px); border-color: rgba(109,94,252,.25); box-shadow: 0 22px 70px rgba(16,24,40,.08); }
    .li-dot{
      width:12px;height:12px;border-radius:6px;
      background: linear-gradient(135deg, rgba(109,94,252,.9), rgba(29,183,164,.9));
      box-shadow: 0 0 0 6px rgba(109,94,252,.12);
      flex:0 0 auto;
    }
    .li-main{ flex:1; }
    .li-title{ font-weight:970; letter-spacing:-.2px; color: rgba(16,24,40,.92); }
    .li-desc{ margin-top:6px; color: rgba(16,24,40,.66); font-weight:650; font-size:13px; line-height:1.6; }
    .li-arrow{ font-weight:980; color: rgba(109,94,252,.95); }
    .list-foot{ margin-top: 12px; }
    .sidebar{
      display:grid;
      gap:14px;
    }
    .sidebox{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .sidebox-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
    .sidebox-title{ font-weight:990; font-size:18px; }
    .sidebox-chip{
      padding:9px 12px;border-radius:999px;
      border:1px solid rgba(109,94,252,.20);
      background: rgba(109,94,252,.10);
      font-weight:920; font-size:12px; color: rgba(16,24,40,.80);
      white-space:nowrap;
    }
    .bio-grid{ margin-top: 12px; display:grid; gap:10px; }
    .bio-item{
      display:flex; gap:12px; align-items:flex-start;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
    }
    .bio-icon{
      width:40px;height:40px;border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(29,183,164,.10);
      border:1px solid rgba(29,183,164,.22);
      font-size:18px;
      flex:0 0 auto;
    }
    .bio-title{ font-weight:980; }
    .bio-desc{ margin-top:6px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.6; font-size:13px; }

    .sidebox-links .quick-links{
      margin-top: 12px;
      display:flex; flex-wrap:wrap; gap:10px;
    }
    .q-link{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      text-decoration:none;
      color: rgba(16,24,40,.86);
      font-weight:900;
      font-size:13px;
      transition: transform .15s ease;
    }
    .q-link:hover{ transform: translateY(-1px); }

    .help-grid{
      margin-top: 16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .help-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
    }
    .help-title{ font-weight:990; font-size:18px; margin-bottom: 12px; }
    .help-list{ display:grid; gap:12px; }
    .help-item{
      display:flex; gap:12px;
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:12px 12px;
    }
    .help-idx{
      width:36px;height:36px;border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.20);
      font-weight:990;
      flex:0 0 auto;
    }
    .help-item-title{ font-weight:980; }
    .help-item-desc{ margin-top:6px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.6; font-size:13px; }
    .help-bullets{
      list-style:none; padding:0; margin:0;
      display:grid; gap:12px;
      font-weight:720; color: rgba(16,24,40,.72);
      line-height:1.6; font-size:14px;
    }
    .help-bullets li{ display:flex; gap:10px; align-items:flex-start; }
    .help-bullets li span{ width:18px;height:18px; border-radius:8px; background: rgba(29,183,164,.10); border:1px solid rgba(29,183,164,.22); display:flex; align-items:center; justify-content:center; flex:0 0 auto; font-size:12px; }
    .help-actions{ margin-top: 14px; display:grid; gap:10px; grid-template-columns: 1fr 1fr; }
    .help-small{ margin-top: 12px; border-top:1px dashed rgba(16,24,40,.12); padding-top: 12px; }
    .small-line{ color: rgba(16,24,40,.66); font-weight:650; line-height:1.7; font-size:13px; }

    .faq-grid{
      margin-top: 16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .faq-col{ display:grid; gap:10px; }
    .faq-item{
      border-radius:22px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:0;
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      border:0;
      background: transparent;
      cursor:pointer;
      text-align:left;
      padding:14px 14px;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight:980;
      color: rgba(16,24,40,.92);
    }
    .faq-icon{
      width:34px;height:34px;border-radius:14px;
      background: rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.20);
      display:flex; align-items:center; justify-content:center;
      font-size:18px;
      flex:0 0 auto;
    }
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition:max-height .25s ease;
      padding:0 14px;
      color: rgba(16,24,40,.66);
      font-weight:650;
      line-height:1.75;
      font-size:14px;
    }
    .faq-extra{
      margin-top: 14px;
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(700px 240px at 15% 0%, rgba(29,183,164,.16), transparent 55%),
        radial-gradient(560px 220px at 85% 15%, rgba(109,94,252,.14), transparent 55%),
        rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .faq-extra-title{ font-weight:990; }
    .faq-extra-desc{ margin-top:7px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.7; font-size:13.5px; }
    .faq-extra-right{ display:flex; gap:12px; flex-wrap:wrap; }
    .faq-extra-right .btn{ min-width: 180px; }

    .contact-grid{
      margin-top: 16px;
      display:grid;
      grid-template-columns: .95fr 1.05fr;
      gap:14px;
      align-items:start;
    }
    .contact-info-card,.contact-action-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
      padding:18px 18px;
    }
    .contact-info-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
    }
    .contact-info-title{ font-weight:990; font-size:18px; }
    .contact-info-chip{
      padding:9px 12px;border-radius:999px;
      border:1px solid rgba(29,183,164,.22);
      background: rgba(29,183,164,.10);
      font-weight:950; font-size:12px; color: rgba(16,24,40,.80);
      white-space:nowrap;
    }
    .contact-info-body{ margin-top: 14px; display:grid; gap:10px; }
    .info-row{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border-bottom:1px dashed rgba(16,24,40,.12);
      padding-bottom:10px;
    }
    .info-k{ color: rgba(16,24,40,.62); font-weight:860; font-size:13px; }
    .info-v{ color: rgba(16,24,40,.92); font-weight:950; text-decoration:none; }
    .contact-quick{ margin-top: 14px; display:grid; gap:10px; grid-template-columns: 1fr 1fr; }
    .friends{
      margin-top: 14px;
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:16px 16px;
    }
    .friends-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; }
    .friends-title{ font-weight:990; }
    .friends-sub{ color: rgba(16,24,40,.64); font-weight:680; font-size:13px; }
    .friends-links{ margin-top: 12px; display:flex; flex-wrap:wrap; gap:10px; }
    .friends-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      color: rgba(16,24,40,.86);
      font-weight:900;
      font-size:13px;
      transition: transform .15s ease;
    }
    .friends-links a:hover{ transform: translateY(-1px); }

    .contact-action-card{ position:relative; overflow:hidden; }
    .contact-action-head{ display:flex; flex-direction:column; gap:8px; margin-bottom: 10px; }
    .contact-action-title{ font-weight:990; font-size:18px; }
    .contact-action-sub{ color: rgba(16,24,40,.66); font-weight:680; font-size:13px; }
    .contact-form .form-actions{ margin-top: 2px; }
    .contact-cta-row{
      margin-top: 10px;
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-top:1px dashed rgba(16,24,40,.12);
      padding-top:12px;
    }

    .join-grid{
      margin-top: 16px;
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:start;
    }
    .join-left{
      display:grid; gap:14px;
    }
    .join-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow2);
      padding:18px 18px;
    }
    .join-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom: 12px; }
    .join-title{ font-weight:990; font-size:18px; }
    .join-chip{
      padding:9px 12px;border-radius:999px;
      border:1px solid rgba(109,94,252,.22);
      background: rgba(109,94,252,.10);
      font-weight:950; font-size:12px; color: rgba(16,24,40,.80);
      white-space:nowrap;
    }
    .join-actions{ margin-top: 14px; display:grid; gap:10px; grid-template-columns: 1fr 1fr; }
    .join-card-2{ background: rgba(255,255,255,.70); }
    .join-chip2{
      border-color: rgba(29,183,164,.22);
      background: rgba(29,183,164,.10);
    }
    .join-audience{ margin-top: 10px; display:grid; gap:10px; }
    .aud-tile{
      border-radius:18px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      padding:14px 14px;
      display:flex; gap:12px; align-items:flex-start;
    }
    .aud-icon{
      width:42px;height:42px;border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(109,94,252,.10);
      border:1px solid rgba(109,94,252,.20);
      font-size:18px;
      flex:0 0 auto;
    }
    .aud-name{ font-weight:980; }
    .aud-desc{ margin-top:7px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.6; font-size:13.5px; }

    .join-right{
      display:grid; gap:14px;
    }
    .join-cta-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(760px 260px at 10% 0%, rgba(255,183,3,.16), transparent 55%),
        radial-gradient(620px 260px at 90% 0%, rgba(109,94,252,.14), transparent 55%),
        rgba(255,255,255,.70);
      box-shadow: var(--shadow2);
      padding:18px 18px;
      overflow:hidden;
    }
    .join-cta-head{ display:flex; flex-direction:column; gap:8px; margin-bottom: 10px; }
    .join-cta-title{ font-weight:990; font-size:18px; }
    .join-cta-sub{ color: rgba(16,24,40,.66); font-weight:680; font-size:13px; line-height:1.6; }
    .join-form .form{ margin-top: 10px; }
    .join-fine{ margin-top: 12px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.7; font-size:13.5px; border-top:1px dashed rgba(16,24,40,.12); padding-top:12px;}
    .join-banner-links{ margin-top: 12px; }
    .join-small-title{ font-weight:920; color: rgba(16,24,40,.82); margin-bottom: 10px; }
    .partner-links{ display:flex; flex-wrap:wrap; gap:10px; }
    .partner-link{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      color: rgba(16,24,40,.86);
      font-weight:900;
      font-size:13px;
      transition: transform .15s ease;
    }
    .partner-link:hover{ transform: translateY(-1px); }

    .join-mini-strip{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:16px 16px;
    }
    .mini-strip-head{ font-weight:990; margin-bottom: 10px; }
    .mini-strip-links{ display:flex; flex-wrap:wrap; gap:10px; }
    .mini-strip-links a{
      text-decoration:none;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.78);
      color: rgba(16,24,40,.86);
      font-weight:900;
      font-size:13px;
      transition: transform .15s ease;
    }
    .mini-strip-links a:hover{ transform: translateY(-1px); }

    .reviews-grid{
      margin-top: 16px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .review-card{
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .review-card:hover{ transform: translateY(-3px); box-shadow: 0 30px 90px rgba(16,24,40,.12); }
    .review-top{ display:flex; align-items:flex-start; gap:12px; justify-content:space-between; }
    .review-avatar{
      width:46px;height:46px;border-radius:18px;
      background: linear-gradient(135deg, rgba(109,94,252,.14), rgba(29,183,164,.12));
      border:1px solid rgba(109,94,252,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight:990;
      color: rgba(16,24,40,.90);
      flex:0 0 auto;
    }
    .review-name{ font-weight:990; }
    .review-meta{ margin-top:6px; color: rgba(16,24,40,.66); font-weight:680; font-size:13px; line-height:1.6; }
    .review-stars{ color: rgba(255,183,3,.95); font-weight:990; letter-spacing:1px; }
    .review-text{ margin:12px 0 0; color: rgba(16,24,40,.68); font-weight:650; line-height:1.75; font-size:14px; }

    .reviews-foot{
      margin-top: 14px;
      border-radius:24px;
      border:1px solid rgba(16,24,40,.10);
      background:
        radial-gradient(720px 240px at 15% 0%, rgba(109,94,252,.16), transparent 55%),
        radial-gradient(560px 220px at 85% 20%, rgba(29,183,164,.14), transparent 55%),
        rgba(255,255,255,.72);
      box-shadow: 0 22px 70px rgba(16,24,40,.06);
      padding:18px 18px;
      display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
    }
    .reviews-foot-title{ font-weight:990; }
    .reviews-foot-desc{ margin-top:7px; color: rgba(16,24,40,.66); font-weight:650; line-height:1.7; font-size:13.5px; }
    .reviews-foot-right{ display:flex; gap:12px; flex-wrap:wrap; }
    .reviews-foot-right .btn{ min-width: 180px; }

    .site-footer{
      background: var(--footerBg);
      color: var(--footerText);
      padding: 34px 0 26px;
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .footer-container{ }
    .footer-top{
      display:flex; gap:18px; align-items:flex-start; justify-content:space-between; flex-wrap:wrap;
      padding-bottom: 16px;
      border-bottom:1px solid var(--footerLine);
      margin-bottom: 16px;
    }
    .footer-brand{ display:flex; gap:12px; align-items:center; flex: 1 1 340px; }
    .footer-logo .ai-page-logo{ width:42px; background: rgba(255,255,255,.95); padding:6px; }
    .footer-meta{ display:flex; flex-direction:column; gap:6px; }
    .footer-name{ font-weight:990; font-size:16px; }
    .footer-desc{ color: var(--footerMuted); font-weight:650; line-height:1.6; font-size:13.5px; max-width: 52ch; }

    .footer-links{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; flex: 1 1 560px; }
    .footer-col{ min-width: 160px; }
    .footer-title{ font-weight:980; margin-bottom: 10px; }
    .footer-a{ display:grid; gap:10px; }
    .footer-a a{
      color: var(--footerText);
      text-decoration:none;
      font-weight:720;
      opacity:.92;
      transition: opacity .15s ease, transform .15s ease;
    }
    .footer-a a:hover{ opacity:1; transform: translateY(-1px); text-decoration: underline; text-decoration-thickness:2px; text-underline-offset:3px; }
    .footer-bottom{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .copyright{ font-weight:760; color: var(--footerMuted); }
    .footer-small{ margin-top:6px; color: var(--footerMuted); font-weight:650; }
    .footer-small a{ color: var(--footerText); text-decoration:none; font-weight:820; }
    .footer-small a:hover{ text-decoration: underline; }
    .footer-right{ display:flex; align-items:center; gap:12px; }
    .footer-note{ color: var(--footerMuted); font-weight:650; font-size:13.5px; }
    .footer-top-link{
      color: rgba(255,255,255,.92);
      text-decoration:none;
      font-weight:900;
      padding:10px 12px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      transition: transform .15s ease, background .15s ease;
    }
    .footer-top-link:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }

    .to-top{
      position:fixed;
      right:16px;
      bottom:16px;
      width:44px;height:44px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.14);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 60px rgba(16,24,40,.14);
      cursor:pointer;
      font-weight:980;
      color: rgba(16,24,40,.86);
      opacity:0;
      transform: translateY(10px);
      pointer-events:none;
      transition: opacity .2s ease, transform .2s ease;
      z-index:120;
    }
    .to-top.show{ opacity:1; transform: translateY(0); pointer-events:auto; }
    .float-kefu{
      position:fixed;
      left:16px;
      bottom:16px;
      z-index:120;
      display:flex; align-items:center; gap:10px;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid rgba(16,24,40,.14);
      background: linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,255,255,.78));
      box-shadow: 0 18px 60px rgba(16,24,40,.14);
      cursor:pointer;
      font-weight:980;
      color: rgba(16,24,40,.90);
      transition: transform .15s ease;
    }
    .float-kefu:hover{ transform: translateY(-2px); }
    .float-kefu-dot{
      width:10px;height:10px;border-radius:50%;
      background: linear-gradient(135deg, var(--primary1), var(--primary2));
      box-shadow: 0 0 0 6px rgba(109,94,252,.14);
    }

    .kefu-pop{
      position:fixed; inset:0;
      z-index:200;
      display:none;
      background: rgba(7,10,20,.38);
      backdrop-filter: blur(10px);
      padding:14px;
      align-items:center;
      justify-content:center;
    }
    .kefu-pop.open{ display:flex; }
    .kefu-pop-inner{
      width:100%;
      max-width:520px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .kefu-pop-head{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:14px 16px;
      border-bottom:1px solid rgba(16,24,40,.10);
    }
    .kefu-pop-title{ font-weight:990; }
    .kefu-close{
      width:40px;height:40px;border-radius:14px;
      border:1px solid rgba(16,24,40,.14);
      background: rgba(255,255,255,.9);
      cursor:pointer;
      font-size:22px;
      font-weight:900;
    }
    .kefu-pop-body{
      padding:16px 16px 10px;
      display:grid; gap:12px;
      align-items:center;
      justify-items:center;
      text-align:center;
    }
    .kefu-pop-img{
      width:170px; height:auto;
      border-radius:20px;
      border:1px solid rgba(16,24,40,.10);
      background: rgba(255,255,255,.9);
      box-shadow: 0 18px 60px rgba(16,24,40,.12);
    }
    .kefu-pop-desc{ color: rgba(16,24,40,.66); font-weight:680; line-height:1.7; }
    .kefu-pop-actions{
      padding:12px 16px 16px;
      display:grid; gap:10px; grid-template-columns: 1fr 1fr;
      border-top:1px solid rgba(16,24,40,.10);
      background: rgba(247,245,255,.60);
    }

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

    @media (max-width: 980px){
      .nav-desktop{ display:none; }
      .menu-btn{ display:flex; }
      .hero-grid{ grid-template-columns: 1fr; }
      .hero-title{ font-size: 34px; }
      .hero-mini{ grid-template-columns: 1fr; }
      .cards-grid{ grid-template-columns: repeat(2, 1fr); }
      .service-layout{ grid-template-columns: 1fr; }
      .cards-3{ grid-template-columns: 1fr; }
      .section-subgrid{ grid-template-columns: 1fr; }
      .network-grid{ grid-template-columns: 1fr; }
      .steps-grid{ grid-template-columns: repeat(2, 1fr); }
      .comparison-wrap{ grid-template-columns: 1fr; }
      .grid-form{ grid-template-columns: 1fr; }
      .pricing-grid{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .cases-grid{ grid-template-columns: 1fr; }
      .image-strip{ grid-template-columns: 1fr; }
      .articles-grid{ grid-template-columns: 1fr; }
      .help-grid{ grid-template-columns: 1fr; }
      .faq-grid{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .reviews-grid{ grid-template-columns: 1fr; }
      .footer-links{ grid-template-columns: 1fr; }
      .footer-right{ width:100%; justify-content:space-between; }
      .footer-bottom{ align-items:flex-start; }
    }

    @media (prefers-reduced-motion: reduce){
      .orb, .reveal { animation:none!important; transition:none!important; }
      .btn, .nav-link, .card, .stat, .case-card, .review-card { transition:none!important; }
    }