:root{
      --bg0:#0b0f1a;
      --bg1:#0f172a;
      --card:#ffffff;
      --text:#141823;
      --muted:#5b6476;
      --muted2:#7a8396;
      --line:rgba(20,24,35,.10);
      --shadow:0 18px 50px rgba(17,24,39,.10);
      --shadow2:0 10px 30px rgba(17,24,39,.12);
      --orange:#ff6a2b;
      --orange2:#ff8a2e;
      --amber:#ffb020;
      --deep:#0f172a;
      --blue:#2563eb;
      --good:#16a34a;
      --focus: rgba(255,106,43,.22);
      --radius:18px;
      --radius2:14px;
      --container: 1140px;
      --pad: 18px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color:var(--text);
      background:
        radial-gradient(900px 520px at 15% -10%, rgba(255,106,43,.28), rgba(255,106,43,0) 62%),
        radial-gradient(700px 420px at 82% 10%, rgba(255,176,32,.22), rgba(255,176,32,0) 58%),
        linear-gradient(#fff, #fff);
      min-height:100vh;
      overflow-x:hidden;
    }
    a{color:inherit; text-decoration:none}
    .container{
      width: min(var(--container), calc(100% - 2*var(--pad)));
      margin: 0 auto;
    }
    .skip-link{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip-link:focus{
      left: 12px; top: 12px; width:auto; height:auto; padding:10px 12px;
      background:#fff; border:1px solid var(--line); border-radius:12px; z-index:9999;
      box-shadow: var(--shadow2);
    }
    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.72);
      border-bottom: 1px solid rgba(20,24,35,.08);
    }
    .nav-wrap{
      display:flex; align-items:center; justify-content:space-between;
      padding: 12px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:12px; min-width: 220px;
    }
    .brand .logo{
      width:44px; height:44px; border-radius:14px;
      background: linear-gradient(135deg, rgba(255,106,43,.18), rgba(255,176,32,.18));
      border: 1px solid rgba(255,106,43,.18);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 10px 24px rgba(255,106,43,.10);
      overflow:hidden;
      flex: 0 0 auto;
    }
    .brand img{display:block}
    .brand .name{
      display:flex; flex-direction:column; line-height:1.1;
    }
    .brand .name strong{
      font-size:14px; letter-spacing:.2px;
    }
    .brand .name span{
      font-size:12px; color:var(--muted);
      margin-top:4px;
      white-space:nowrap;
    }
    nav .nav-links{
      display:flex; align-items:center; gap:14px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-links a{
      font-size:13px;
      color:rgba(20,24,35,.82);
      padding:8px 10px;
      border-radius:999px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
      outline:none;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background: rgba(255,106,43,.10);
      color: rgba(20,24,35,.95);
      transform: translateY(-1px);
    }
    .nav-cta{
      display:flex; align-items:center; gap:10px;
    }
    .btn{
      appearance:none; border:0; cursor:pointer;
      border-radius: 999px;
      padding: 11px 14px;
      font-weight: 650;
      font-size: 13px;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      user-select:none;
      white-space:nowrap;
    }
    .btn:focus{outline:3px solid var(--focus); outline-offset:2px}
    .btn-primary{
      background: linear-gradient(135deg, var(--orange), var(--orange2));
      color:#0b0f1a;
      box-shadow: 0 14px 34px rgba(255,106,43,.25);
    }
    .btn-primary:hover{
      transform: translateY(-1px);
      box-shadow: 0 18px 44px rgba(255,106,43,.30);
    }
    .btn-ghost{
      background: rgba(20,24,35,.04);
      border: 1px solid rgba(20,24,35,.10);
      color: rgba(20,24,35,.92);
    }
    .btn-ghost:hover{
      transform: translateY(-1px);
      border-color: rgba(255,106,43,.35);
      background: rgba(255,106,43,.10);
    }
    .menu-btn{
      display:none;
      width:42px; height:42px;
      border-radius: 14px;
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.80);
      align-items:center; justify-content:center;
      cursor:pointer;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }
    .menu-btn:hover{
      transform: translateY(-1px);
      border-color: rgba(255,106,43,.30);
      background: rgba(255,106,43,.08);
    }
    .menu-btn svg{display:block}
    .mobile-panel{
      display:none;
      padding: 10px 0 16px;
    }
    .mobile-panel .mobile-links{
      display:flex; flex-direction:column; gap:10px;
    }
    .mobile-panel .mobile-links a{
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(20,24,35,.03);
      border: 1px solid rgba(20,24,35,.07);
      color: rgba(20,24,35,.92);
      font-weight: 600;
      font-size: 14px;
    }
    main{position:relative}
    .hero{
      padding: 28px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.18fr .82fr;
      gap: 18px;
      align-items:stretch;
    }
    .hero-card{
      border-radius: calc(var(--radius) + 6px);
      background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.60)),
        radial-gradient(900px 420px at 18% 0%, rgba(255,106,43,.25), rgba(255,106,43,0) 60%),
        radial-gradient(700px 360px at 86% 12%, rgba(255,176,32,.22), rgba(255,176,32,0) 56%);
      border: 1px solid rgba(255,106,43,.18);
      box-shadow: 0 26px 70px rgba(255,106,43,.10);
      overflow:hidden;
      position:relative;
      padding: 26px 22px;
      min-height: 340px;
    }
    .hero-card:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(520px 220px at 20% 12%, rgba(255,106,43,.28), rgba(255,106,43,0) 60%),
        radial-gradient(480px 200px at 82% 20%, rgba(255,176,32,.22), rgba(255,176,32,0) 60%);
      pointer-events:none;
      opacity:.85;
    }
    .hero-inner{position:relative; z-index:1}
    .eyebrow{
      display:flex; align-items:center; gap:10px;
      color: rgba(20,24,35,.86);
      font-weight: 700;
      font-size: 13px;
    }
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,106,43,.25);
      background: rgba(255,106,43,.08);
      box-shadow: 0 10px 24px rgba(255,106,43,.10);
    }
    .chip i{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--orange), var(--amber));
      box-shadow: 0 0 0 4px rgba(255,106,43,.16);
      display:inline-block;
    }
    h1{
      font-size: clamp(24px, 3.2vw, 40px);
      margin: 14px 0 10px;
      letter-spacing: -0.6px;
      line-height: 1.12;
    }
    .lead{
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
      margin: 0;
      max-width: 58ch;
    }
    .hero-actions{
      display:flex; align-items:center; gap:12px; flex-wrap:wrap;
      margin-top: 18px;
    }
    .hero-meta{
      margin-top: 16px;
      display:flex; gap:12px; flex-wrap:wrap;
    }
    .meta-badge{
      flex: 0 0 auto;
      border-radius: 14px;
      padding: 10px 12px;
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.62);
      display:flex; align-items:flex-start; gap:10px;
      min-width: 160px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .meta-badge:hover{
      transform: translateY(-2px);
      border-color: rgba(255,106,43,.28);
      box-shadow: 0 18px 40px rgba(17,24,39,.10);
    }
    .meta-badge svg{flex:0 0 auto; margin-top:2px}
    .meta-badge strong{
      display:block; font-size: 13px; margin-bottom:2px;
    }
    .meta-badge span{
      display:block; font-size: 12px; color: var(--muted2); line-height:1.35;
    }
    .side-panel{
      border-radius: calc(var(--radius) + 6px);
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
      border: 1px solid rgba(20,24,35,.10);
      box-shadow: 0 22px 60px rgba(17,24,39,.08);
      padding: 18px;
      position:relative;
      overflow:hidden;
      min-height: 340px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .side-panel:after{
      content:"";
      position:absolute; right:-140px; top:-120px;
      width: 320px; height:320px;
      background: radial-gradient(circle at 30% 30%, rgba(255,106,43,.22), rgba(255,106,43,0) 62%);
      pointer-events:none;
    }
    .side-title{
      position:relative; z-index:1;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .side-title h2{
      margin:0;
      font-size: 16px;
      letter-spacing: -0.2px;
    }
    .pulse{
      width:10px; height:10px; border-radius:50%;
      background: linear-gradient(135deg, var(--orange), var(--amber));
      box-shadow: 0 0 0 0 rgba(255,106,43,.35);
      animation: pulse 2s infinite;
      flex: 0 0 auto;
    }
    @keyframes pulse{
      0%{ box-shadow: 0 0 0 0 rgba(255,106,43,.35); transform: scale(1)}
      60%{ box-shadow: 0 0 0 12px rgba(255,106,43,0); transform: scale(1.05)}
      100%{ box-shadow: 0 0 0 0 rgba(255,106,43,0); transform: scale(1)}
    }
    .side-grid{
      position:relative; z-index:1;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
    }
    .stat{
      border-radius: 16px;
      padding: 14px 12px;
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.60);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      min-height: 86px;
    }
    .stat:hover{
      transform: translateY(-2px);
      border-color: rgba(255,106,43,.30);
      box-shadow: 0 18px 40px rgba(17,24,39,.10);
    }
    .stat .k{
      font-size: 12px; color: var(--muted2);
      display:flex; align-items:center; gap:8px;
      font-weight: 650;
      margin-bottom: 10px;
    }
    .stat .v{
      font-size: 18px; font-weight: 800;
      letter-spacing: -0.4px;
    }
    .mini-list{
      position:relative; z-index:1;
      border-radius: 16px;
      border: 1px dashed rgba(255,106,43,.35);
      background: rgba(255,106,43,.06);
      padding: 12px;
    }
    .mini-list .row{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 8px;
      border-radius: 12px;
      transition: background .18s ease;
    }
    .mini-list .row:hover{background: rgba(255,106,43,.08)}
    .mini-dot{
      width: 10px; height: 10px; margin-top: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--amber));
      box-shadow: 0 0 0 4px rgba(255,106,43,.16);
      flex: 0 0 auto;
    }
    .mini-list strong{display:block; font-size: 13px; margin-bottom:3px}
    .mini-list span{display:block; font-size: 12px; color: var(--muted2); line-height:1.45}
    .section{
      padding: 30px 0;
    }
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
      margin-bottom: 16px;
    }
    .section-head h2{
      margin:0;
      font-size: 22px;
      letter-spacing: -0.4px;
    }
    .section-head p{
      margin:0;
      color: var(--muted);
      line-height:1.65;
      font-size: 14px;
      max-width: 62ch;
    }
    .grid-2{
      display:grid; grid-template-columns: 1fr 1fr; gap: 16px;
      align-items:stretch;
    }
    .grid-3{
      display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
      align-items:stretch;
    }
    .card{
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(20,24,35,.10);
      box-shadow: 0 16px 48px rgba(17,24,39,.06);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,43,.28);
      box-shadow: 0 22px 70px rgba(17,24,39,.10);
    }
    .card .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(255,106,43,.08);
      border: 1px solid rgba(255,106,43,.18);
      color: rgba(20,24,35,.92);
      font-weight: 700;
      font-size: 12px;
      margin-bottom: 12px;
      white-space:nowrap;
    }
    .card h3{
      margin: 0 0 8px;
      font-size: 16px;
      letter-spacing: -0.2px;
    }
    .card p{
      margin:0;
      color: var(--muted);
      font-size: 13.5px;
      line-height:1.7;
    }
    .service-list{
      display:flex; flex-wrap:wrap; gap:10px;
      margin-top: 12px;
    }
    .pill{
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(20,24,35,.04);
      border: 1px solid rgba(20,24,35,.08);
      color: rgba(20,24,35,.86);
      font-size: 12px;
      font-weight: 650;
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }
    .pill:hover{
      background: rgba(255,106,43,.10);
      border-color: rgba(255,106,43,.25);
      transform: translateY(-1px);
    }
    .steps{
      display:grid; gap: 14px;
      grid-template-columns: repeat(4, 1fr);
      align-items:stretch;
    }
    .step{
      border-radius: var(--radius);
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.72);
      padding: 16px;
      position:relative;
      overflow:hidden;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,43,.28);
      box-shadow: 0 18px 52px rgba(17,24,39,.10);
    }
    .step .num{
      width: 34px; height: 34px;
      border-radius: 14px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,106,43,.20), rgba(255,176,32,.20));
      border: 1px solid rgba(255,106,43,.25);
      font-weight: 900;
      margin-bottom: 12px;
    }
    .step h3{margin:0 0 6px; font-size: 15px}
    .step p{margin:0; color:var(--muted); font-size:13.5px; line-height:1.65}
    .compare-wrap{
      border-radius: calc(var(--radius) + 6px);
      border: 1px solid rgba(20,24,35,.10);
      background:
        radial-gradient(650px 260px at 18% 0%, rgba(255,106,43,.20), rgba(255,106,43,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.70));
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .compare-top{
      padding: 18px 18px 0;
      display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
    }
    .rating{
      display:flex; align-items:center; gap:12px;
      border-radius: 18px;
      border: 1px solid rgba(255,106,43,.25);
      background: rgba(255,106,43,.08);
      padding: 14px 14px;
    }
    .stars{
      display:flex; gap:4px; align-items:center;
    }
    .star svg{width:18px; height:18px}
    .rating .rmeta strong{
      font-size: 16px; display:block; letter-spacing:-0.2px;
    }
    .rating .rmeta span{
      font-size: 12.5px; color: var(--muted2);
      display:block; margin-top: 3px; line-height:1.3;
    }
    .compare-table{
      width:100%;
      border-collapse: separate;
      border-spacing:0;
      margin-top: 12px;
      overflow:auto;
    }
    .compare-table .scroll{
      overflow:auto;
      border-top: 1px solid rgba(20,24,35,.10);
    }
    table{
      width: 100%;
      min-width: 780px;
    }
    th, td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(20,24,35,.08);
      text-align:left;
      vertical-align:top;
    }
    th{
      background: rgba(20,24,35,.03);
      font-size: 13px;
      color: rgba(20,24,35,.88);
      position:sticky; top:0;
      z-index:1;
      white-space:nowrap;
    }
    td{
      font-size: 13.5px;
      color: rgba(20,24,35,.88);
      line-height:1.6;
    }
    .good{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(22,163,74,.10);
      border: 1px solid rgba(22,163,74,.20);
      color: rgba(22,163,74,.95);
      font-weight: 800;
      font-size: 12px;
      white-space:nowrap;
    }
    .mid{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(37,99,235,.08);
      border: 1px solid rgba(37,99,235,.18);
      color: rgba(37,99,235,.92);
      font-weight: 800;
      font-size: 12px;
      white-space:nowrap;
    }
    .bad{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(20,24,35,.04);
      border: 1px solid rgba(20,24,35,.10);
      color: rgba(20,24,35,.75);
      font-weight: 800;
      font-size: 12px;
      white-space:nowrap;
    }
    .form{
      border-radius: calc(var(--radius) + 6px);
      border: 1px solid rgba(20,24,35,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));
      box-shadow: var(--shadow);
      padding: 18px;
      overflow:hidden;
      position:relative;
    }
    .form:after{
      content:"";
      position:absolute; left:-120px; top:-150px;
      width: 360px; height: 360px;
      background: radial-gradient(circle at 30% 30%, rgba(255,106,43,.22), rgba(255,106,43,0) 62%);
      pointer-events:none;
    }
    .form-inner{position:relative; z-index:1}
    .form-grid{
      display:grid; grid-template-columns: 1fr 1fr; gap:12px;
      margin-top: 12px;
    }
    .field{
      display:flex; flex-direction:column; gap:8px;
    }
    label{
      font-size: 13px; font-weight: 750; color: rgba(20,24,35,.86);
    }
    input, select, textarea{
      width:100%;
      border-radius: 14px;
      border: 1px solid rgba(20,24,35,.12);
      padding: 11px 12px;
      background: rgba(255,255,255,.80);
      color: rgba(20,24,35,.92);
      font-size: 14px;
      outline:none;
      transition: box-shadow .18s ease, border-color .18s ease;
    }
    textarea{min-height: 108px; resize: vertical}
    input:focus, select:focus, textarea:focus{
      border-color: rgba(255,106,43,.45);
      box-shadow: 0 0 0 4px rgba(255,106,43,.18);
    }
    .form-actions{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
      margin-top: 12px;
    }
    .fineprint{
      color: var(--muted2);
      font-size: 12px;
      line-height:1.5;
      max-width: 52ch;
    }
    .toast{
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 18px;
      background: rgba(15,23,42,.92);
      color:#fff;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 18px 60px rgba(0,0,0,.25);
      opacity:0;
      pointer-events:none;
      transition: opacity .25s ease, transform .25s ease;
      z-index: 200;
      max-width: calc(100% - 24px);
      font-size: 13px;
      line-height:1.45;
    }
    .toast.show{
      opacity:1;
      transform: translateX(-50%) translateY(-6px);
    }
    .faq{
      border-radius: calc(var(--radius) + 6px);
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 56px rgba(17,24,39,.08);
      overflow:hidden;
    }
    .faq .faq-item{
      border-top: 1px solid rgba(20,24,35,.08);
    }
    .faq .faq-item:first-child{border-top:0}
    .faq button{
      width:100%;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding: 14px 14px;
      background: transparent;
      border:0;
      cursor:pointer;
      text-align:left;
      font-weight: 800;
      letter-spacing: -0.2px;
      color: rgba(20,24,35,.92);
    }
    .faq button:focus{
      outline: 3px solid var(--focus);
      outline-offset: 2px;
      border-radius: 12px;
    }
    .faq .q{
      display:flex; gap:12px; align-items:flex-start;
    }
    .q .qmark{
      width: 26px; height: 26px;
      border-radius: 10px;
      background: rgba(255,106,43,.10);
      border: 1px solid rgba(255,106,43,.20);
      display:flex; align-items:center; justify-content:center;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .faq .ans{
      padding: 0 14px 14px;
      color: var(--muted);
      font-size: 13.8px;
      line-height:1.75;
      max-height:0;
      overflow:hidden;
      transition: max-height .28s ease;
    }
    .faq .faq-item.open .ans{
      max-height: 220px;
    }
    .chev{
      width:34px; height:34px;
      border-radius: 14px;
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.65);
      display:flex; align-items:center; justify-content:center;
      flex:0 0 auto;
      transition: transform .22s ease, border-color .18s ease;
    }
    .faq-item.open .chev{
      transform: rotate(180deg);
      border-color: rgba(255,106,43,.35);
    }
    .reviews{
      display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
      align-items:stretch;
    }
    .review{
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 16px 48px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
    }
    .review:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,43,.28);
      box-shadow: 0 22px 70px rgba(17,24,39,.10);
    }
    .review .top{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .avatar{
      width:40px; height:40px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(255,106,43,.20), rgba(255,176,32,.18));
      border: 1px solid rgba(255,106,43,.20);
      display:flex; align-items:center; justify-content:center;
      font-weight: 900;
      color: rgba(20,24,35,.90);
      flex: 0 0 auto;
    }
    .review .role{
      font-size: 13px;
      color: rgba(20,24,35,.86);
      font-weight: 800;
      margin:0;
    }
    .review .text{
      margin:0;
      color: var(--muted);
      font-size: 13.5px;
      line-height:1.75;
    }
    .review .stamp{
      margin-top:auto;
      display:flex; flex-wrap:wrap; gap:8px;
    }
    .stamp .pill{background: rgba(255,106,43,.08); border-color: rgba(255,106,43,.18)}
    .timeline{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
      align-items:start;
    }
    .timeline .bar{
      border-radius: var(--radius);
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.76);
      padding: 16px;
      position:relative;
      overflow:hidden;
    }
    .timeline .bar:before{
      content:"";
      position:absolute; inset:0;
      background: radial-gradient(520px 220px at 0% 0%, rgba(255,106,43,.18), rgba(255,106,43,0) 55%);
      pointer-events:none;
      opacity:.9;
    }
    .timeline .bar > *{position:relative; z-index:1}
    .bar h3{margin:0 0 10px; font-size: 15px}
    .bar ul{margin:0; padding:0; list-style:none; display:grid; gap:10px}
    .bar li{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 14px;
      border: 1px solid rgba(20,24,35,.07);
      background: rgba(255,255,255,.58);
      transition: transform .18s ease, border-color .18s ease;
    }
    .bar li:hover{transform: translateY(-2px); border-color: rgba(255,106,43,.26)}
    .bar .stepDot{
      width: 12px; height: 12px; border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--amber));
      box-shadow: 0 0 0 4px rgba(255,106,43,.16);
      margin-top: 6px;
      flex:0 0 auto;
    }
    .bar strong{display:block; font-size: 13px; margin-bottom:2px}
    .bar span{display:block; color: var(--muted2); font-size: 12.6px; line-height:1.45}
    .logos{
      display:flex; flex-wrap:wrap; gap:10px; margin-top: 10px;
    }
    .logo-pill{
      padding: 9px 10px;
      border-radius: 999px;
      background: rgba(20,24,35,.04);
      border: 1px solid rgba(20,24,35,.08);
      font-size: 12px;
      font-weight: 800;
      color: rgba(20,24,35,.82);
      white-space:nowrap;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .logo-pill:hover{
      transform: translateY(-1px);
      border-color: rgba(255,106,43,.26);
      background: rgba(255,106,43,.10);
    }
    .articles{
      display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px;
      align-items:stretch;
    }
    .article{
      border-radius: var(--radius);
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: 0 16px 48px rgba(17,24,39,.06);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      display:flex; flex-direction:column; gap:10px;
    }
    .article:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,43,.28);
      box-shadow: 0 22px 70px rgba(17,24,39,.10);
    }
    .article .meta{
      display:flex; gap:10px; align-items:center; justify-content:space-between;
      color: var(--muted2);
      font-size: 12.5px;
      font-weight: 750;
    }
    .article h3{
      margin:0;
      font-size: 15px;
      letter-spacing: -0.2px;
      line-height:1.4;
    }
    .article p{
      margin:0;
      color: var(--muted);
      font-size: 13.5px;
      line-height:1.7;
    }
    .article a.more{
      margin-top:auto;
      display:inline-flex; align-items:center; gap:10px;
      font-weight: 850; font-size: 13px;
      color: rgba(20,24,35,.92);
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(20,24,35,.03);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }
    .article a.more:hover{
      transform: translateY(-2px);
      border-color: rgba(255,106,43,.28);
      background: rgba(255,106,43,.10);
    }
    .network{
      display:grid; grid-template-columns: 1.05fr .95fr; gap: 14px;
      align-items:stretch;
    }
    .map-card{
      border-radius: var(--radius);
      border: 1px solid rgba(20,24,35,.10);
      background:
        radial-gradient(720px 260px at 10% 0%, rgba(255,106,43,.18), rgba(255,106,43,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.74));
      padding: 16px;
      box-shadow: 0 18px 56px rgba(17,24,39,.08);
      position:relative;
      overflow:hidden;
    }
    .map-card:after{
      content:"";
      position:absolute; right:-160px; bottom:-180px;
      width: 420px; height: 420px;
      background: radial-gradient(circle at 30% 30%, rgba(255,176,32,.18), rgba(255,176,32,0) 62%);
      pointer-events:none;
    }
    .map-card > *{position:relative; z-index:1}
    .map-head{
      display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
      margin-bottom: 10px;
      flex-wrap:wrap;
    }
    .map-head h3{margin:0; font-size: 15px}
    .region-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:10px;
      margin-top: 12px;
    }
    .region{
      border-radius: 16px;
      border: 1px solid rgba(20,24,35,.09);
      background: rgba(255,255,255,.62);
      padding: 12px 10px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .region:hover{
      transform: translateY(-2px);
      border-color: rgba(255,106,43,.28);
      box-shadow: 0 18px 40px rgba(17,24,39,.10);
    }
    .region strong{display:block; font-size: 13px; margin-bottom:4px}
    .region span{display:block; color: var(--muted2); font-size: 12.6px; line-height:1.4}
    .benefit-card{
      border-radius: var(--radius);
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.78);
      padding: 16px;
      box-shadow: 0 16px 48px rgba(17,24,39,.06);
      display:flex; flex-direction:column; gap:12px;
    }
    .benefit-card h3{margin:0; font-size: 15px}
    .benefit-card ul{margin:0; padding:0; list-style:none; display:grid; gap:10px}
    .benefit-card li{
      display:flex; gap:10px; align-items:flex-start;
      padding: 10px 10px;
      border-radius: 14px;
      background: rgba(20,24,35,.03);
      border: 1px solid rgba(20,24,35,.08);
    }
    .benefit-card .check{
      width: 18px; height: 18px;
      border-radius: 7px;
      background: rgba(255,106,43,.12);
      border: 1px solid rgba(255,106,43,.25);
      display:flex; align-items:center; justify-content:center;
      margin-top: 2px;
      flex:0 0 auto;
    }
    .benefit-card li strong{display:block; font-size:13px; margin-bottom:2px}
    .benefit-card li span{display:block; color: var(--muted2); font-size: 12.6px; line-height:1.45}
    .tagcloud{
      display:flex; flex-wrap:wrap; gap:10px;
      padding-top: 8px;
    }
    .tagcloud .pill{
      background: rgba(20,24,35,.03);
      border-color: rgba(20,24,35,.08);
      color: rgba(20,24,35,.86);
    }
    .footer{
      margin-top: 20px;
      background: linear-gradient(180deg, rgba(15,23,42,.94), rgba(15,23,42,.98));
      color: rgba(255,255,255,.92);
      border-top: 1px solid rgba(255,255,255,.10);
    }
    .footer-inner{
      padding: 26px 0 16px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 14px;
      align-items:start;
    }
    .footer-brand{
      display:flex; align-items:flex-start; gap:12px;
    }
    .footer-brand .logo{
      width:44px; height:44px; border-radius:16px;
      background: linear-gradient(135deg, rgba(255,106,43,.25), rgba(255,176,32,.18));
      border: 1px solid rgba(255,106,43,.25);
      display:flex; align-items:center; justify-content:center;
      overflow:hidden;
      flex:0 0 auto;
    }
    .footer-brand h3{margin:0; font-size: 15px; letter-spacing: -0.2px}
    .footer-brand p{margin:8px 0 0; color: rgba(255,255,255,.70); font-size: 13px; line-height:1.65}
    .footer-links{
      display:grid; grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .footer-links a{
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: rgba(255,255,255,.90);
      font-weight: 750;
      font-size: 13px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
      display:inline-flex; align-items:center; justify-content:space-between; gap:12px;
    }
    .footer-links a:hover{
      transform: translateY(-2px);
      background: rgba(255,106,43,.12);
      border-color: rgba(255,106,43,.30);
    }
    .footer-bottom{
      border-top: 1px solid rgba(255,255,255,.10);
      padding: 14px 0;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      flex-wrap:wrap;
      color: rgba(255,255,255,.70);
      font-size: 12.5px;
    }
    .links-row{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      justify-content:flex-end;
    }
    .links-row a{
      color: rgba(255,255,255,.84);
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      font-weight: 750;
      font-size: 12.5px;
      white-space:nowrap;
    }
    .links-row a:hover{
      transform: translateY(-2px);
      border-color: rgba(255,106,43,.30);
      background: rgba(255,106,43,.10);
    }
    .floating{
      position:fixed;
      right: 14px; bottom: 14px;
      z-index: 120;
      display:flex; flex-direction:column; gap:10px;
    }
    .float-btn{
      width: 46px; height:46px;
      border-radius: 18px;
      border: 1px solid rgba(20,24,35,.10);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 60px rgba(17,24,39,.14);
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      position:relative;
    }
    .float-btn:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,43,.30);
      background: rgba(255,106,43,.08);
    }
    .float-pop{
      position:absolute; right: 56px; bottom: 0;
      width: 220px;
      background: rgba(255,255,255,.96);
      border: 1px solid rgba(20,24,35,.10);
      border-radius: 16px;
      box-shadow: 0 22px 70px rgba(17,24,39,.16);
      padding: 12px;
      opacity:0; transform: translateY(8px);
      pointer-events:none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .float-btn.show-pop .float-pop{
      opacity:1; transform: translateY(0); pointer-events:auto;
    }
    .float-pop h4{
      margin:0 0 8px;
      font-size: 13px;
      letter-spacing:-0.2px;
    }
    .float-pop img{
      width: 100%;
      height: auto;
      border-radius: 14px;
      border: 1px solid rgba(20,24,35,.10);
      display:block;
      background:#fff;
    }
    .float-pop .hint{
      margin-top: 8px;
      color: var(--muted);
      font-size: 12.5px;
      line-height:1.45;
      font-weight: 650;
    }
    .reveal{
      opacity: 0;
      transform: translateY(12px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0);
    }
    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr; }
      .side-panel{min-height:auto}
      .steps{grid-template-columns: repeat(2, 1fr)}
      .grid-2{grid-template-columns: 1fr}
      .grid-3{grid-template-columns: 1fr}
      .reviews{grid-template-columns: 1fr}
      .articles{grid-template-columns: 1fr}
      .network{grid-template-columns: 1fr}
      .timeline{grid-template-columns: 1fr}
      .region-grid{grid-template-columns: repeat(2, 1fr)}
      .footer-grid{grid-template-columns: 1fr}
      .footer-links{grid-template-columns: 1fr 1fr}
      .nav-cta{display:none}
      nav .nav-links{display:none}
      .menu-btn{display:flex}
      .mobile-panel{display:block}
      .mobile-panel[aria-hidden="true"]{display:none}
      .mobile-panel[aria-hidden="false"]{display:block}
      .mobile-panel{padding-bottom: 14px}
    }