:root{
      --bg0:#fff7ef;
      --bg1:#f6f8ff;
      --card:#ffffff;
      --text:#1f2937;
      --muted:#556274;
      --line:rgba(20, 30, 50, .10);
      --shadow: 0 14px 40px rgba(16, 24, 40, .10);
      --shadow2: 0 8px 24px rgba(16, 24, 40, .12);
      --brand1:#6d5efc;
      --brand2:#00b7ff;
      --brand3:#ff4d8d;
      --brand4:#22c55e;
      --brand5:#f59e0b;
      --accent:#111827;
      --radius:16px;
      --radius2:22px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", sans-serif;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 10% -10%, rgba(109,94,252,.18), transparent 55%),
        radial-gradient(900px 520px at 95% 10%, rgba(0,183,255,.16), transparent 60%),
        radial-gradient(800px 520px at 20% 80%, rgba(255,77,141,.12), transparent 55%),
        linear-gradient(180deg, var(--bg0) 0%, #ffffff 28%, var(--bg1) 100%);
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; height:auto; display:block}
    .container{
      width:100%;
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }
    .skip-link{
      position:absolute; left:-999px; top:10px;
      background:#fff; padding:10px 12px; border:1px solid var(--line); border-radius:10px;
      z-index:9999;
    }
    .skip-link:focus{left:18px}
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom:1px solid rgba(20,30,50,.08);
    }
    .nav-inner{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 0;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      min-width: 200px;
    }
    .brand-badge{
      width:40px; height:40px; border-radius:14px;
      background:
        radial-gradient(18px 18px at 25% 25%, rgba(255,255,255,.95), rgba(255,255,255,0) 55%),
        linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 10px 24px rgba(109,94,252,.18);
      position:relative;
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-badge::after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(40px 30px at 20% 0%, rgba(255,255,255,.35), transparent 45%),
        radial-gradient(45px 35px at 90% 110%, rgba(255,255,255,.20), transparent 55%);
      transform: rotate(8deg);
      opacity:.9;
    }
    .brand-text{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand-name{
      font-weight:850; letter-spacing:.2px;
      font-size:15px;
    }
    .brand-sub{
      font-size:12px; color:var(--muted);
      margin-top:3px;
    }
    .nav-links{
      display:flex; align-items:center; gap:14px;
      flex-wrap:nowrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px;
      color:#253042;
      padding:10px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(109,94,252,.08);
      border-color: rgba(109,94,252,.18);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
      margin-left:6px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:14px;
      border:1px solid rgba(20,30,50,.12);
      background:#fff;
      color:#0f172a;
      font-weight:750;
      font-size:13px;
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
    }
    .btn:active{transform: translateY(1px)}
    .btn:hover{box-shadow: 0 14px 34px rgba(16,24,40,.10); border-color: rgba(109,94,252,.30)}
    .btn-primary{
      border-color: rgba(109,94,252,.35);
      background:
        radial-gradient(120px 80px at 25% 30%, rgba(255,255,255,.45), rgba(255,255,255,0) 55%),
        linear-gradient(135deg, var(--brand1), var(--brand2));
      color:#0b1220;
      box-shadow: 0 18px 44px rgba(109,94,252,.22);
      position:relative;
      overflow:hidden;
    }
    .btn-primary::after{
      content:"";
      position:absolute; top:-40%; left:-20%;
      width:60%; height:180%;
      background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.55), rgba(255,255,255,.0));
      transform: rotate(20deg);
      opacity:.65;
      animation: sheen 3.2s ease-in-out infinite;
    }
    @keyframes sheen{
      0%,55%{transform: translateX(-60%) rotate(20deg); opacity:.0}
      70%{opacity:.75}
      100%{transform: translateX(230%) rotate(20deg); opacity:.0}
    }
    .btn svg{flex:0 0 auto}
    .icon{
      width:18px; height:18px;
      display:inline-block;
    }

    .hamburger{
      display:none;
      border-radius:14px;
      padding:10px 12px;
      border:1px solid rgba(20,30,50,.12);
      background:#fff;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease;
      box-shadow: 0 10px 24px rgba(16,24,40,.06);
    }
    .hamburger:active{transform: translateY(1px)}
    .hamburger .bars{
      width:18px; height:14px; position:relative;
    }
    .hamburger .bars span{
      position:absolute; left:0; right:0;
      height:2px; border-radius:2px; background:#0f172a;
      transition: transform .2s ease, opacity .2s ease, top .2s ease;
    }
    .hamburger .bars span:nth-child(1){top:2px}
    .hamburger .bars span:nth-child(2){top:6px}
    .hamburger .bars span:nth-child(3){top:10px}
    .hamburger[aria-expanded="true"] .bars span:nth-child(1){top:6px; transform: rotate(45deg)}
    .hamburger[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
    .hamburger[aria-expanded="true"] .bars span:nth-child(3){top:6px; transform: rotate(-45deg)}

    .mobile-panel{
      display:none;
      border-top:1px solid rgba(20,30,50,.08);
      padding:10px 0 16px;
    }
    .mobile-links{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:10px;
      padding-top:8px;
    }
    .mobile-links a{
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.8);
      padding:12px 12px;
      border-radius:14px;
      font-size:13px;
      font-weight:720;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .mobile-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(109,94,252,.28);
      box-shadow: 0 14px 34px rgba(16,24,40,.10);
    }
    .mobile-cta{
      display:flex; gap:12px; margin-top:12px;
    }
    .mobile-cta .btn{flex:1}
    .hero{
      padding:38px 0 20px;
      position:relative;
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:18px;
      align-items:stretch;
    }
    .hero-left{
      padding:18px 0;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.68);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
      font-weight:760;
      font-size:12px;
      color:#2a3550;
    }
    .k-dot{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand3), var(--brand2));
      box-shadow: 0 10px 18px rgba(255,77,141,.20);
    }
    .hero h1{
      font-size:42px;
      line-height:1.12;
      margin:14px 0 10px;
      letter-spacing:-.7px;
      font-weight:930;
    }
    .hero p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
      max-width:58ch;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      margin-top:18px;
      flex-wrap:wrap;
      align-items:center;
    }
    .btn-ghost{
      background: rgba(255,255,255,.75);
      border-color: rgba(20,30,50,.12);
    }
    .fineprint{
      display:flex; gap:14px; align-items:center; margin-top:14px; flex-wrap:wrap;
      color:#4b5563; font-size:12px;
    }
    .fine-item{
      display:flex; align-items:center; gap:8px;
      padding:8px 10px;
      border:1px dashed rgba(20,30,50,.14);
      border-radius:999px;
      background: rgba(255,255,255,.55);
    }
    .hero-right{
      position:relative;
      padding:16px;
      border-radius:var(--radius2);
      background:
        radial-gradient(600px 240px at 20% 0%, rgba(109,94,252,.16), transparent 60%),
        radial-gradient(520px 260px at 100% 10%, rgba(0,183,255,.14), transparent 60%),
        rgba(255,255,255,.70);
      border:1px solid rgba(20,30,50,.10);
      box-shadow: 0 18px 54px rgba(16,24,40,.10);
      overflow:hidden;
    }
    .hero-right::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(160px 110px at 10% 15%, rgba(255,77,141,.18), transparent 60%),
        radial-gradient(180px 120px at 90% 20%, rgba(34,197,94,.14), transparent 65%);
      opacity:.9;
      pointer-events:none;
    }
    .hero-right-inner{position:relative; z-index:1}
    .mini-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .metric{
      border-radius:16px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,50,.10);
      padding:12px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height:96px;
      display:flex; flex-direction:column; justify-content:space-between;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(16,24,40,.10);
      border-color: rgba(109,94,252,.26);
    }
    .metric-top{
      display:flex; align-items:center; gap:10px;
    }
    .metric-icon{
      width:34px; height:34px; border-radius:14px;
      background: linear-gradient(135deg, rgba(109,94,252,.18), rgba(0,183,255,.16));
      border:1px solid rgba(109,94,252,.22);
      display:flex; align-items:center; justify-content:center;
    }
    .metric-label{font-size:12px; color:#4b5563; font-weight:740}
    .metric-value{
      font-weight:930;
      letter-spacing:-.4px;
      font-size:20px;
    }
    .metric-note{
      font-size:12px; color:var(--muted); margin-top:8px;
      line-height:1.3;
    }
    .signal{
      margin-top:12px;
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.72);
      display:flex; gap:12px; align-items:flex-start;
    }
    .signal .pulse{
      width:14px; height:14px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand2), var(--brand3));
      box-shadow: 0 0 0 0 rgba(0,183,255,.35);
      animation: pulse 2.2s ease-in-out infinite;
      margin-top:4px;
      flex:0 0 auto;
    }
    @keyframes pulse{
      0%{box-shadow: 0 0 0 0 rgba(0,183,255,.40)}
      60%{box-shadow: 0 0 0 14px rgba(0,183,255,0)}
      100%{box-shadow: 0 0 0 0 rgba(0,183,255,0)}
    }
    .signal b{display:block; margin-bottom:4px}
    .signal div{color:var(--muted); font-size:12px; line-height:1.6}

    section{padding:26px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:26px;
      letter-spacing:-.4px;
      font-weight:930;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.7;
      max-width:64ch;
    }
    .tagline{
      color:#273449;
      font-size:12px;
      font-weight:820;
      display:flex; align-items:center; gap:10px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.66);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
    }
    .tagline .chip{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand1), var(--brand5));
    }

    .cards-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .card{
      border-radius:var(--radius);
      background: rgba(255,255,255,.78);
      border:1px solid rgba(20,30,50,.10);
      box-shadow: 0 14px 40px rgba(16,24,40,.07);
      overflow:hidden;
      position:relative;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: 0 20px 58px rgba(16,24,40,.12);
      border-color: rgba(109,94,252,.26);
    }
    .card .card-inner{padding:16px 16px}
    .card h3{
      margin:0 0 8px;
      font-size:16px;
      font-weight:920;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.75;
    }
    .card .pill-row{
      display:flex; flex-wrap:wrap; gap:8px;
      margin-top:12px;
    }
    .pill{
      font-size:12px;
      color:#2a3550;
      background: rgba(255,255,255,.86);
      border:1px solid rgba(20,30,50,.10);
      padding:7px 10px;
      border-radius:999px;
      font-weight:740;
    }
    .card .corner{
      position:absolute; right:-40px; top:-40px;
      width:120px; height:120px;
      background:
        radial-gradient(50px 50px at 25% 25%, rgba(255,255,255,.6), rgba(255,255,255,0) 60%),
        conic-gradient(from 220deg, rgba(109,94,252,.34), rgba(0,183,255,.22), rgba(255,77,141,.22), rgba(245,158,11,.20), rgba(109,94,252,.34));
      border-radius:50%;
      filter:saturate(1.1);
      opacity:.35;
      pointer-events:none;
    }

    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .step{
      display:flex; gap:12px;
      padding:14px 14px;
      border-radius:var(--radius);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,24,40,.07);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }
    .step:hover{transform: translateY(-2px); box-shadow: 0 18px 54px rgba(16,24,40,.11); border-color: rgba(109,94,252,.22)}
    .step .num{
      width:40px; height:40px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      background: linear-gradient(135deg, rgba(109,94,252,.20), rgba(0,183,255,.18));
      border:1px solid rgba(109,94,252,.22);
      flex:0 0 auto;
    }
    .step h3{margin:0; font-size:15px; font-weight:920}
    .step p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7}

    .compare-wrap{
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .compare-top{
      padding:16px 16px;
      border-bottom:1px solid rgba(20,30,50,.08);
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .rating{
      display:flex; align-items:center; gap:14px; flex-wrap:wrap;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.8);
      box-shadow: 0 12px 28px rgba(16,24,40,.06);
    }
    .star{
      width:18px; height:18px;
      fill: rgba(245,158,11,.95);
      filter: drop-shadow(0 6px 10px rgba(245,158,11,.22));
    }
    .rating .score{
      display:flex; flex-direction:column; gap:2px;
    }
    .score b{font-size:22px; letter-spacing:-.3px}
    .score span{color:var(--muted); font-size:12.5px}
    .compare-pill{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.75);
      font-weight:860;
      color:#26324a;
      font-size:12.5px;
    }
    .table-scroll{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:760px;
    }
    th, td{
      padding:14px 12px;
      border-bottom:1px solid rgba(20,30,50,.08);
      vertical-align:top;
      font-size:13px;
    }
    th{
      text-align:left;
      font-weight:920;
      background: linear-gradient(180deg, rgba(109,94,252,.08), rgba(109,94,252,0));
      position:sticky;
      top:0;
      z-index:1;
    }
    td b{font-weight:900}
    .mark{
      display:inline-flex; align-items:center; gap:8px;
      font-weight:820;
    }
    .tick{
      width:18px; height:18px; border-radius:6px;
      background: rgba(34,197,94,.16);
      border:1px solid rgba(34,197,94,.28);
      display:inline-flex; align-items:center; justify-content:center;
    }
    .cross{
      width:18px; height:18px; border-radius:6px;
      background: rgba(239,68,68,.12);
      border:1px solid rgba(239,68,68,.22);
      display:inline-flex; align-items:center; justify-content:center;
    }
    .cell-soft{color:var(--muted)}
    .compare-bottom{
      padding:14px 16px;
      display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
    }

    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    .timeline-item{
      border-radius:var(--radius);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,24,40,.07);
      padding:14px 14px;
      display:flex; gap:12px;
      align-items:flex-start;
    }
    .timeline-item .dot{
      width:12px; height:12px; border-radius:50%;
      background: linear-gradient(135deg, var(--brand2), var(--brand1));
      margin-top:6px;
      box-shadow: 0 12px 22px rgba(109,94,252,.20);
      flex:0 0 auto;
    }
    .timeline-item h3{margin:0; font-size:15px; font-weight:920}
    .timeline-item p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7}

    .gallery-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:stretch;
    }
    .gallery-left{
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      overflow:hidden;
      padding:16px;
      position:relative;
    }
    .gallery-left::after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(620px 260px at 0% 0%, rgba(109,94,252,.18), transparent 55%),
        radial-gradient(520px 240px at 100% 10%, rgba(0,183,255,.14), transparent 55%),
        radial-gradient(420px 240px at 25% 110%, rgba(255,77,141,.12), transparent 55%);
      pointer-events:none;
      opacity:.85;
    }
    .gallery-left > *{position:relative; z-index:1}
    .gallery-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px;
      flex-wrap:wrap;
    }
    .gallery-head h3{
      margin:0; font-size:18px; font-weight:940;
      letter-spacing:-.3px;
    }
    .gallery-head p{margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .chips{
      display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end;
    }
    .chips .pill{background: rgba(255,255,255,.9)}
    .case-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:12px;
    }
    .case{
      border-radius:16px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.88);
      overflow:hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      cursor:pointer;
      display:flex; flex-direction:column;
      min-height:230px;
    }
    .case:hover{transform: translateY(-2px); box-shadow: 0 20px 58px rgba(16,24,40,.12); border-color: rgba(109,94,252,.26)}
    .case-media{
      border-bottom:1px solid rgba(20,30,50,.08);
      background: linear-gradient(135deg, rgba(109,94,252,.10), rgba(0,183,255,.10));
      padding:10px;
    }
    .case-media img{
      width:100%;
      border-radius:12px;
      background: rgba(255,255,255,.8);
      border:1px solid rgba(20,30,50,.08);
    }
    .case-body{
      padding:12px 12px;
      display:flex; flex-direction:column; gap:8px; flex:1;
    }
    .case-title{font-weight:920; font-size:14px; letter-spacing:-.2px}
    .case-desc{color:var(--muted); font-size:12.8px; line-height:1.6}
    .case-footer{
      margin-top:auto;
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:#2a3550; font-weight:840; font-size:12px;
      padding-top:4px;
    }
    .mini-link{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 10px;
      border-radius:12px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.8);
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      font-size:12.5px;
      font-weight:840;
      cursor:pointer;
      user-select:none;
      white-space:nowrap;
    }
    .mini-link:hover{transform: translateY(-1px); box-shadow: 0 14px 34px rgba(16,24,40,.10); border-color: rgba(109,94,252,.26)}
    .gallery-right{
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      padding:16px;
      display:flex; flex-direction:column; gap:12px;
      overflow:hidden;
      position:relative;
    }
    .gallery-right::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(420px 220px at 70% 0%, rgba(255,77,141,.14), transparent 58%),
        radial-gradient(520px 240px at 0% 100%, rgba(34,197,94,.12), transparent 60%);
      opacity:.8;
      pointer-events:none;
    }
    .gallery-right > *{position:relative; z-index:1}
    .list{
      display:flex; flex-direction:column; gap:10px;
    }
    .list-item{
      padding:12px 12px;
      border-radius:16px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.86);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .list-item:hover{
      transform: translateY(-2px);
      border-color: rgba(109,94,252,.24);
      box-shadow: 0 18px 54px rgba(16,24,40,.10);
    }
    .list-item b{display:block; font-size:13.5px; font-weight:920}
    .list-item span{display:block; margin-top:6px; color:var(--muted); font-size:12.8px; line-height:1.6}

    .articles{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
    }
    .article{
      border-radius:var(--radius);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,24,40,.07);
      padding:14px 14px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display:flex; flex-direction:column; gap:8px;
      min-height:160px;
    }
    .article:hover{transform: translateY(-2px); border-color: rgba(109,94,252,.24); box-shadow: 0 20px 58px rgba(16,24,40,.12)}
    .article .meta{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      color:var(--muted); font-size:12px;
    }
    .article h3{margin:0; font-size:14.5px; font-weight:940; letter-spacing:-.2px}
    .article p{margin:0; color:var(--muted); font-size:12.9px; line-height:1.7}
    .article a.read{
      margin-top:auto;
      align-self:flex-start;
      display:inline-flex; align-items:center; gap:8px;
      padding:9px 11px;
      border-radius:12px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.9);
      font-weight:870;
      font-size:12.5px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .article a.read:hover{transform: translateY(-1px); box-shadow: 0 14px 34px rgba(16,24,40,.10); border-color: rgba(109,94,252,.26)}

    .form-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.80);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .form-grid{
      display:grid;
      grid-template-columns: 1fr .95fr;
      gap:0;
    }
    .form-left{
      padding:18px;
      border-right:1px solid rgba(20,30,50,.08);
      background:
        radial-gradient(680px 240px at 20% 0%, rgba(109,94,252,.14), transparent 55%),
        radial-gradient(520px 220px at 100% 10%, rgba(0,183,255,.12), transparent 55%),
        rgba(255,255,255,.82);
    }
    .form-left h2{
      margin:0;
      font-size:22px;
      font-weight:950;
      letter-spacing:-.35px;
    }
    .form-left p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:13.5px;
      line-height:1.8;
      max-width:56ch;
    }
    .benefits{
      margin-top:14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .benefit{
      border-radius:16px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.85);
      padding:12px 12px;
    }
    .benefit b{display:block; font-size:13.3px; font-weight:930}
    .benefit span{display:block; margin-top:6px; color:var(--muted); font-size:12.7px; line-height:1.6}

    .form-right{padding:18px}
    form .row{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    label{
      display:block;
      font-size:12.5px;
      color:#2a3550;
      font-weight:860;
      margin-bottom:8px;
    }
    input, select, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(20,30,50,.12);
      background: rgba(255,255,255,.92);
      padding:12px 12px;
      font-size:14px;
      color:#0f172a;
      outline:none;
      transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
    }
    textarea{min-height:110px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(109,94,252,.35);
      box-shadow: 0 0 0 4px rgba(109,94,252,.14);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top:12px;
      flex-wrap:wrap;
    }
    .consent{
      color:var(--muted);
      font-size:12.5px;
      line-height:1.6;
      max-width:48ch;
      display:flex; gap:10px; align-items:flex-start;
    }
    .checkbox{
      width:18px; height:18px; border-radius:6px;
      border:1px solid rgba(20,30,50,.18);
      background: rgba(255,255,255,.95);
      display:inline-flex; align-items:center; justify-content:center;
      margin-top:2px;
      flex:0 0 auto;
    }
    .consent input[type="checkbox"]{
      width:18px; height:18px;
      margin:0;
      padding:0;
      opacity:0;
      position:absolute;
    }
    .checkbox svg{opacity:0; transform: scale(.7); transition: opacity .15s ease, transform .15s ease}
    .consent[data-checked="true"] .checkbox svg{opacity:1; transform: scale(1)}
    .submit{
      display:flex; gap:10px; align-items:center; justify-content:center;
      padding:12px 14px;
      border-radius:14px;
      border:1px solid rgba(109,94,252,.35);
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      color:#0b1220;
      font-weight:930;
      cursor:pointer;
      box-shadow: 0 18px 44px rgba(109,94,252,.20);
      transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
      min-width:170px;
    }
    .submit:active{transform: translateY(1px)}
    .submit:hover{filter:saturate(1.05); box-shadow: 0 22px 60px rgba(109,94,252,.25)}
    .helper-row{
      margin-top:10px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      color:var(--muted); font-size:12.6px;
    }
    .helper-row a{
      color:#1d4ed8; font-weight:820;
      border-bottom:1px dashed rgba(29,78,216,.35);
      padding-bottom:2px;
    }
    .helper-row a:hover{border-bottom-style:solid}

    details.faq{
      border-radius:var(--radius);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,24,40,.07);
      overflow:hidden;
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    details.faq[open]{
      border-color: rgba(109,94,252,.26);
      box-shadow: 0 20px 58px rgba(16,24,40,.12);
      transform: translateY(-2px);
    }
    summary{
      cursor:pointer;
      list-style:none;
      padding:14px 14px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
      font-weight:920; letter-spacing:-.2px;
      font-size:14.3px;
    }
    summary::-webkit-details-marker{display:none}
    .sum-right{
      display:flex; align-items:center; gap:10px; flex:0 0 auto;
      color:var(--muted); font-weight:860; font-size:12px;
    }
    .chev{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.90);
      display:flex; align-items:center; justify-content:center;
      transition: transform .2s ease;
    }
    details[open] .chev{transform: rotate(180deg)}
    .faq-body{
      padding:0 14px 14px;
      color:var(--muted);
      line-height:1.8;
      font-size:13.2px;
    }

    .reviews{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:14px;
    }
    .review{
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 40px rgba(16,24,40,.07);
      padding:16px 16px;
      position:relative;
      overflow:hidden;
    }
    .review::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(240px 140px at 0% 0%, rgba(109,94,252,.14), transparent 60%),
        radial-gradient(240px 140px at 100% 20%, rgba(0,183,255,.12), transparent 60%);
      opacity:.85;
      pointer-events:none;
    }
    .review > *{position:relative; z-index:1}
    .review .avatar{
      width:44px; height:44px; border-radius:18px;
      background:
        radial-gradient(20px 18px at 25% 30%, rgba(255,255,255,.7), rgba(255,255,255,0) 60%),
        linear-gradient(135deg, rgba(255,77,141,.22), rgba(109,94,252,.18), rgba(0,183,255,.18));
      border:1px solid rgba(20,30,50,.10);
      box-shadow: 0 14px 28px rgba(16,24,40,.08);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
    }
    .review .top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-bottom:12px;
    }
    .review h3{margin:0; font-size:14.5px; font-weight:950; letter-spacing:-.2px}
    .review .role{color:var(--muted); font-size:12.5px; margin-top:4px}
    .review .starsRow{display:flex; gap:6px; align-items:center}
    .review .quote{
      color:var(--muted); font-size:13px; line-height:1.85;
      margin:10px 0 0;
    }

    .tag-cloud{
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      padding:16px;
      overflow:hidden;
      position:relative;
    }
    .tag-cloud::after{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(520px 220px at 15% 0%, rgba(245,158,11,.14), transparent 55%),
        radial-gradient(560px 260px at 100% 10%, rgba(34,197,94,.12), transparent 55%);
      opacity:.85;
      pointer-events:none;
    }
    .tag-cloud > *{position:relative; z-index:1}
    .cloud-grid{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:10px;
    }
    .cloud-tag{
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.9);
      font-weight:860;
      color:#253042;
      font-size:12.5px;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      cursor:pointer;
      user-select:none;
    }
    .cloud-tag:hover{
      transform: translateY(-2px);
      border-color: rgba(109,94,252,.26);
      box-shadow: 0 16px 44px rgba(16,24,40,.12);
    }

    .pricing-card{
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.78);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .pricing-head{
      padding:16px 16px;
      border-bottom:1px solid rgba(20,30,50,.08);
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
    }
    .pricing-head h3{margin:0; font-size:18px; font-weight:950; letter-spacing:-.3px}
    .pricing-head p{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.7}
    .pricing-body{
      padding:16px;
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap:12px;
    }
    .price{
      border-radius:18px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.88);
      padding:14px 14px;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
      min-height:165px;
      display:flex; flex-direction:column; gap:10px;
    }
    .price:hover{transform: translateY(-2px); border-color: rgba(109,94,252,.26); box-shadow: 0 20px 58px rgba(16,24,40,.12)}
    .price .t{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .price .t b{font-weight:950}
    .price .v{
      font-size:26px;
      font-weight:980;
      letter-spacing:-.6px;
    }
    .price .s{color:var(--muted); font-size:12.8px; line-height:1.7}
    .price .cta{
      margin-top:auto;
      display:inline-flex; align-items:center; gap:8px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.95);
      font-weight:900;
      font-size:12.8px;
      cursor:pointer;
      user-select:none;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      align-self:flex-start;
      white-space:nowrap;
    }
    .price .cta:hover{transform: translateY(-1px); border-color: rgba(109,94,252,.26); box-shadow: 0 16px 44px rgba(16,24,40,.12)}

    .footer{
      margin-top:10px;
      padding:26px 0 34px;
      background:
        radial-gradient(900px 240px at 10% 0%, rgba(109,94,252,.18), transparent 55%),
        radial-gradient(780px 260px at 100% 0%, rgba(0,183,255,.14), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0));
      border-top:1px solid rgba(20,30,50,.08);
    }
    .foot-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:14px;
      align-items:start;
    }
    .foot-brand{
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 14px 40px rgba(16,24,40,.07);
      padding:16px;
    }
    .foot-brand .row{
      display:flex; gap:12px; align-items:flex-start;
      flex-wrap:wrap;
    }
    .foot-brand .row img{
      width:44px; height:44px;
      border-radius:18px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.9);
    }
    .foot-brand h2{
      margin:0;
      font-size:18px; font-weight:980; letter-spacing:-.3px;
    }
    .foot-brand p{
      margin:10px 0 0;
      color:var(--muted); font-size:13px; line-height:1.8;
      max-width:62ch;
    }
    .foot-links{
      border-radius:var(--radius2);
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.80);
      box-shadow: 0 14px 40px rgba(16,24,40,.07);
      padding:16px;
    }
    .foot-links h3{margin:0 0 10px; font-size:15.5px; font-weight:950}
    .friend-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:10px;
    }
    .friend-grid a{
      border-radius:14px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.9);
      padding:10px 12px;
      font-size:12.8px;
      font-weight:850;
      color:#26324a;
      transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .friend-grid a:hover{transform: translateY(-1px); border-color: rgba(109,94,252,.26); box-shadow: 0 16px 44px rgba(16,24,40,.12)}
    .copyright{
      margin-top:12px;
      display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
      color:var(--muted);
      font-size:12.5px;
      align-items:center;
    }
    .copyright .right{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
    }
    .copyright a{
      color:#1d4ed8; font-weight:850;
      border-bottom:1px dashed rgba(29,78,216,.35);
      padding-bottom:2px;
    }
    .copyright a:hover{border-bottom-style:solid}

    .float-contact{
      position:fixed;
      right:14px;
      bottom:16px;
      z-index:80;
      display:flex;
      flex-direction:column;
      gap:10px;
      align-items:flex-end;
      pointer-events:none;
    }
    .float-contact .btn{
      pointer-events:auto;
    }
    .float-box{
      display:flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:16px;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.85);
      box-shadow: 0 18px 54px rgba(16,24,40,.14);
      backdrop-filter: blur(10px);
    }
    .float-qr{
      width:42px; height:42px; border-radius:16px;
      border:1px solid rgba(20,30,50,.10);
      overflow:hidden;
      background:#fff;
      display:flex; align-items:center; justify-content:center;
    }
    .float-qr img{width:100%; height:100%; object-fit:cover}
    .float-text{
      display:flex; flex-direction:column; line-height:1.2;
    }
    .float-text b{font-size:13px; font-weight:950}
    .float-text span{font-size:12px; color:var(--muted); margin-top:4px}

    .to-top{
      pointer-events:auto;
      width:44px; height:44px;
      border-radius:18px;
      display:flex; align-items:center; justify-content:center;
      border:1px solid rgba(20,30,50,.10);
      background: rgba(255,255,255,.85);
      box-shadow: 0 18px 54px rgba(16,24,40,.14);
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
      backdrop-filter: blur(10px);
    }
    .to-top:hover{transform: translateY(-2px); border-color: rgba(109,94,252,.26)}
    .to-top[aria-hidden="true"]{opacity:0; transform: translateY(10px); pointer-events:none}
    .to-top svg{width:18px; height:18px}

    .reveal{
      opacity:0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.on{
      opacity:1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .reveal{transition:none}
      .btn-primary::after{animation:none}
      .pulse{animation:none}
    }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .hero h1{font-size:34px}
      .cards-3{grid-template-columns: 1fr; }
      .split{grid-template-columns: 1fr}
      .gallery-grid{grid-template-columns: 1fr}
      .case-grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
      .articles{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .form-grid{grid-template-columns: 1fr}
      .form-left{border-right:none; border-bottom:1px solid rgba(20,30,50,.08)}
      .pricing-body{grid-template-columns: 1fr}
      .timeline{grid-template-columns: 1fr}
      .foot-grid{grid-template-columns: 1fr}
      .friend-grid{grid-template-columns: 1fr}
      table{min-width:680px}
    }
    @media (max-width: 860px){
      .nav-links, .nav-cta{display:none}
      .hamburger{display:inline-flex; align-items:center; justify-content:center}
      .mobile-panel{display:block}
      .mobile-panel[data-open="false"]{display:none}
      .mobile-panel[data-open="true"]{display:block}
      .mobile-links{padding-top:10px}
      .gallery-grid .case-grid{grid-template-columns: 1fr 1fr}
      .case{min-height:220px}
    }