:root{
      --bg0:#f7fbf8;
      --bg1:#eef8f1;
      --card:#ffffff;
      --text:#0f1a14;
      --muted:#506257;
      --muted2:#6a7b71;
      --line:rgba(15,26,20,.10);
      --shadow: 0 12px 30px rgba(16,45,28,.10);
      --shadow2: 0 10px 22px rgba(16,45,28,.12);
      --accent:#16a34a;
      --accent2:#3bbf8a;
      --accent3:#0ea5e9;
      --accent4:#22c55e;
      --danger:#ef4444;
      --radius:16px;
      --radius2:22px;
      --container:1120px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 380px at 14% -6%, rgba(34,197,94,.16), transparent 55%),
        radial-gradient(700px 320px at 78% 6%, rgba(14,165,233,.12), transparent 56%),
        linear-gradient(180deg, var(--bg1), var(--bg0));
    }
    a{color:inherit}
    .container{
      max-width:var(--container);
      margin:0 auto;
      padding:0 18px;
    }

    /* Header */
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(247,251,248,.72);
      backdrop-filter:saturate(160%) blur(10px);
      border-bottom:1px solid rgba(15,26,20,.08);
    }
    .topbar-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:220px;
    }
    .ai-page-logo{
      width:42px; height:auto; border-radius:12px;
      box-shadow:0 10px 20px rgba(16,45,28,.12);
      background:rgba(255,255,255,.7);
      border:1px solid rgba(15,26,20,.08);
      padding:6px;
    }
    .brand-text{display:flex; flex-direction:column; line-height:1.15}
    .brand-name{
      font-weight:860;
      letter-spacing:.2px;
      font-size:14px;
    }
    .brand-sub{
      font-size:12px; color:var(--muted);
    }

    .nav{
      display:flex; align-items:center; gap:18px; flex-wrap:wrap; justify-content:flex-end;
    }
    .nav a{
      text-decoration:none;
      font-size:13px;
      color:rgba(15,26,20,.78);
      padding:8px 10px;
      border-radius:12px;
      border:1px solid transparent;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .nav a:hover{
      transform:translateY(-1px);
      background:rgba(34,197,94,.08);
      border-color:rgba(34,197,94,.18);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:10px 14px;
      border-radius:14px;
      border:1px solid rgba(15,26,20,.12);
      background:rgba(255,255,255,.75);
      text-decoration:none;
      font-weight:700;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
      box-shadow: 0 10px 22px rgba(16,45,28,.08);
      white-space:nowrap;
    }
    .btn:hover{
      transform:translateY(-1px);
      box-shadow: 0 14px 28px rgba(16,45,28,.14);
      border-color:rgba(34,197,94,.24);
      background:rgba(255,255,255,.92);
    }
    .btn-primary{
      border-color:rgba(22,163,74,.35);
      background: linear-gradient(180deg, rgba(34,197,94,.18), rgba(34,197,94,.08));
    }
    .btn-primary .btn-dot{
      width:10px; height:10px; border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #7CFF9E, #16a34a);
      box-shadow: 0 10px 20px rgba(22,163,74,.25);
    }
    .btn-soft{
      background: rgba(255,255,255,.64);
    }
    .menu-btn{
      display:none;
      width:44px; height:40px;
      border-radius:14px;
      border:1px solid rgba(15,26,20,.12);
      background:rgba(255,255,255,.7);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .15s ease, background .15s ease;
    }
    .menu-btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.92)}
    .burger{
      width:18px; height:12px; position:relative;
    }
    .burger span{
      position:absolute; left:0; right:0; height:2px;
      background:rgba(15,26,20,.75);
      border-radius:2px;
      transition: transform .2s ease, top .2s ease, opacity .2s ease;
    }
    .burger span:nth-child(1){top:0}
    .burger span:nth-child(2){top:5px}
    .burger span:nth-child(3){top:10px}
    .menu-open .burger span:nth-child(1){top:5px; transform:rotate(45deg)}
    .menu-open .burger span:nth-child(2){opacity:0}
    .menu-open .burger span:nth-child(3){top:5px; transform:rotate(-45deg)}

    .mobile-panel{
      display:none;
      padding:0 0 14px 0;
    }
    .mobile-panel .mobile-nav{
      display:flex; flex-direction:column; gap:10px;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.75);
      border-radius:18px;
      padding:14px;
      box-shadow: 0 14px 30px rgba(16,45,28,.10);
    }
    .mobile-panel .mobile-nav a{
      text-decoration:none;
      padding:12px 12px;
      border:1px solid rgba(15,26,20,.08);
      border-radius:14px;
      background:rgba(247,251,248,.6);
      font-weight:700;
      color:rgba(15,26,20,.84);
    }
    .mobile-panel .mobile-actions{
      display:flex; gap:10px; margin-top:4px; flex-wrap:wrap;
    }

    /* Hero */
    .hero{
      position:relative;
      padding:34px 0 18px 0;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute; inset:-180px -100px auto -100px;
      height:520px;
      background:
        radial-gradient(520px 220px at 18% 45%, rgba(34,197,94,.22), transparent 60%),
        radial-gradient(520px 220px at 75% 20%, rgba(14,165,233,.18), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.55));
      pointer-events:none;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:18px;
      align-items:stretch;
      position:relative;
    }
    .hero-copy{
      background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.42));
      border:1px solid rgba(15,26,20,.10);
      border-radius:var(--radius2);
      padding:22px 20px;
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-copy::after{
      content:"";
      position:absolute; right:-140px; top:-160px;
      width:420px; height:420px;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.20), rgba(34,197,94,0) 60%);
      transform:rotate(18deg);
      pointer-events:none;
    }
    .eyebrow{
      display:flex; gap:10px; align-items:center; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      border:1px solid rgba(34,197,94,.26);
      background:rgba(34,197,94,.10);
      border-radius:999px;
      padding:8px 12px;
      font-weight:800;
      font-size:12px;
      color:rgba(9,48,22,.92);
    }
    .pill .spark{
      width:10px; height:10px; border-radius:3px;
      background: linear-gradient(180deg, #34d399, #16a34a);
      box-shadow:0 10px 22px rgba(22,163,74,.25);
    }
    .hero h1{
      margin:0 0 10px 0;
      font-size:34px;
      letter-spacing:-.6px;
      line-height:1.12;
    }
    .hero-lead{
      margin:0;
      color:rgba(15,26,20,.78);
      font-size:14px;
      line-height:1.7;
      max-width:62ch;
    }
    .hero-actions{
      margin-top:16px;
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    }
    .btn-large{padding:12px 16px; border-radius:16px}
    .btn-ghost{
      border-color:rgba(15,26,20,.12);
      background:rgba(255,255,255,.55);
    }
    .subnote{
      margin-top:10px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
      color:var(--muted);
      font-size:12px;
    }
    .subnote .dot{
      width:6px; height:6px; border-radius:50%;
      background:rgba(34,197,94,.8);
      box-shadow:0 10px 22px rgba(22,163,74,.22);
    }

    .hero-side{
      display:flex; flex-direction:column; gap:12px;
    }
    .glass-card{
      background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.44));
      border:1px solid rgba(15,26,20,.10);
      border-radius:var(--radius2);
      padding:16px 16px;
      box-shadow: var(--shadow2);
      position:relative;
      overflow:hidden;
    }
    .glass-card::before{
      content:"";
      position:absolute; inset:-1px -1px auto -1px;
      height:140px;
      background: radial-gradient(260px 120px at 15% 10%, rgba(34,197,94,.20), transparent 60%),
                  radial-gradient(240px 100px at 80% 15%, rgba(14,165,233,.16), transparent 60%);
      pointer-events:none;
    }
    .mini-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
      position:relative;
    }
    .metric{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(247,251,248,.55);
      border-radius:16px;
      padding:12px 12px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      position:relative;
      overflow:hidden;
    }
    .metric:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 32px rgba(16,45,28,.14);
      border-color:rgba(34,197,94,.26);
    }
    .metric .k{
      font-weight:950;
      font-size:18px;
      letter-spacing:-.4px;
      display:flex; align-items:baseline; gap:6px;
    }
    .metric .k span{
      font-weight:900;
      font-size:12px;
      color:rgba(15,26,20,.56);
      letter-spacing:0;
    }
    .metric .label{margin-top:6px; color:rgba(15,26,20,.72); font-size:12px; line-height:1.4}
    .signal{
      margin-top:10px;
      display:flex; gap:10px; align-items:center;
      position:relative;
    }
    .signal .badge{
      display:inline-flex; align-items:center; justify-content:center;
      width:40px; height:40px; border-radius:14px;
      background: linear-gradient(180deg, rgba(34,197,94,.20), rgba(34,197,94,.06));
      border:1px solid rgba(34,197,94,.22);
    }
    .signal .badge svg{width:20px; height:20px; color:rgba(22,163,74,.95)}
    .signal .txt{display:flex; flex-direction:column; gap:3px}
    .signal .txt strong{font-size:13px}
    .signal .txt small{color:var(--muted); font-size:12px; line-height:1.4}

    .quick-card{
      padding:14px 14px;
      display:flex; flex-direction:column; gap:10px;
    }
    .quick-title{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
    }
    .quick-title strong{font-size:14px}
    .status{
      display:inline-flex; align-items:center; gap:8px;
      font-size:12px; color:rgba(9,48,22,.90);
      padding:8px 10px;
      border:1px solid rgba(34,197,94,.26);
      background:rgba(34,197,94,.10);
      border-radius:999px;
      white-space:nowrap;
    }
    .status i{
      width:10px; height:10px; border-radius:50%;
      background: #22c55e;
      box-shadow: 0 10px 22px rgba(34,197,94,.28);
      position:relative;
    }
    .status i::after{
      content:"";
      position:absolute; inset:-8px;
      border-radius:50%;
      border:1px solid rgba(34,197,94,.35);
      animation: pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%{transform:scale(.7); opacity:.35}
      60%{transform:scale(1.05); opacity:.15}
      100%{transform:scale(1.18); opacity:0}
    }
    .seg{
      display:flex; flex-direction:column; gap:8px;
    }
    .seg label{
      font-size:12px; color:var(--muted);
    }
    .seg .seg-input{
      display:flex; gap:10px; flex-wrap:wrap;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.58);
      padding:10px 12px;
      border-radius:16px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      user-select:none;
      font-size:13px;
      font-weight:800;
      color:rgba(15,26,20,.84);
    }
    .chip:hover{transform:translateY(-2px); box-shadow:0 14px 28px rgba(16,45,28,.12); border-color:rgba(34,197,94,.22)}
    .chip[aria-pressed="true"]{
      border-color:rgba(34,197,94,.34);
      background: linear-gradient(180deg, rgba(34,197,94,.16), rgba(34,197,94,.06));
    }
    .chip .mini-dot{
      width:10px; height:10px; border-radius:4px;
      background: rgba(15,26,20,.12);
    }
    .chip[aria-pressed="true"] .mini-dot{
      background: linear-gradient(180deg, #5CFF9D, #16a34a);
      box-shadow:0 10px 22px rgba(22,163,74,.25);
    }
    .price-line{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      border-top:1px solid rgba(15,26,20,.10);
      padding-top:10px;
      margin-top:2px;
    }
    .price-line .small{
      color:var(--muted);
      font-size:12px;
      line-height:1.4;
    }
    .price-line .value{
      font-weight:950;
      font-size:16px;
      letter-spacing:-.3px;
    }
    .price-line .value small{
      font-size:12px; font-weight:900; color:rgba(15,26,20,.55);
      margin-left:6px;
    }

    /* Sections */
    .section{
      padding:28px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom:14px;
    }
    .section-title{
      margin:0;
      font-size:22px;
      letter-spacing:-.4px;
    }
    .section-desc{
      margin:6px 0 0 0;
      color:rgba(15,26,20,.72);
      font-size:13px;
      line-height:1.7;
      max-width:70ch;
    }
    .section-tag{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
    }
    .tag{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.55);
      padding:8px 10px;
      border-radius:999px;
      font-size:12px;
      color:rgba(15,26,20,.72);
      white-space:nowrap;
    }
    .tag strong{color:rgba(15,26,20,.90)}
    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .card{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.62);
      border-radius:var(--radius);
      padding:16px;
      box-shadow: 0 10px 26px rgba(16,45,28,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(16,45,28,.14);
      border-color:rgba(34,197,94,.22);
    }
    .card .card-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom:8px;
    }
    .icon{
      width:44px; height:44px; border-radius:16px;
      background: linear-gradient(180deg, rgba(34,197,94,.18), rgba(34,197,94,.06));
      border:1px solid rgba(34,197,94,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
    }
    .icon svg{width:22px; height:22px; color:rgba(22,163,74,.95)}
    .card h3{
      margin:0 0 8px 0;
      font-size:15px;
      letter-spacing:-.2px;
    }
    .card p{
      margin:0;
      color:rgba(15,26,20,.72);
      font-size:13px;
      line-height:1.7;
    }

    .list-steps{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
    }
    .step{
      padding:14px;
      background: linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,255,255,.46));
    }
    .step .num{
      width:38px; height:38px; border-radius:14px;
      background: rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(9,48,22,.92);
      margin-bottom:10px;
      position:relative;
      overflow:hidden;
    }
    .step .num::after{
      content:"";
      position:absolute; inset:-40px;
      background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.22), transparent 60%);
      transform:rotate(12deg);
    }
    .step h3{margin:0 0 6px 0}
    .step p{margin:0}

    .compare-wrap{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.58);
      border-radius:var(--radius2);
      overflow:hidden;
      box-shadow: 0 14px 34px rgba(16,45,28,.10);
    }
    .compare-head{
      padding:16px 16px 10px 16px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
      border-bottom:1px solid rgba(15,26,20,.08);
      background: linear-gradient(180deg, rgba(34,197,94,.10), rgba(255,255,255,.0));
    }
    .rating{
      display:flex; flex-direction:column; gap:6px;
      min-width:240px;
    }
    .stars{
      display:flex; gap:6px; align-items:center;
      font-weight:900; letter-spacing:.2px;
    }
    .stars svg{width:18px; height:18px; color:rgba(34,197,94,.95)}
    .scoreline{
      display:flex; gap:10px; align-items:baseline; flex-wrap:wrap;
    }
    .scoreline strong{font-size:28px; letter-spacing:-.6px}
    .scoreline span{color:var(--muted); font-size:13px; font-weight:800}
    .compare-note{
      color:rgba(15,26,20,.72);
      font-size:13px;
      line-height:1.7;
      max-width:60ch;
    }
    .table-wrap{
      overflow:auto;
    }
    table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      min-width:860px;
    }
    th, td{
      padding:12px 12px;
      border-bottom:1px solid rgba(15,26,20,.08);
      vertical-align:top;
      font-size:13px;
    }
    th{
      text-align:left;
      font-size:13px;
      color:rgba(15,26,20,.86);
      background:rgba(247,251,248,.55);
      position:sticky;
      top:0;
      z-index:1;
    }
    td{
      color:rgba(15,26,20,.72);
      background:rgba(255,255,255,.0);
    }
    tr:last-child td{border-bottom:0}
    .good{
      display:flex; gap:8px; align-items:flex-start;
      color:rgba(9,48,22,.92);
      font-weight:800;
    }
    .good i{
      width:18px; height:18px; border-radius:8px;
      border:1px solid rgba(34,197,94,.28);
      background:rgba(34,197,94,.12);
      display:inline-flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .good i svg{width:12px; height:12px}
    .muted-yes{
      display:flex; gap:8px; align-items:flex-start;
      color:rgba(15,26,20,.70);
      font-weight:700;
    }
    .muted-yes i{
      width:18px; height:18px; border-radius:8px;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(15,26,20,.04);
      display:inline-flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:2px;
    }
    .muted-yes i svg{width:12px; height:12px; color:rgba(15,26,20,.55)}

    .two-col{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .panel{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.62);
      border-radius:var(--radius2);
      padding:16px;
      box-shadow: 0 12px 30px rgba(16,45,28,.10);
      overflow:hidden;
      position:relative;
    }
    .panel::before{
      content:"";
      position:absolute; inset:-1px -1px auto -1px; height:120px;
      background: radial-gradient(260px 120px at 10% 20%, rgba(34,197,94,.18), transparent 60%),
                  radial-gradient(220px 110px at 80% 0%, rgba(14,165,233,.14), transparent 60%);
      pointer-events:none;
    }
    .panel > *{position:relative}
    .panel h3{margin:0 0 10px 0; font-size:16px}
    .panel p{margin:0 0 10px 0; color:rgba(15,26,20,.72); font-size:13px; line-height:1.7}
    .bullets{margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px}
    .bullets li{
      display:flex; gap:10px; align-items:flex-start;
      padding:10px 10px;
      border-radius:16px;
      border:1px solid rgba(15,26,20,.08);
      background:rgba(247,251,248,.52);
    }
    .bullets .tick{
      width:22px; height:22px; border-radius:10px;
      background:rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:1px;
    }
    .bullets .tick svg{width:14px; height:14px; color:rgba(22,163,74,.95)}
    .bullets strong{font-size:13px; display:block; margin-bottom:3px}
    .bullets span{color:rgba(15,26,20,.70); font-size:12px; line-height:1.6}

    .network-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:12px;
      align-items:stretch;
    }
    .map-card{
      padding:16px;
      background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.44));
      border:1px solid rgba(15,26,20,.10);
      border-radius:var(--radius2);
      box-shadow: 0 14px 34px rgba(16,45,28,.10);
      overflow:hidden;
      position:relative;
    }
    .map-card::before{
      content:"";
      position:absolute; inset:-80px -120px auto -120px;
      height:360px;
      background:
        radial-gradient(420px 180px at 20% 30%, rgba(34,197,94,.20), transparent 60%),
        radial-gradient(420px 180px at 80% 10%, rgba(14,165,233,.14), transparent 62%);
      pointer-events:none;
    }
    .map-card > *{position:relative}
    .map-top{
      display:flex; justify-content:space-between; gap:12px; align-items:flex-start; flex-wrap:wrap;
      margin-bottom:10px;
    }
    .map-top h3{margin:0; font-size:16px}
    .map-top .hint{color:var(--muted); font-size:12px; line-height:1.6; max-width:60ch}
    .city-grid{
      margin-top:12px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
    }
    .city{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(247,251,248,.56);
      border-radius:18px;
      padding:12px;
      display:flex; gap:10px; align-items:flex-start;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .city:hover{transform:translateY(-2px); border-color:rgba(34,197,94,.22); box-shadow:0 16px 34px rgba(16,45,28,.12)}
    .city .dot{
      width:12px; height:12px; border-radius:5px;
      background: linear-gradient(180deg, #7CFF9E, #16a34a);
      box-shadow:0 12px 24px rgba(22,163,74,.22);
      margin-top:2px;
      flex:0 0 auto;
    }
    .city strong{font-size:13px; display:block; margin-bottom:3px}
    .city span{color:rgba(15,26,20,.70); font-size:12px; line-height:1.6}

    .timeline{
      padding:16px;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.62);
      border-radius:var(--radius2);
      box-shadow: 0 14px 34px rgba(16,45,28,.10);
      position:relative;
      overflow:hidden;
    }
    .timeline::before{
      content:"";
      position:absolute; inset:-1px -1px auto -1px; height:130px;
      background: radial-gradient(360px 140px at 10% 20%, rgba(34,197,94,.18), transparent 60%),
                  radial-gradient(300px 130px at 90% 0%, rgba(14,165,233,.14), transparent 62%);
      pointer-events:none;
    }
    .timeline > *{position:relative}
    .timeline h3{margin:0 0 10px 0; font-size:16px}
    .tline{
      display:flex; flex-direction:column; gap:10px;
    }
    .titem{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 12px;
      border-radius:18px;
      border:1px solid rgba(15,26,20,.08);
      background:rgba(247,251,248,.52);
    }
    .titem .step-dot{
      width:34px; height:34px; border-radius:14px;
      border:1px solid rgba(34,197,94,.22);
      background:rgba(34,197,94,.12);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(9,48,22,.92);
      flex:0 0 auto;
    }
    .titem strong{display:block; font-size:13px; margin-bottom:3px}
    .titem span{color:rgba(15,26,20,.70); font-size:12px; line-height:1.6}

    .cases-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .case{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.62);
      border-radius:var(--radius2);
      padding:14px;
      box-shadow: 0 14px 34px rgba(16,45,28,.10);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      overflow:hidden;
      position:relative;
    }
    .case:hover{transform:translateY(-2px); border-color:rgba(34,197,94,.22); box-shadow: 0 20px 48px rgba(16,45,28,.14)}
    .case .thumb{
      border-radius:18px;
      border:1px solid rgba(15,26,20,.08);
      background:
        radial-gradient(400px 180px at 20% 10%, rgba(34,197,94,.18), transparent 60%),
        radial-gradient(360px 160px at 80% 0%, rgba(14,165,233,.14), transparent 60%),
        rgba(247,251,248,.55);
      height:132px;
      display:flex; align-items:flex-end;
      padding:12px;
      margin-bottom:12px;
    }
    .case .thumb .labelrow{
      display:flex; gap:8px; flex-wrap:wrap; align-items:center;
    }
    .case .thumb .label{
      font-size:12px;
      font-weight:900;
      color:rgba(9,48,22,.92);
      background:rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .case .thumb .label.blue{
      color:rgba(4,60,90,.92);
      background:rgba(14,165,233,.10);
      border-color:rgba(14,165,233,.22);
    }
    .case h3{margin:0 0 8px 0; font-size:15px}
    .case p{margin:0; color:rgba(15,26,20,.72); font-size:13px; line-height:1.7}
    .case .meta{
      margin-top:10px;
      display:flex; justify-content:space-between; gap:10px; color:var(--muted); font-size:12px;
      padding-top:10px; border-top:1px solid rgba(15,26,20,.08);
    }

    .article-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:12px;
      align-items:start;
    }
    .article-list{
      display:flex; flex-direction:column; gap:10px;
    }
    .article-item{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.62);
      border-radius:18px;
      padding:14px;
      box-shadow: 0 12px 30px rgba(16,45,28,.08);
      display:flex; gap:12px; align-items:flex-start; justify-content:space-between;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article-item:hover{transform:translateY(-2px); border-color:rgba(34,197,94,.22); box-shadow:0 20px 48px rgba(16,45,28,.14)}
    .article-left{min-width:0}
    .article-item a{
      text-decoration:none;
    }
    .article-item h3{
      margin:0 0 6px 0;
      font-size:14px;
      letter-spacing:-.2px;
      color:rgba(15,26,20,.92);
    }
    .article-item p{
      margin:0;
      color:rgba(15,26,20,.70);
      font-size:12px;
      line-height:1.6;
    }
    .article-item .kTag{
      flex:0 0 auto;
      font-size:12px;
      font-weight:900;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(247,251,248,.55);
      color:rgba(15,26,20,.72);
      white-space:nowrap;
      margin-left:10px;
    }
    .side-card{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.62);
      border-radius:var(--radius2);
      padding:16px;
      box-shadow: 0 14px 34px rgba(16,45,28,.10);
      position:relative;
      overflow:hidden;
    }
    .side-card::before{
      content:"";
      position:absolute; inset:-1px -1px auto -1px; height:140px;
      background: radial-gradient(320px 140px at 10% 15%, rgba(34,197,94,.18), transparent 60%),
                  radial-gradient(260px 130px at 90% 0%, rgba(14,165,233,.14), transparent 62%);
      pointer-events:none;
    }
    .side-card > *{position:relative}
    .side-card h3{margin:0 0 10px 0; font-size:16px}
    .tag-cloud{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top:8px;
    }
    .tag-cloud a{
      text-decoration:none;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(247,251,248,.55);
      padding:9px 10px;
      border-radius:999px;
      font-size:12px;
      color:rgba(15,26,20,.74);
      font-weight:800;
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tag-cloud a:hover{
      transform:translateY(-2px);
      border-color:rgba(34,197,94,.22);
      background:rgba(34,197,94,.10);
    }

    .form-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      align-items:start;
    }
    .form-card{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.62);
      border-radius:var(--radius2);
      padding:16px;
      box-shadow: 0 14px 34px rgba(16,45,28,.10);
      overflow:hidden;
      position:relative;
    }
    .form-card::before{
      content:"";
      position:absolute; inset:-1px -1px auto -1px; height:140px;
      background: radial-gradient(360px 140px at 10% 20%, rgba(34,197,94,.18), transparent 60%),
                  radial-gradient(260px 130px at 90% 0%, rgba(14,165,233,.14), transparent 62%);
      pointer-events:none;
    }
    .form-card > *{position:relative}
    .form-card h3{margin:0 0 10px 0; font-size:16px}
    form{
      display:flex; flex-direction:column; gap:10px;
      margin-top:4px;
    }
    .row2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:10px;
    }
    .field{
      display:flex; flex-direction:column; gap:6px;
    }
    .field label{
      font-size:12px;
      color:rgba(15,26,20,.72);
      font-weight:900;
    }
    input, select, textarea{
      width:100%;
      border:1px solid rgba(15,26,20,.12);
      background:rgba(247,251,248,.60);
      border-radius:14px;
      padding:11px 12px;
      font-size:13px;
      color:rgba(15,26,20,.90);
      outline:none;
      transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }
    textarea{min-height:96px; resize:vertical}
    input:focus, select:focus, textarea:focus{
      border-color:rgba(34,197,94,.40);
      box-shadow:0 0 0 4px rgba(34,197,94,.12);
      background:rgba(255,255,255,.72);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top:2px;
      padding-top:10px; border-top:1px solid rgba(15,26,20,.08);
    }
    .privacy{
      color:var(--muted);
      font-size:12px; line-height:1.6;
      max-width:44ch;
    }
    .submit{
      border:none;
      cursor:pointer;
      padding:12px 16px;
      border-radius:16px;
      background: linear-gradient(180deg, rgba(34,197,94,.24), rgba(34,197,94,.10));
      border:1px solid rgba(34,197,94,.34);
      color:rgba(9,48,22,.95);
      font-weight:950;
      font-size:13px;
      transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
      box-shadow: 0 14px 30px rgba(16,45,28,.12);
      white-space:nowrap;
    }
    .submit:hover{
      transform:translateY(-2px);
      box-shadow:0 20px 46px rgba(16,45,28,.18);
      background: linear-gradient(180deg, rgba(34,197,94,.30), rgba(34,197,94,.12));
    }
    .submit:active{transform:translateY(-1px)}
    .inline-result{
      font-size:12px; color:rgba(15,26,20,.72);
      border:1px dashed rgba(15,26,20,.18);
      border-radius:16px;
      padding:10px 12px;
      background:rgba(247,251,248,.52);
      display:none;
    }
    .inline-result.show{display:block}

    /* FAQ */
    .faq-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    details{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.62);
      border-radius:18px;
      padding:12px 14px;
      box-shadow: 0 12px 30px rgba(16,45,28,.08);
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    details[open]{border-color:rgba(34,197,94,.22); box-shadow:0 18px 40px rgba(16,45,28,.14); transform:translateY(-1px)}
    summary{
      cursor:pointer;
      list-style:none;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      user-select:none;
      font-weight:950;
      font-size:13px;
      color:rgba(15,26,20,.92);
    }
    summary::-webkit-details-marker{display:none}
    .sum-left{display:flex; gap:10px; align-items:flex-start}
    .qmark{
      width:26px; height:26px; border-radius:12px;
      border:1px solid rgba(34,197,94,.24);
      background:rgba(34,197,94,.12);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      margin-top:0px;
    }
    .qmark svg{width:14px; height:14px; color:rgba(22,163,74,.95)}
    .chev{
      width:28px; height:28px; border-radius:12px;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(247,251,248,.55);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .18s ease, border-color .18s ease;
    }
    details[open] .chev{transform:rotate(180deg); border-color:rgba(34,197,94,.22)}
    .answer{
      margin-top:10px;
      color:rgba(15,26,20,.72);
      font-size:13px;
      line-height:1.7;
      padding-left:36px;
    }

    /* Reviews */
    .reviews-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .review{
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.62);
      border-radius:var(--radius2);
      padding:14px;
      box-shadow: 0 14px 34px rgba(16,45,28,.10);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
      min-height:176px;
    }
    .review:hover{transform:translateY(-2px); border-color:rgba(34,197,94,.22); box-shadow:0 20px 48px rgba(16,45,28,.14)}
    .review-top{
      display:flex; justify-content:space-between; gap:10px; align-items:flex-start;
    }
    .avatar{
      width:42px; height:42px; border-radius:16px;
      border:1px solid rgba(15,26,20,.10);
      background:
        radial-gradient(20px 20px at 25% 30%, rgba(34,197,94,.28), transparent 60%),
        radial-gradient(22px 22px at 80% 10%, rgba(14,165,233,.18), transparent 60%),
        rgba(247,251,248,.55);
      display:flex; align-items:center; justify-content:center;
      font-weight:950;
      color:rgba(15,26,20,.78);
      flex:0 0 auto;
    }
    .review .who{display:flex; flex-direction:column; gap:2px}
    .review .who strong{font-size:13px}
    .review .who span{color:var(--muted); font-size:12px}
    .review p{
      margin:0;
      color:rgba(15,26,20,.72);
      font-size:13px;
      line-height:1.7;
    }
    .review .starsRow{
      display:flex; gap:6px; align-items:center; margin-top:auto;
      padding-top:8px; border-top:1px solid rgba(15,26,20,.08);
      color:rgba(9,48,22,.92); font-weight:900; font-size:12px;
    }
    .review .starsRow svg{width:14px; height:14px}

    /* Footer */
    footer{
      padding:18px 0 26px 0;
      border-top:1px solid rgba(15,26,20,.10);
      margin-top:10px;
      background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.44));
    }
    .footer-top{
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
      margin-bottom:12px;
    }
    .footer-brand{
      display:flex; gap:12px; align-items:flex-start;
    }
    .footer-brand .f-logo{
      width:44px; height:44px; border-radius:18px;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(255,255,255,.65);
      padding:6px;
      box-shadow:0 12px 26px rgba(16,45,28,.12);
    }
    .footer-brand .f-txt strong{display:block; font-size:14px; margin-bottom:4px}
    .footer-brand .f-txt span{display:block; color:var(--muted); font-size:12px; line-height:1.6}
    .footer-links{
      display:flex; gap:16px; align-items:flex-start; flex-wrap:wrap;
    }
    .link-col{
      min-width:160px;
    }
    .link-col strong{
      display:block; margin-bottom:8px;
      font-size:13px; letter-spacing:-.2px;
    }
    .link-col a{
      display:block;
      text-decoration:none;
      padding:8px 0;
      color:rgba(15,26,20,.72);
      font-size:13px;
      border-bottom:1px dashed rgba(15,26,20,.10);
    }
    .link-col a:last-child{border-bottom:0}
    .footer-bottom{
      display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
      color:var(--muted);
      font-size:12px;
      padding-top:10px;
      border-top:1px solid rgba(15,26,20,.08);
    }

    /* Floating */
    .float-wrap{
      position:fixed;
      right:14px;
      bottom:16px;
      z-index:80;
      display:flex; flex-direction:column; gap:10px;
      align-items:flex-end;
    }
    .float-btn{
      border:1px solid rgba(15,26,20,.12);
      background:rgba(255,255,255,.78);
      box-shadow: 0 16px 40px rgba(16,45,28,.16);
      border-radius:18px;
      padding:10px 12px;
      cursor:pointer;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
      display:flex; align-items:center; gap:10px;
      text-decoration:none;
      color:rgba(15,26,20,.86);
      max-width:170px;
    }
    .float-btn:hover{
      transform:translateY(-2px);
      box-shadow: 0 22px 56px rgba(16,45,28,.22);
      border-color:rgba(34,197,94,.24);
      background:rgba(255,255,255,.92);
    }
    .float-btn svg{width:18px; height:18px; color:rgba(22,163,74,.95)}
    .float-btn span{font-weight:950; font-size:13px; white-space:nowrap}
    .float-tip{
      font-size:12px; color:var(--muted);
      white-space:nowrap;
    }
    .float-qr{
      border:1px solid rgba(15,26,20,.12);
      background:rgba(255,255,255,.92);
      border-radius:22px;
      padding:10px;
      box-shadow: 0 22px 56px rgba(16,45,28,.22);
      display:none;
      width:196px;
    }
    .float-qr.show{display:block; animation: pop .18s ease-out}
    @keyframes pop{from{transform:translateY(6px); opacity:.0} to{transform:translateY(0); opacity:1}}
    .float-qr .qr-top{
      display:flex; justify-content:space-between; align-items:center; gap:10px;
      margin-bottom:8px;
    }
    .float-qr strong{font-size:13px}
    .close-qr{
      width:34px; height:34px;
      border-radius:14px;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(247,251,248,.55);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
    }
    .close-qr svg{width:16px; height:16px; color:rgba(15,26,20,.72)}
    .qr-img{
      width:100%;
      border-radius:16px;
      border:1px solid rgba(15,26,20,.10);
      background:rgba(247,251,248,.55);
      padding:4px;
    }
    .qr-img img{width:100%; height:auto; display:block; border-radius:14px}

    .reveal{
      opacity:0;
      transform: translateY(12px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0);
    }

    /* Mobile */
    @media (max-width: 960px){
      .hero-grid{grid-template-columns:1fr; }
      .hero-copy{padding:18px 16px}
      .hero h1{font-size:28px}
      .grid-3{grid-template-columns:1fr}
      .list-steps{grid-template-columns:1fr 1fr}
      .cases-grid{grid-template-columns:1fr}
      .reviews-grid{grid-template-columns:1fr}
      .article-grid{grid-template-columns:1fr}
      .network-grid{grid-template-columns:1fr}
      .two-col{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .row2{grid-template-columns:1fr}
      .city-grid{grid-template-columns:1fr 1fr}
      .nav{display:none}
      .menu-btn{display:flex}
      .mobile-panel{display:block}
      .float-wrap{right:10px; bottom:12px}
      .float-btn span{display:none}
      .float-btn .float-tip{display:none}
    }
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .status i::after{animation:none}
      .reveal{transition:none}
    }